diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-05-03 23:13:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-05-03 23:13:24 +0000 |
commit | 9717dad88345bcc7e86ea807cc02b9988004657f (patch) | |
tree | 6d8fb36a5c28083a624f3aeabcfcbc7864e16890 /libavcodec/common.h | |
parent | 1c3a2382d04168a233657c9ce79b9913d927bc0f (diff) | |
download | ffmpeg-9717dad88345bcc7e86ea807cc02b9988004657f.tar.gz |
move put_string() to common.{c,h}
Originally committed as revision 439 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r-- | libavcodec/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index b365081bc8..b76288bac7 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -186,6 +186,7 @@ void init_put_bits(PutBitContext *s, INT64 get_bit_count(PutBitContext *s); /* XXX: change function name */ void align_put_bits(PutBitContext *s); void flush_put_bits(PutBitContext *s); +void put_string(PutBitContext * pbc, char *s); /* jpeg specific put_bits */ void jflush_put_bits(PutBitContext *s); |