Rename put_string to ff_put_string to avoid a symbol clash on Mac OS X.

Originally committed as revision 4597 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2005-09-18 21:21:01 +00:00
parent 2118901192
commit 344b825ceb
4 changed files with 6 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ void align_put_bits(PutBitContext *s)
#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);