Commit 12b6992b authored by Roberto Togni's avatar Roberto Togni

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
parent b566bd65
......@@ -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;
......
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