diff options
author | Nick Kurshev <nickols_k@mail.ru> | 2001-11-10 14:36:12 +0000 |
---|---|---|
committer | Nick Kurshev <nickols_k@mail.ru> | 2001-11-10 14:36:12 +0000 |
commit | a822a47983068ea9ca721c5a3359734c79837195 (patch) | |
tree | 25d738d4b1d325b81d325e53b03e402b4c120d4c /libavcodec/mpegvideo.h | |
parent | 6c426cff79d109fb1f22054f2a8cbe5532437f58 (diff) | |
download | ffmpeg-a822a47983068ea9ca721c5a3359734c79837195.tar.gz |
fixed gcc-3.0.x compilation (by Michael Niedermayer)
Originally committed as revision 211 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-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 8843265c3c..da45655327 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -232,7 +232,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]; |