From 587edd6af8460282a436ad2e597c4bad7b32fe8e Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 29 Nov 2009 23:01:29 +0000 Subject: Use more consistent / meaningful parameter names for the ff_copy_bits() function. Originally committed as revision 20663 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/put_bits.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/put_bits.h') diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index 72cd62f635..d16abfc56b 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -123,11 +123,11 @@ static inline void flush_put_bits(PutBitContext *s) void align_put_bits(PutBitContext *s); /** - * Puts the string s in the bitstream. + * Puts the string string in the bitstream. * * @param terminate_string 0-terminates the written string if value is 1 */ -void ff_put_string(PutBitContext * pbc, const char *s, int terminate_string); +void ff_put_string(PutBitContext *pb, const char *string, int terminate_string); /** * Copies the content of src to the bitstream. -- cgit v1.2.3