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/asv1.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/asv1.c')
-rw-r--r-- | libavcodec/asv1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index b84b02475e..87b13c637b 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -519,10 +519,10 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, emms_c(); align_put_bits(&a->pb); - while(get_bit_count(&a->pb)&31) + while(put_bits_count(&a->pb)&31) put_bits(&a->pb, 8, 0); - size= get_bit_count(&a->pb)/32; + size= put_bits_count(&a->pb)/32; if(avctx->codec_id == CODEC_ID_ASV1) a->dsp.bswap_buf((uint32_t*)buf, (uint32_t*)buf, size); |