diff bitstream.c @ 2885:5dfb90019814 libavcodec

Rename put_string to ff_put_string to avoid a symbol clash on Mac OS X.
author diego
date Sun, 18 Sep 2005 21:21:01 +0000
parents b33be8b00488
children ef2149182f1c
line wrap: on
line diff
--- a/bitstream.c	Sun Sep 18 14:45:17 2005 +0000
+++ b/bitstream.c	Sun Sep 18 21:21:01 2005 +0000
@@ -37,7 +37,7 @@
 #endif
 }
 
-void put_string(PutBitContext * pbc, char *s, int put_zero)
+void ff_put_string(PutBitContext * pbc, char *s, int put_zero)
 {
     while(*s){
         put_bits(pbc, 8, *s);