diff put_bits.h @ 10599:f2a8cba717b0 libavcodec

Use more consistent / meaningful parameter names for the ff_copy_bits() function.
author stefano
date Sun, 29 Nov 2009 23:01:29 +0000
parents d7ae0897b236
children dab94852ac8b
line wrap: on
line diff
--- 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.