summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmavoice/bitstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmavoice/bitstream.c')
-rw-r--r--apps/codecs/libwmavoice/bitstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwmavoice/bitstream.c b/apps/codecs/libwmavoice/bitstream.c
index 83f30f9799..d408f66650 100644
--- a/apps/codecs/libwmavoice/bitstream.c
+++ b/apps/codecs/libwmavoice/bitstream.c
@@ -66,7 +66,7 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
66 66
67 if(length==0) return; 67 if(length==0) return;
68 68
69 if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){ 69 if(/*CONFIG_SMALL ||*/ words < 16 || put_bits_count(pb)&7){
70 for(i=0; i<words; i++) put_bits(pb, 16, AV_RB16(src + 2*i)); 70 for(i=0; i<words; i++) put_bits(pb, 16, AV_RB16(src + 2*i));
71 }else{ 71 }else{
72 for(i=0; put_bits_count(pb)&31; i++) 72 for(i=0; put_bits_count(pb)&31; i++)