mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
WMADEC: fix ticket125
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0886267e3c
commit
f08d171caa
@ -103,7 +103,7 @@ static int wma_decode_init(AVCodecContext * avctx)
|
|||||||
s->use_variable_block_len = flags2 & 0x0004;
|
s->use_variable_block_len = flags2 & 0x0004;
|
||||||
|
|
||||||
if(avctx->codec->id == CODEC_ID_WMAV2 && avctx->extradata_size >= 8){
|
if(avctx->codec->id == CODEC_ID_WMAV2 && avctx->extradata_size >= 8){
|
||||||
if(!AV_RL16(extradata+6) && s->use_variable_block_len){
|
if(AV_RL16(extradata+4)==0xd && s->use_variable_block_len){
|
||||||
av_log(avctx, AV_LOG_WARNING, "Disabling use_variable_block_len, if this fails contact the ffmpeg developers and send us the file\n");
|
av_log(avctx, AV_LOG_WARNING, "Disabling use_variable_block_len, if this fails contact the ffmpeg developers and send us the file\n");
|
||||||
s->use_variable_block_len= 0; // this fixes issue1503
|
s->use_variable_block_len= 0; // this fixes issue1503
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user