You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	des: fix #if conditional around P_shuffle
CONFIG_SMALL is always defined as 0 or 1. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
		| @@ -39,7 +39,7 @@ static const uint8_t IP_shuffle[] = { | ||||
| }; | ||||
| #undef T | ||||
|  | ||||
| #if defined(CONFIG_SMALL) || defined(GENTABLES) | ||||
| #if CONFIG_SMALL || defined(GENTABLES) | ||||
| #define T(a, b, c, d) 32-a,32-b,32-c,32-d | ||||
| static const uint8_t P_shuffle[] = { | ||||
|     T(16,  7, 20, 21), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user