From 6f57375d707de40dcec28d3cef886c364e032c21 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Fri, 22 May 2015 19:50:12 +0100 Subject: rl: Rename ff_*_rl() to ff_rl_*() --- libavcodec/rl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/rl.c') diff --git a/libavcodec/rl.c b/libavcodec/rl.c index 516cb09..942b7a6 100644 --- a/libavcodec/rl.c +++ b/libavcodec/rl.c @@ -22,7 +22,7 @@ #include "rl.h" -av_cold void ff_init_rl(RLTable *rl, +av_cold void ff_rl_init(RLTable *rl, uint8_t static_store[2][2 * MAX_RUN + MAX_LEVEL + 3]) { int8_t max_level[MAX_RUN + 1], max_run[MAX_LEVEL + 1]; @@ -74,7 +74,7 @@ av_cold void ff_init_rl(RLTable *rl, } } -av_cold void ff_init_vlc_rl(RLTable *rl) +av_cold void ff_rl_init_vlc(RLTable *rl) { int i, q; -- cgit v1.1