From 3232bc885d6b5206942542d745e084eeb879258d Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 18 Feb 2002 09:29:32 +0000 Subject: [PATCH] * using static instead of extern Originally committed as revision 304 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index b797837acc..acbb1230d1 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -265,7 +265,7 @@ typedef struct RLTable { 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];