Rename ff_put_string to avpriv_put_string
This allows using it from libavformat as well. This will be used by the RTP/JPEG depacketizer. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -46,7 +46,7 @@ void avpriv_align_put_bits(PutBitContext *s)
|
||||
put_bits(s,s->bit_left & 7,0);
|
||||
}
|
||||
|
||||
void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
|
||||
void avpriv_put_string(PutBitContext *pb, const char *string, int terminate_string)
|
||||
{
|
||||
while(*string){
|
||||
put_bits(pb, 8, *string);
|
||||
|
Reference in New Issue
Block a user