Browse Source

VP8: make another RAC call branchy

1-2 clocks faster.

Originally committed as revision 24683 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Jason Garrett-Glaser 15 years ago
parent
commit
476be414a4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp8.c

+ 1
- 1
libavcodec/vp8.c View File

@@ -847,7 +847,7 @@ skip_eob:
token_prob = probs[i+1][1];
} else {
if (!vp56_rac_get_prob_branchy(c, token_prob[3])) { // DCT 2,3,4
coeff = vp56_rac_get_prob(c, token_prob[4]);
coeff = vp56_rac_get_prob_branchy(c, token_prob[4]);
if (coeff)
coeff += vp56_rac_get_prob(c, token_prob[5]);
coeff += 2;


Loading…
Cancel
Save