summaryrefslogtreecommitdiff
path: root/libavcodec/rl.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-05-28 21:48:49 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-05-28 21:48:49 +0200
commit75647622b530e8ec98ce364c9d6c38ca1b292e6d (patch)
tree4dee7cfdf6f30f1239b577985bc22a7ca80c7e2a /libavcodec/rl.h
parent68cce0101df074c41d2f4cfc8a9a36a000a8393e (diff)
parent6f57375d707de40dcec28d3cef886c364e032c21 (diff)
Merge commit '6f57375d707de40dcec28d3cef886c364e032c21'
* commit '6f57375d707de40dcec28d3cef886c364e032c21': rl: Rename ff_*_rl() to ff_rl_*() Conflicts: libavcodec/mpeg4videodec.c libavcodec/rl.c libavcodec/rl.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rl.h')
-rw-r--r--libavcodec/rl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/rl.h b/libavcodec/rl.h
index 2897ec5aa1..086266e7f8 100644
--- a/libavcodec/rl.h
+++ b/libavcodec/rl.h
@@ -52,8 +52,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, unsigned static_size);
+void ff_rl_init(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]);
+void ff_rl_init_vlc(RLTable *rl, unsigned static_size);
#define INIT_VLC_RL(rl, static_size)\
{\
@@ -64,7 +64,7 @@ void ff_init_vlc_rl(RLTable *rl, unsigned static_size);
for(q=0; q<32; q++)\
rl.rl_vlc[q]= rl_vlc_table[q];\
\
- ff_init_vlc_rl(&rl, static_size);\
+ ff_rl_init_vlc(&rl, static_size);\
}\
}