mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-26 13:00:33 +00:00
avidec: workaround aac with broken block align
Fixes Ticket1742 Based on patch by: Nikola Vranic <nikola.vranic@rt-rk.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8e2a950b29
commit
8d07742cb1
@ -676,6 +676,10 @@ static int avi_read_header(AVFormatContext *s)
|
||||
st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_AMV;
|
||||
ast->dshow_block_align = 0;
|
||||
}
|
||||
if(st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align <= 4 && ast->dshow_block_align) {
|
||||
av_log(s, AV_LOG_DEBUG, "overriding invalid dshow_block_align of %d\n", ast->dshow_block_align);
|
||||
ast->dshow_block_align = 0;
|
||||
}
|
||||
break;
|
||||
case AVMEDIA_TYPE_SUBTITLE:
|
||||
st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
|
||||
|
Loading…
Reference in New Issue
Block a user