diff mpegvideo.h @ 151:ae0516eadae2 libavcodec

fixed gcc-3.0.x compilation (by Michael Niedermayer)
author nickols_k
date Sat, 10 Nov 2001 14:36:12 +0000
parents 82e579c37bc3
children f914f710b8d0
line wrap: on
line diff
--- a/mpegvideo.h	Fri Nov 09 02:17:02 2001 +0000
+++ b/mpegvideo.h	Sat Nov 10 14:36:12 2001 +0000
@@ -232,7 +232,7 @@
 void init_rl(RLTable *rl);
 void init_vlc_rl(RLTable *rl);
 
-extern inline int get_rl_index(const RLTable *rl, int last, int run, int level)
+static inline int get_rl_index(const RLTable *rl, int last, int run, int level)
 {
     int index;
     index = rl->index_run[last][run];