Commit 3232bc88 authored by Zdenek Kabelac's avatar Zdenek Kabelac

* using static instead of extern

Originally committed as revision 304 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b4cc15e7
......@@ -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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment