From 5dba4cbc2f3f64b188289804216a737528ced290 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 13 Jul 2012 16:24:54 +0200 Subject: [PATCH] ffmpeg: fix streamcopy of some mp3 in avi Fixes Ticket1432 Thanks-to: Mike Scheutzow for some of the bug analysis Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index f949d48d12..61840cc01b 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3006,7 +3006,7 @@ static int transcode_init(void) codec->frame_size = icodec->frame_size; codec->audio_service_type = icodec->audio_service_type; codec->block_align = icodec->block_align; - if(codec->block_align == 1 && codec->codec_id == CODEC_ID_MP3) + if((codec->block_align == 1 || codec->block_align == 1152) && codec->codec_id == CODEC_ID_MP3) codec->block_align= 0; if(codec->codec_id == CODEC_ID_AC3) codec->block_align= 0;