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/h261.c | |
parent | fa1923f18205410a3b0aa6c0e77cb31443ef340d (diff) | |
download | ffmpeg-6f57375d707de40dcec28d3cef886c364e032c21.tar.gz |
rl: Rename ff_*_rl() to ff_rl_*()
Diffstat (limited to 'libavcodec/h261.c')
-rw-r--r-- | libavcodec/h261.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261.c b/libavcodec/h261.c index b9783f1510..bca7809773 100644 --- a/libavcodec/h261.c +++ b/libavcodec/h261.c @@ -87,6 +87,6 @@ av_cold void ff_h261_common_init(void) if (done) return; - ff_init_rl(&ff_h261_rl_tcoeff, ff_h261_rl_table_store); + ff_rl_init(&ff_h261_rl_tcoeff, ff_h261_rl_table_store); done = 1; } |