Skip to content
Snippets Groups Projects
Commit ae6f6d4e authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/x86/mpegvideo: Use intra scantable in dct_unquantize_h263_intra_mmx()

parent cf231b68
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ static void dct_unquantize_h263_intra_mmx(MpegEncContext *s,
if(s->ac_pred)
nCoeffs=63;
else
nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ];
__asm__ volatile(
"movd %1, %%mm6 \n\t" //qmul
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment