comparison asv1.c @ 1786:b7340afa261a libavcodec

get_bit_count -> put_bits_count
author alex
date Fri, 06 Feb 2004 15:27:31 +0000
parents 932d306bf1dc
children 8d3540dddd1b
comparison
equal deleted inserted replaced
1785:14d918d0ef42 1786:b7340afa261a
517 } 517 }
518 } 518 }
519 emms_c(); 519 emms_c();
520 520
521 align_put_bits(&a->pb); 521 align_put_bits(&a->pb);
522 while(get_bit_count(&a->pb)&31) 522 while(put_bits_count(&a->pb)&31)
523 put_bits(&a->pb, 8, 0); 523 put_bits(&a->pb, 8, 0);
524 524
525 size= get_bit_count(&a->pb)/32; 525 size= put_bits_count(&a->pb)/32;
526 526
527 if(avctx->codec_id == CODEC_ID_ASV1) 527 if(avctx->codec_id == CODEC_ID_ASV1)
528 a->dsp.bswap_buf((uint32_t*)buf, (uint32_t*)buf, size); 528 a->dsp.bswap_buf((uint32_t*)buf, (uint32_t*)buf, size);
529 else{ 529 else{
530 int i; 530 int i;