[SCM] libav/experimental: VP8: make another RAC call branchy 1-2 clocks faster.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:13:30 UTC 2013


The following commit has been merged in the experimental branch:
commit 476be414a4a742a217eebec9cfa7c0f87ff63fd6
Author: Jason Garrett-Glaser <darkshikari at gmail.com>
Date:   Tue Aug 3 11:34:24 2010 +0000

    VP8: make another RAC call branchy
    1-2 clocks faster.
    
    Originally committed as revision 24683 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index a151dc9..3863a81 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list