mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 21:08:59 +08:00
* using static instead of extern
Originally committed as revision 304 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -265,7 +265,7 @@ typedef struct RLTable {
|
|||||||
void init_rl(RLTable *rl);
|
void init_rl(RLTable *rl);
|
||||||
void init_vlc_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;
|
int index;
|
||||||
index = rl->index_run[last][run];
|
index = rl->index_run[last][run];
|
||||||
|
Reference in New Issue
Block a user