Browse Source

* using static instead of extern

Originally committed as revision 304 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Zdenek Kabelac 24 years ago
parent
commit
3232bc885d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegvideo.h

+ 1
- 1
libavcodec/mpegvideo.h View File

@@ -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];


Loading…
Cancel
Save