diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-02-18 09:29:32 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-02-18 09:29:32 +0000 |
commit | 3232bc885d6b5206942542d745e084eeb879258d (patch) | |
tree | 7183e799d429a1146002bcfc9bb818eef0e4d7b5 | |
parent | b4cc15e75e36dd88306fc5efc5df987078d43eb1 (diff) | |
download | ffmpeg-3232bc885d6b5206942542d745e084eeb879258d.tar.gz |
* using static instead of extern
Originally committed as revision 304 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |