Skip to content
Snippets Groups Projects
Commit 6b27f3b8 authored by Kostya Shishkov's avatar Kostya Shishkov
Browse files

One more FASTTX-related hack

Originally committed as revision 8532 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ac421e3
No related branches found
No related tags found
No related merge requests found
...@@ -3849,6 +3849,7 @@ static void vc1_decode_i_blocks(VC1Context *v) ...@@ -3849,6 +3849,7 @@ static void vc1_decode_i_blocks(VC1Context *v)
vc1_decode_i_block(v, s->block[k], k, val, (k<4)? v->codingset : v->codingset2); vc1_decode_i_block(v, s->block[k], k, val, (k<4)? v->codingset : v->codingset2);
s->dsp.vc1_inv_trans_8x8(s->block[k]); s->dsp.vc1_inv_trans_8x8(s->block[k]);
if(!v->res_fasttx && !v->res_x8) for(j = 0; j < 64; j++) s->block[k][j] -= 16;
if(v->pq >= 9 && v->overlap) { if(v->pq >= 9 && v->overlap) {
for(j = 0; j < 64; j++) s->block[k][j] += 128; for(j = 0; j < 64; j++) s->block[k][j] += 128;
} }
......
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