diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-06-24 20:05:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-06-24 20:05:53 +0000 |
commit | 5ac80202c8dd646f0c19204980f01fd3a00fd989 (patch) | |
tree | c317cb7805482b8c875033813826980a3857b663 /postproc/swscale.c | |
parent | f10bd870bff404c36f34b17398bc43b368068ca1 (diff) | |
download | ffmpeg-5ac80202c8dd646f0c19204980f01fd3a00fd989.tar.gz |
killing globals
Originally committed as revision 6555 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.c')
-rw-r--r-- | postproc/swscale.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c index 5cb3a80785..d6e4fc236f 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -203,10 +203,6 @@ static const uint64_t bgr2VCoeff __attribute__((aligned(8))) = 0x00003831D0E6F6 static const uint64_t bgr2YOffset __attribute__((aligned(8))) = 0x1010101010101010ULL; static const uint64_t bgr2UVOffset __attribute__((aligned(8)))= 0x8080808080808080ULL; static const uint64_t w1111 __attribute__((aligned(8))) = 0x0001000100010001ULL; - -// FIXME remove -static uint64_t __attribute__((aligned(8))) asm_yalpha1; -static uint64_t __attribute__((aligned(8))) asm_uvalpha1; #endif // clipping helper table for C implementations: @@ -260,7 +256,7 @@ static inline void orderYUV(int format, uint8_t * sortedP[], int sortedStride[], void in_asm_used_var_warning_killer() { volatile int i= yCoeff+vrCoeff+ubCoeff+vgCoeff+ugCoeff+bF8+bFC+w400+w80+w10+ - bm00001111+bm00000111+bm11111000+b16Mask+g16Mask+r16Mask+b15Mask+g15Mask+r15Mask+asm_yalpha1+ asm_uvalpha1+ + bm00001111+bm00000111+bm11111000+b16Mask+g16Mask+r16Mask+b15Mask+g15Mask+r15Mask+ M24A+M24B+M24C+w02 + b5Dither+g5Dither+r5Dither+g6Dither+dither4[0]+dither8[0]+bm01010101; if(i) i=0; } |