# HG changeset patch # User stefano # Date 1259535689 0 # Node ID f2a8cba717b0c9846c1691872dec351f9e186adb # Parent 5e566408864c93093ce80b7e1acd1cc5b361f311 Use more consistent / meaningful parameter names for the ff_copy_bits() function. diff -r 5e566408864c -r f2a8cba717b0 bitstream.c --- a/bitstream.c Sun Nov 29 15:15:53 2009 +0000 +++ b/bitstream.c Sun Nov 29 23:01:29 2009 +0000 @@ -47,14 +47,14 @@ #endif } -void ff_put_string(PutBitContext * pbc, const char *s, int terminate_string) +void ff_put_string(PutBitContext *pb, const char *string, int terminate_string) { - while(*s){ - put_bits(pbc, 8, *s); - s++; + while(*string){ + put_bits(pb, 8, *string); + string++; } if(terminate_string) - put_bits(pbc, 8, 0); + put_bits(pb, 8, 0); } void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length) diff -r 5e566408864c -r f2a8cba717b0 put_bits.h --- a/put_bits.h Sun Nov 29 15:15:53 2009 +0000 +++ b/put_bits.h Sun Nov 29 23:01:29 2009 +0000 @@ -123,11 +123,11 @@ 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.