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/ituh263dec.c | |
parent | fa1923f18205410a3b0aa6c0e77cb31443ef340d (diff) | |
download | ffmpeg-6f57375d707de40dcec28d3cef886c364e032c21.tar.gz |
rl: Rename ff_*_rl() to ff_rl_*()
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index a89e5d0a37..1f9ac27dd3 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -119,8 +119,8 @@ av_cold void ff_h263_decode_init_vlc(void) INIT_VLC_STATIC(&mv_vlc, MV_VLC_BITS, 33, &ff_mvtab[0][1], 2, 1, &ff_mvtab[0][0], 2, 1, 538); - ff_init_rl(&ff_h263_rl_inter, ff_h263_static_rl_table_store[0]); - ff_init_rl(&ff_rl_intra_aic, ff_h263_static_rl_table_store[1]); + ff_rl_init(&ff_h263_rl_inter, ff_h263_static_rl_table_store[0]); + ff_rl_init(&ff_rl_intra_aic, ff_h263_static_rl_table_store[1]); INIT_VLC_RL(ff_h263_rl_inter, 554); INIT_VLC_RL(ff_rl_intra_aic, 554); INIT_VLC_STATIC(&h263_mbtype_b_vlc, H263_MBTYPE_B_VLC_BITS, 15, |