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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-01-28 16:30:44 +01:00
parent 375a0273ce
commit a6f9a5d0f6

View File

@ -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);