diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-26 01:40:56 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-26 03:45:58 +0200 |
commit | 00931991849f2c7f250ea583c749493cf1b611fc (patch) | |
tree | 90e1b0e5318a62d47826429a547a814946284d35 /libswscale/x86 | |
parent | 478455d66b80e335bdabc00df5dee298d630cbab (diff) | |
download | ffmpeg-00931991849f2c7f250ea583c749493cf1b611fc.tar.gz |
swscale: Remove commented-out printf cruft.
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/swscale_template.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libswscale/x86/swscale_template.c b/libswscale/x86/swscale_template.c index 678060f3de..8e7f2411a1 100644 --- a/libswscale/x86/swscale_template.c +++ b/libswscale/x86/swscale_template.c @@ -2036,7 +2036,6 @@ static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst, #endif ); for (i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) { - //printf("%d %d %d\n", dstWidth, i, srcW); dst[i] = src1[srcW-1]*128; dst[i+VOFW] = src2[srcW-1]*128; } |