mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 20:42:49 +08:00 
			
		
		
		
	avcodec/dss_sp: Protect DSS_SP_FORMULA() with a set of outside brackets
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -33,7 +33,7 @@ | ||||
|  | ||||
| #define DSS_SP_FRAME_SIZE        42 | ||||
| #define DSS_SP_SAMPLE_COUNT     (66 * SUBFRAMES) | ||||
| #define DSS_SP_FORMULA(a, b, c) ((((a) << 15) + (b) * (c)) + 0x4000) >> 15 | ||||
| #define DSS_SP_FORMULA(a, b, c) (((((a) << 15) + (b) * (c)) + 0x4000) >> 15) | ||||
|  | ||||
| typedef struct DssSpSubframe { | ||||
|     int16_t gain; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Michael Niedermayer
					Michael Niedermayer