diff h263.c @ 358:2066dc543be4 libavcodec

move put_string() to common.{c,h}
author michaelni
date Fri, 03 May 2002 23:13:24 +0000
parents ac6fc4c7aecb
children df0736462b9f
line wrap: on
line diff
--- a/h263.c	Fri May 03 21:38:02 2002 +0000
+++ b/h263.c	Fri May 03 23:13:24 2002 +0000
@@ -1102,15 +1102,6 @@
     put_bits(pbc, length, (1<<length)-1);
 }
 
-static void put_string(PutBitContext * pbc, char *s)
-{
-    while(*s){
-        put_bits(pbc, 8, *s);
-        s++;
-    }
-    put_bits(pbc, 8, 0);
-}
-
 /* must be called before writing the header */
 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number){
     int time_div, time_mod;