diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-03-19 09:58:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-03-19 09:58:45 +0000 |
commit | f5af8f162584d08af3de74ee807bbd8130763238 (patch) | |
tree | 542777329e3e0ca470f449536221db4f7a4d2c10 /libswscale | |
parent | 81bbd840fe49cb9cc91f236b0e5671b5b822cacd (diff) | |
download | ffmpeg-f5af8f162584d08af3de74ee807bbd8130763238.tar.gz |
Replace wrong condition name in #endif comment by correct instance.
Originally committed as revision 30938 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 48450f7629..e37837a53d 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2211,7 +2211,7 @@ static inline void RENAME(hScale)(int16_t *dst, int dstW, const uint8_t *src, in dst[i] = FFMIN(val>>7, (1<<15)-1); // the cubic equation does overflow ... //dst[i] = val>>7; } -#endif /* COMPILE_ALTIVEC */ +#endif /* COMPILE_TEMPLATE_ALTIVEC */ #endif /* COMPILE_MMX */ } |