Commit 3b1f037d authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: fix streamcopy of lsf mp3.

Fixes streamcopy of bear_mpeg4_mp3.avi
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 64353be8
......@@ -2206,7 +2206,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->block_align == 1152) && codec->codec_id == AV_CODEC_ID_MP3)
if((codec->block_align == 1 || codec->block_align == 1152 || codec->block_align == 576) && codec->codec_id == AV_CODEC_ID_MP3)
codec->block_align= 0;
if(codec->codec_id == AV_CODEC_ID_AC3)
codec->block_align= 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment