summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorNick Kurshev <nickols_k@mail.ru>2001-11-10 14:36:12 +0000
committerNick Kurshev <nickols_k@mail.ru>2001-11-10 14:36:12 +0000
commita822a47983068ea9ca721c5a3359734c79837195 (patch)
tree25d738d4b1d325b81d325e53b03e402b4c120d4c /libavcodec/mpegvideo.h
parent6c426cff79d109fb1f22054f2a8cbe5532437f58 (diff)
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.h2
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];