comparison libswscale/swscale.c @ 26028:afd429e00184

Discard two symbols from libswscale.
author cehoyos
date Fri, 22 Feb 2008 08:08:19 +0000
parents 87331ea89425
children 94cc4bac8cd0
comparison
equal deleted inserted replaced
26027:21ffd4958ab5 26028:afd429e00184
192 static volatile uint64_t attribute_used __attribute__((aligned(8))) b5Dither; 192 static volatile uint64_t attribute_used __attribute__((aligned(8))) b5Dither;
193 static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither; 193 static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither;
194 static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither; 194 static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither;
195 static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither; 195 static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither;
196 196
197 DECLARE_ASM_CONST(8, uint64_t, dither4[2])={ 197 const DECLARE_ALIGNED(8, uint64_t, ff_dither4[2]) = {
198 0x0103010301030103LL, 198 0x0103010301030103LL,
199 0x0200020002000200LL,}; 199 0x0200020002000200LL,};
200 200
201 DECLARE_ASM_CONST(8, uint64_t, dither8[2])={ 201 const DECLARE_ALIGNED(8, uint64_t, ff_dither8[2]) = {
202 0x0602060206020602LL, 202 0x0602060206020602LL,
203 0x0004000400040004LL,}; 203 0x0004000400040004LL,};
204 204
205 DECLARE_ASM_CONST(8, uint64_t, b16Mask)= 0x001F001F001F001FLL; 205 DECLARE_ASM_CONST(8, uint64_t, b16Mask)= 0x001F001F001F001FLL;
206 DECLARE_ASM_CONST(8, uint64_t, g16Mask)= 0x07E007E007E007E0LL; 206 DECLARE_ASM_CONST(8, uint64_t, g16Mask)= 0x07E007E007E007E0LL;
365 #if defined(ARCH_X86) && defined (CONFIG_GPL) 365 #if defined(ARCH_X86) && defined (CONFIG_GPL)
366 void in_asm_used_var_warning_killer() 366 void in_asm_used_var_warning_killer()
367 { 367 {
368 volatile int i= bF8+bFC+w10+ 368 volatile int i= bF8+bFC+w10+
369 bm00001111+bm00000111+bm11111000+b16Mask+g16Mask+r16Mask+b15Mask+g15Mask+r15Mask+ 369 bm00001111+bm00000111+bm11111000+b16Mask+g16Mask+r16Mask+b15Mask+g15Mask+r15Mask+
370 ff_M24A+ff_M24B+ff_M24C+w02 + b5Dither+g5Dither+r5Dither+g6Dither+dither4[0]+dither8[0]+bm01010101; 370 ff_M24A+ff_M24B+ff_M24C+w02 + b5Dither+g5Dither+r5Dither+g6Dither+ff_dither4[0]+ff_dither8[0]+bm01010101;
371 if (i) i=0; 371 if (i) i=0;
372 } 372 }
373 #endif 373 #endif
374 374
375 static inline void yuv2yuvXinC(int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize, 375 static inline void yuv2yuvXinC(int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize,