diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-05-22 19:50:12 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-05-28 15:38:43 +0100 |
commit | 6f57375d707de40dcec28d3cef886c364e032c21 (patch) | |
tree | 58753f9e09f0ad8fba6906c56a7c4dd76ad2516f /libavcodec/rl.h | |
parent | fa1923f18205410a3b0aa6c0e77cb31443ef340d (diff) | |
download | ffmpeg-6f57375d707de40dcec28d3cef886c364e032c21.tar.gz |
rl: Rename ff_*_rl() to ff_rl_*()
Diffstat (limited to 'libavcodec/rl.h')
-rw-r--r-- | libavcodec/rl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/rl.h b/libavcodec/rl.h index 367cc986af..d03d4365a8 100644 --- a/libavcodec/rl.h +++ b/libavcodec/rl.h @@ -53,8 +53,8 @@ typedef struct RLTable { * @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold * the level and run tables, if this is NULL av_malloc() will be used */ -void ff_init_rl(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]); -void ff_init_vlc_rl(RLTable *rl); +void ff_rl_init(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]); +void ff_rl_init_vlc(RLTable *rl); #define INIT_VLC_RL(rl, static_size)\ {\ @@ -68,7 +68,7 @@ void ff_init_vlc_rl(RLTable *rl); for(q=0; q<32; q++)\ rl.rl_vlc[q]= rl_vlc_table[q];\ \ - ff_init_vlc_rl(&rl);\ + ff_rl_init_vlc(&rl);\ }\ } |