summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.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/mpegvideo.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/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 88e2f6d50b..aeeb8866a6 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -749,7 +749,7 @@ static inline void ff_update_block_index(MpegEncContext *s){
}
static inline int get_bits_diff(MpegEncContext *s){
- const int bits= get_bit_count(&s->pb);
+ const int bits= put_bits_count(&s->pb);
const int last= s->last_bits;
s->last_bits = bits;