summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuv.c
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/huffyuv.c
parentde7ff1f774e2610d9ac23d2613a9f7e19e8c0f9d (diff)
get_bit_count -> put_bits_count
Originally committed as revision 2752 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index d180d6aeee..4047a6a938 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -1049,7 +1049,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size,
}
emms_c();
- size= (get_bit_count(&s->pb)+31)/32;
+ size= (put_bits_count(&s->pb)+31)/32;
if((s->flags&CODEC_FLAG_PASS1) && (s->picture_number&31)==0){
int j;