From fb53b4a035c3682f5a8ab4241bde797ced539945 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 13 Apr 2009 16:59:38 +0000 Subject: 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 --- libavcodec/put_bits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/put_bits.h') 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); -- cgit v1.2.3