Commit 6ba717b3 authored by mru's avatar mru

Fix unaligned access in ff_copy_bits()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17921 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6b5e46e3
...@@ -83,7 +83,7 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length) ...@@ -83,7 +83,7 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
if(length==0) return; if(length==0) return;
if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){ if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){
for(i=0; i<words; i++) put_bits(pb, 16, be2me_16(srcw[i])); for(i=0; i<words; i++) put_bits(pb, 16, AV_RB16(&srcw[i]));
}else{ }else{
for(i=0; put_bits_count(pb)&31; i++) for(i=0; put_bits_count(pb)&31; i++)
put_bits(pb, 8, src[i]); put_bits(pb, 8, src[i]);
...@@ -92,7 +92,7 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length) ...@@ -92,7 +92,7 @@ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
skip_put_bytes(pb, 2*words-i); skip_put_bytes(pb, 2*words-i);
} }
put_bits(pb, bits, be2me_16(srcw[words])>>(16-bits)); put_bits(pb, bits, AV_RB16(&srcw[words])>>(16-bits));
} }
/* VLC decoding */ /* VLC decoding */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment