diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-09 11:37:58 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:26 +0200 |
commit | e96b4a53df101403c54e329abfadad2edddc47c4 (patch) | |
tree | b63e01353bea769c9f8b52138dbdc2b4aec43a71 /libavcodec/get_bits.h | |
parent | ddce8953a5056800ec795df2dfd84fc17a11b5fc (diff) | |
download | ffmpeg-e96b4a53df101403c54e329abfadad2edddc47c4.tar.gz |
vlc/rl: Add ff_ prefix to the nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/get_bits.h')
-rw-r--r-- | libavcodec/get_bits.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index 1668600b2d..158e6d2e69 100644 --- a/libavcodec/get_bits.h +++ b/libavcodec/get_bits.h @@ -364,19 +364,19 @@ static inline void align_get_bits(GetBitContext *s) bits, bits_wrap, bits_size, \ codes, codes_wrap, codes_size, \ flags) \ - init_vlc_sparse(vlc, nb_bits, nb_codes, \ - bits, bits_wrap, bits_size, \ - codes, codes_wrap, codes_size, \ - NULL, 0, 0, flags) + ff_init_vlc_sparse(vlc, nb_bits, nb_codes, \ + bits, bits_wrap, bits_size, \ + codes, codes_wrap, codes_size, \ + NULL, 0, 0, flags) -int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, +int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags); #define INIT_VLC_LE 2 #define INIT_VLC_USE_NEW_STATIC 4 -void free_vlc(VLC *vlc); +void ff_free_vlc(VLC *vlc); #define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size) do { \ static VLC_TYPE table[static_size][2]; \ |