summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-05-03 23:13:24 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-05-03 23:13:24 +0000
commit9717dad88345bcc7e86ea807cc02b9988004657f (patch)
tree6d8fb36a5c28083a624f3aeabcfcbc7864e16890 /libavcodec/h263.c
parent1c3a2382d04168a233657c9ce79b9913d927bc0f (diff)
move put_string() to common.{c,h}
Originally committed as revision 439 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index d6114ff366..2a44eb0c2e 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -1102,15 +1102,6 @@ static void mpeg4_stuffing(PutBitContext * pbc)
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;