# HG changeset patch # User rtogni # Date 1160763688 0 # Node ID 8aa2dc127eb8db68e2f85e8d360e1d3752d406b7 # Parent 56c4d97618f27931c7bfc0d9d2d16f1b30366077 flv files from myspace with mp3 audio require need_parsing because the frames are fragmented. diff -r 56c4d97618f2 -r 8aa2dc127eb8 flvdec.c --- a/flvdec.c Fri Oct 13 10:48:29 2006 +0000 +++ b/flvdec.c Fri Oct 13 18:21:28 2006 +0000 @@ -176,7 +176,7 @@ 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;