diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-10-26 13:41:39 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-10-28 13:53:23 +0100 |
commit | 944ba30db0bda967305690fbfeed4ce6f1e976b2 (patch) | |
tree | da5198c9e7fb5775eae23cb6bf6825833ebe88a7 /libavcodec/put_bits.h | |
parent | 717503f7166d7032e32b935f2819d450524125d1 (diff) | |
download | ffmpeg-944ba30db0bda967305690fbfeed4ce6f1e976b2.tar.gz |
put_bits: make avpriv_put_string() lavc-local
It has not been used outside of libavcodec since
20f325f320c6e18ee88983870d2a1fee94257293
Diffstat (limited to 'libavcodec/put_bits.h')
-rw-r--r-- | libavcodec/put_bits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index d7eaa1792e..3cdd8a80a8 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -152,7 +152,7 @@ void avpriv_align_put_bits(PutBitContext *s); #endif #ifdef BITSTREAM_WRITER_LE -#define avpriv_put_string ff_put_string_unsupported_here +#define ff_put_string ff_put_string_unsupported_here #define avpriv_copy_bits avpriv_copy_bits_unsupported_here #else @@ -161,7 +161,7 @@ void avpriv_align_put_bits(PutBitContext *s); * * @param terminate_string 0-terminates the written string if value is 1 */ -void avpriv_put_string(PutBitContext *pb, const char *string, +void ff_put_string(PutBitContext *pb, const char *string, int terminate_string); /** |