[FFmpeg-cvslog] avfilter/x86/vf_fspp: Fix loop condition for column_fidct()

Michael Niedermayer git at videolan.org
Wed Jan 28 17:24:47 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Jan 28 16:30:44 2015 +0100| [a6f9a5d0f63500564d857df12269a1c6e43bd563] | committer: Michael Niedermayer

avfilter/x86/vf_fspp: Fix loop condition for column_fidct()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a6f9a5d0f63500564d857df12269a1c6e43bd563
---

 libavfilter/x86/vf_fspp.asm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/x86/vf_fspp.asm b/libavfilter/x86/vf_fspp.asm
index fbf531b..e88feb9 100644
--- a/libavfilter/x86/vf_fspp.asm
+++ b/libavfilter/x86/vf_fspp.asm
@@ -472,13 +472,13 @@ cglobal column_fidct, 4, 5, 0, 32, thr, src, out, cnt, tmp
 .fdct2:
     COLUMN_FDCT .idct2, 8, 16
     sub    cntd, 2
-    jnz .fdct1
+    jg .fdct1
     RET
 
 .idct2:
     COLUMN_IDCT 16
     sub    cntd, 2
-    jnz .fdct1
+    jg .fdct1
     RET
 
 ;void ff_row_idct_mmx(int16_t *workspace, int16_t *output_adr, ptrdiff_t output_stride, int cnt);



More information about the ffmpeg-cvslog mailing list