diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-07-09 17:01:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-07-09 17:01:52 +0000 |
commit | 937683784dfc92f6ca3c7e5a139258dee4e17f42 (patch) | |
tree | 88033bead7d1664d9c3c53aa0f788d3e0cd68e4f /postproc/swscale_template.c | |
parent | be8ffec9cd9a12973d7fbb767cd75309601f7876 (diff) | |
download | ffmpeg-937683784dfc92f6ca3c7e5a139258dee4e17f42.tar.gz |
fixing sinc filter (seems the problem was caused by rounding in pmulhw -> solution use shorter filter, its long and slow enough anyway)
some typos
some warning fixes
Originally committed as revision 6680 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_template.c')
-rw-r--r-- | postproc/swscale_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index accbc9710e..91461027ee 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -112,8 +112,8 @@ ".balign 16 \n\t"\ "1: \n\t"\ "movl %1, %%edx \n\t" /* -chrFilterSize */\ - "movl %3, %%ebx \n\t" /* chrMmxFilter+lumFilterSize */\ - "movl %7, %%ecx \n\t" /* chrSrc+lumFilterSize */\ + "movl %3, %%ebx \n\t" /* chrMmxFilter+chrFilterSize */\ + "movl %7, %%ecx \n\t" /* chrSrc+chrFilterSize */\ "pxor %%mm3, %%mm3 \n\t"\ "pxor %%mm4, %%mm4 \n\t"\ "2: \n\t"\ |