diff mpegvideo.h @ 2370:26560d4fdb1f libavcodec

Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( de>)
author michael
date Sat, 27 Nov 2004 18:10:06 +0000
parents 5e5cf598a48b
children 3daf36fd1999
line wrap: on
line diff
--- a/mpegvideo.h	Sat Nov 27 03:54:18 2004 +0000
+++ b/mpegvideo.h	Sat Nov 27 18:10:06 2004 +0000
@@ -841,8 +841,8 @@
     RL_VLC_ELEM *rl_vlc[32];       ///< decoding only 
 } RLTable;
 
-void init_rl(RLTable *rl);
-void init_vlc_rl(RLTable *rl);
+void init_rl(RLTable *rl, int use_static);
+void init_vlc_rl(RLTable *rl, int use_static);
 
 static inline int get_rl_index(const RLTable *rl, int last, int run, int level)
 {