summaryrefslogtreecommitdiff
path: root/libavcodec/common.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2004-02-06 15:27:31 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2004-02-06 15:27:31 +0000
commitfe455f3328ca1ae4b71a345f50936d19f30e5c5f (patch)
tree82a5a6b41535a9a8b2d6efa20d5418931480e2b7 /libavcodec/common.h
parentde7ff1f774e2610d9ac23d2613a9f7e19e8c0f9d (diff)
get_bit_count -> put_bits_count
Originally committed as revision 2752 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r--libavcodec/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h
index 48d923169b..2167ebc2b2 100644
--- a/libavcodec/common.h
+++ b/libavcodec/common.h
@@ -288,7 +288,7 @@ typedef struct PutBitContext {
void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size);
-int get_bit_count(PutBitContext *s); /* XXX: change function name */
+int put_bits_count(PutBitContext *s);
void align_put_bits(PutBitContext *s);
void flush_put_bits(PutBitContext *s);
void put_string(PutBitContext * pbc, char *s);