diff bitstream.h @ 6935:24e01f7cc819 libavcodec

Make init_vlc* support proper static tables instead of this broken beyond imagination alloc_static() trash.
author michael
date Fri, 30 May 2008 19:48:02 +0000
parents f7cbb7733146
children 97798862a414
line wrap: on
line diff
--- a/bitstream.h	Fri May 30 19:46:43 2008 +0000
+++ b/bitstream.h	Fri May 30 19:48:02 2008 +0000
@@ -800,8 +800,9 @@
              const void *codes, int codes_wrap, int codes_size,
              const void *symbols, int symbols_wrap, int symbols_size,
              int flags);
-#define INIT_VLC_USE_STATIC 1
+#define INIT_VLC_USE_STATIC 1 ///< VERY strongly deprecated and forbidden
 #define INIT_VLC_LE         2
+#define INIT_VLC_USE_NEW_STATIC 4
 void free_vlc(VLC *vlc);
 
 /**