Commit 26bdc6bc authored by Kostya Shishkov's avatar Kostya Shishkov

this prediction direction adjustment is wrong

Originally committed as revision 9450 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 06f32b26
...@@ -2603,9 +2603,7 @@ static int vc1_decode_i_block_adv(VC1Context *v, DCTELEM block[64], int n, int c ...@@ -2603,9 +2603,7 @@ static int vc1_decode_i_block_adv(VC1Context *v, DCTELEM block[64], int n, int c
//AC Decoding //AC Decoding
i = 1; i = 1;
/* check if AC is needed at all and adjust direction if needed */ /* check if AC is needed at all */
if(!a_avail) dc_pred_dir = 1;
if(!c_avail) dc_pred_dir = 0;
if(!a_avail && !c_avail) use_pred = 0; if(!a_avail && !c_avail) use_pred = 0;
ac_val = s->ac_val[0][0] + s->block_index[n] * 16; ac_val = s->ac_val[0][0] + s->block_index[n] * 16;
ac_val2 = ac_val; ac_val2 = ac_val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment