[SCM] libav/experimental: Two INIT_VLC_USE_STATIC cases Carl missed.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:43:46 UTC 2013


The following commit has been merged in the experimental branch:
commit 1b923aa44ab95c352f9062024166c3d603a941f8
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Sat Apr 11 14:16:30 2009 +0000

    Two INIT_VLC_USE_STATIC cases Carl missed.
    
    Originally committed as revision 18438 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 2ae57d9..177b60f 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -66,7 +66,7 @@ static av_cold void x8_vlc_init(void){
         DC_VLC_BITS,34, \
         &src[1],4,2, \
         &src[0],4,2, \
-        1);
+        INIT_VLC_USE_STATIC);
     for(i=0;i<8;i++){
         init_dc_vlc( j_dc_vlc[0][i], x8_dc_highquant_table[i][0]);
         init_dc_vlc( j_dc_vlc[1][i], x8_dc_lowquant_table [i][0]);
diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c
index c45ef97..f31b69f 100644
--- a/libavcodec/svq1dec.c
+++ b/libavcodec/svq1dec.c
@@ -786,7 +786,7 @@ static av_cold int svq1_decode_init(AVCodecContext *avctx)
 
     init_vlc(&svq1_motion_component, 7, 33,
         &mvtab[0][1], 2, 1,
-        &mvtab[0][0], 2, 1, 1);
+        &mvtab[0][0], 2, 1, INIT_VLC_USE_STATIC);
 
     for (i = 0; i < 6; i++) {
         init_vlc(&svq1_intra_multistage[i], 3, 8,

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list