diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 10:10:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 9f51c682ee83ecf0995648d4574ac09b52bbcb24 (patch) | |
tree | c5976926717940042b4b54cc56b35858914e3fa4 /libavcodec/put_bits.h | |
parent | 6f89efeaa7eceb3408abb6e593d892ec819177a7 (diff) | |
download | ffmpeg-9f51c682ee83ecf0995648d4574ac09b52bbcb24.tar.gz |
lavc: use avpriv_ prefix for ff_copy_bits and align_put_bits.
They are used in lavf.
Diffstat (limited to 'libavcodec/put_bits.h')
-rw-r--r-- | libavcodec/put_bits.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index f77cfbba97..6e812670b8 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -97,14 +97,14 @@ static inline void flush_put_bits(PutBitContext *s) } #ifdef BITSTREAM_WRITER_LE -#define align_put_bits align_put_bits_unsupported_here +#define avpriv_align_put_bits align_put_bits_unsupported_here #define ff_put_string ff_put_string_unsupported_here -#define ff_copy_bits ff_copy_bits_unsupported_here +#define avpriv_copy_bits avpriv_copy_bits_unsupported_here #else /** * Pad the bitstream with zeros up to the next byte boundary. */ -void align_put_bits(PutBitContext *s); +void avpriv_align_put_bits(PutBitContext *s); /** * Put the string string in the bitstream. @@ -118,7 +118,7 @@ void ff_put_string(PutBitContext *pb, const char *string, int terminate_string); * * @param length the number of bits of src to copy */ -void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); +void avpriv_copy_bits(PutBitContext *pb, const uint8_t *src, int length); #endif /** |