[SCM] libav/experimental: Optimize EOB check in mjpeg decode_block() by adjusting the VLC symbol.

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


The following commit has been merged in the experimental branch:
commit a2d4dfd493020cd15489991776eb2c7c504965d4
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Oct 21 22:44:51 2010 +0000

    Optimize EOB check in mjpeg decode_block() by adjusting the VLC symbol.
    
    Originally committed as revision 25548 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c
index 242d020..2fae64f 100644
--- a/libavcodec/mjpegdec.c
+++ b/libavcodec/mjpegdec.c
@@ -57,6 +57,8 @@ static int build_vlc(VLC *vlc, const uint8_t *bits_table, const uint8_t *val_tab
     for(i=0; i<256; i++)
         huff_sym[i]= i + 16*is_ac;
 
+    if(is_ac) huff_sym[0]= 16*256;
+
     return init_vlc_sparse(vlc, 9, nb_codes, huff_size, 1, 1, huff_code, 2, 2, huff_sym, 2, 2, use_static);
 }
 
@@ -415,9 +417,6 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
         UPDATE_CACHE(re, &s->gb);
         GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
 
-        /* EOB */
-        if (code == 0x10)
-            break;
         i += ((unsigned)code) >> 4;
             code &= 0xf;
         if(code){

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list