diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2004-02-06 15:27:31 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2004-02-06 15:27:31 +0000 |
commit | fe455f3328ca1ae4b71a345f50936d19f30e5c5f (patch) | |
tree | 82a5a6b41535a9a8b2d6efa20d5418931480e2b7 /libavcodec/common.c | |
parent | de7ff1f774e2610d9ac23d2613a9f7e19e8c0f9d (diff) | |
download | ffmpeg-fe455f3328ca1ae4b71a345f50936d19f30e5c5f.tar.gz |
get_bit_count -> put_bits_count
Originally committed as revision 2752 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.c')
-rw-r--r-- | libavcodec/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.c b/libavcodec/common.c index 6bca53f1e6..cf52d98cca 100644 --- a/libavcodec/common.c +++ b/libavcodec/common.c @@ -64,7 +64,7 @@ void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size) #if 1 /* return the number of bits output */ -int get_bit_count(PutBitContext *s) +int put_bits_count(PutBitContext *s) { #ifdef ALT_BITSTREAM_WRITER return s->index; |