1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-13 10:39:08 +02:00

flv files from myspace with mp3 audio require need_parsing because the

frames are fragmented.

Originally committed as revision 6686 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Roberto Togni 2006-10-13 18:21:28 +00:00
parent b566bd65e2
commit 12b6992b6f

View File

@ -176,7 +176,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
case 0: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16BE;
else st->codec->codec_id = CODEC_ID_PCM_S8; break;
case 1: st->codec->codec_id = CODEC_ID_ADPCM_SWF; break;
case 2: st->codec->codec_id = CODEC_ID_MP3; break;
case 2: st->codec->codec_id = CODEC_ID_MP3; st->need_parsing = 1; break;
// this is not listed at FLV but at SWF, strange...
case 3: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16LE;
else st->codec->codec_id = CODEC_ID_PCM_S8; break;