comparison wnv1.c @ 9393:25b3650b4db5 libavcodec

Use INIT_VLC_USE_STATIC and not its value "1".
author cehoyos
date Sat, 11 Apr 2009 11:47:15 +0000
parents 54bc8a2727b0
children 0dce4fe6e6f3
comparison
equal deleted inserted replaced
9392:a5bc2084bd6a 9393:25b3650b4db5
134 avctx->pix_fmt = PIX_FMT_YUV422P; 134 avctx->pix_fmt = PIX_FMT_YUV422P;
135 135
136 if(!code_vlc.table){ 136 if(!code_vlc.table){
137 init_vlc(&code_vlc, CODE_VLC_BITS, 16, 137 init_vlc(&code_vlc, CODE_VLC_BITS, 16,
138 &code_tab[0][1], 4, 2, 138 &code_tab[0][1], 4, 2,
139 &code_tab[0][0], 4, 2, 1); 139 &code_tab[0][0], 4, 2, INIT_VLC_USE_STATIC);
140 } 140 }
141 141
142 return 0; 142 return 0;
143 } 143 }
144 144