mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
Use IDCT functions when FASTTX=0
Originally committed as revision 11189 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d2e45f33a4
commit
8df7cfe97c
@ -814,6 +814,9 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
|
||||
if (!v->res_fasttx)
|
||||
{
|
||||
v->s.dsp.vc1_inv_trans_8x8 = simple_idct;
|
||||
v->s.dsp.vc1_inv_trans_8x4 = simple_idct84_add;
|
||||
v->s.dsp.vc1_inv_trans_4x8 = simple_idct48_add;
|
||||
// v->s.dsp.vc1_inv_trans_4x4 = simple_idct44_add;
|
||||
}
|
||||
|
||||
v->fastuvmc = get_bits1(gb); //common
|
||||
|
Loading…
Reference in New Issue
Block a user