Rename ff_put_string to avpriv_put_string
This allows using it from libavformat as well. This will be used by the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
a0845bae49
commit
aefea4d0de
4 changed files with 7 additions and 7 deletions
|
@ -98,7 +98,7 @@ static inline void flush_put_bits(PutBitContext *s)
|
|||
|
||||
#ifdef BITSTREAM_WRITER_LE
|
||||
#define avpriv_align_put_bits align_put_bits_unsupported_here
|
||||
#define ff_put_string ff_put_string_unsupported_here
|
||||
#define avpriv_put_string ff_put_string_unsupported_here
|
||||
#define avpriv_copy_bits avpriv_copy_bits_unsupported_here
|
||||
#else
|
||||
/**
|
||||
|
@ -111,7 +111,7 @@ void avpriv_align_put_bits(PutBitContext *s);
|
|||
*
|
||||
* @param terminate_string 0-terminates the written string if value is 1
|
||||
*/
|
||||
void ff_put_string(PutBitContext *pb, const char *string, int terminate_string);
|
||||
void avpriv_put_string(PutBitContext *pb, const char *string, int terminate_string);
|
||||
|
||||
/**
|
||||
* Copy the content of src to the bitstream.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue