diff h261dec.c @ 6940:778ecab25dd8 libavcodec

Change init_vlc_rl() so it does not use *alloc_static() anymore.
author michael
date Fri, 30 May 2008 21:08:41 +0000
parents a4104482ceef
children e943e1409077
line wrap: on
line diff
--- a/h261dec.c	Fri May 30 21:06:40 2008 +0000
+++ b/h261dec.c	Fri May 30 21:08:41 2008 +0000
@@ -66,7 +66,7 @@
                  &h261_cbp_tab[0][1], 2, 1,
                  &h261_cbp_tab[0][0], 2, 1, 1);
         init_rl(&h261_rl_tcoeff, ff_h261_rl_table_store);
-        init_vlc_rl(&h261_rl_tcoeff, 1);
+        INIT_VLC_RL(h261_rl_tcoeff, 552);
     }
 }