summaryrefslogtreecommitdiff
path: root/libavcodec/put_bits.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-13 16:59:38 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-13 16:59:38 +0000
commitfb53b4a035c3682f5a8ab4241bde797ced539945 (patch)
tree18322fdb724ea3ad2cd1e4927e0354bf38de7907 /libavcodec/put_bits.h
parent084c7cc54a60e05ee240354d8013f512dac04ad2 (diff)
Rename pbBufPtr() to put_bits_ptr().
The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/put_bits.h')
-rw-r--r--libavcodec/put_bits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h
index 32b11f6445..2009a2be23 100644
--- a/libavcodec/put_bits.h
+++ b/libavcodec/put_bits.h
@@ -263,7 +263,7 @@ static inline void put_sbits(PutBitContext *pb, int bits, int32_t val)
* Returns the pointer to the byte where the bitstream writer will put
* the next bit.
*/
-static inline uint8_t* pbBufPtr(PutBitContext *s)
+static inline uint8_t* put_bits_ptr(PutBitContext *s)
{
#ifdef ALT_BITSTREAM_WRITER
return s->buf + (s->index>>3);