Browse Source

support flv with invalid header

fixes issue43

Originally committed as revision 10887 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
c8652b5714
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavformat/flvdec.c

+ 1
- 2
libavformat/flvdec.c View File

@@ -309,8 +309,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
}
if(i == s->nb_streams){
av_log(NULL, AV_LOG_ERROR, "invalid stream\n");
url_fseek(&s->pb, next, SEEK_SET);
continue;
st= create_stream(s, is_audio);
}
// av_log(NULL, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio))


Loading…
Cancel
Save