mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
avformat/avidec: add mp2 to the list of exceptions instead of generally treating dshow_block_align==1 special
Fixes Ticket4552
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 488383afd1)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -128,7 +128,7 @@ static inline int get_duration(AVIStream *ast, int len)
|
|||||||
{
|
{
|
||||||
if (ast->sample_size)
|
if (ast->sample_size)
|
||||||
return len;
|
return len;
|
||||||
else if (ast->dshow_block_align > 1)
|
else if (ast->dshow_block_align)
|
||||||
return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
|
return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
|
||||||
else
|
else
|
||||||
return 1;
|
return 1;
|
||||||
@@ -866,7 +866,8 @@ static int avi_read_header(AVFormatContext *s)
|
|||||||
st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_AMV;
|
st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_AMV;
|
||||||
ast->dshow_block_align = 0;
|
ast->dshow_block_align = 0;
|
||||||
}
|
}
|
||||||
if (st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align <= 4 && ast->dshow_block_align) {
|
if (st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align <= 4 && ast->dshow_block_align ||
|
||||||
|
st->codec->codec_id == AV_CODEC_ID_MP2 && 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);
|
av_log(s, AV_LOG_DEBUG, "overriding invalid dshow_block_align of %d\n", ast->dshow_block_align);
|
||||||
ast->dshow_block_align = 0;
|
ast->dshow_block_align = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user