From d6f79edb6e5a5477ab4ea36d93aace5b508e6fd3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 13 Apr 2011 02:52:16 +0200 Subject: flv demuxer: dont error out due to index problems, but inform the user about it. Signed-off-by: Michael Niedermayer --- libavformat/flvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 58a2abad2b..44d21683ba 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -211,7 +211,7 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vst if (ioc->seekable && key && !strcmp(KEYFRAMES_TAG, key) && depth == 1) if (parse_keyframes_index(s, ioc, vstream, max_pos) < 0) - return -1; + av_log(s, AV_LOG_ERROR, "Keyframe index parsing failed\n"); while(avio_tell(ioc) < max_pos - 2 && (keylen = avio_rb16(ioc))) { avio_skip(ioc, keylen); //skip key string -- cgit v1.2.3