From a6f9a5d0f63500564d857df12269a1c6e43bd563 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 28 Jan 2015 16:30:44 +0100 Subject: avfilter/x86/vf_fspp: Fix loop condition for column_fidct() Signed-off-by: Michael Niedermayer --- libavfilter/x86/vf_fspp.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/x86/vf_fspp.asm b/libavfilter/x86/vf_fspp.asm index fbf531b22c..e88feb981a 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); -- cgit v1.2.3