summaryrefslogtreecommitdiff
path: root/libavcodec/put_bits.h
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-09-09 16:03:52 +0300
committerMartin Storsjö <martin@martin.st>2012-09-09 22:22:12 +0300
commitaefea4d0de614a33b12419f7cbac101e2565ca0c (patch)
treef7ddf4680f86deafb3145a22583c12eec331b713 /libavcodec/put_bits.h
parenta0845bae49a7ac9a7b33c846db457c471a6c8deb (diff)
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>
Diffstat (limited to 'libavcodec/put_bits.h')
-rw-r--r--libavcodec/put_bits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h
index 6e812670b8..f19a7c689b 100644
--- a/libavcodec/put_bits.h
+++ b/libavcodec/put_bits.h
@@ -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.