mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
Fix init_get_bits() buffer size.
18_fix_theora_header_bit_len.patch by chrome Originally committed as revision 19993 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
cdf1512eba
commit
fa6f27517b
@ -2319,7 +2319,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
for(i=0;i<3;i++) {
|
for(i=0;i<3;i++) {
|
||||||
init_get_bits(&gb, header_start[i], header_len[i]);
|
init_get_bits(&gb, header_start[i], header_len[i] * 8);
|
||||||
|
|
||||||
ptype = get_bits(&gb, 8);
|
ptype = get_bits(&gb, 8);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user