Commit 031311cb authored by Alex Beregszaszi's avatar Alex Beregszaszi

workaround for broken flvtoolized files

Originally committed as revision 8277 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ff85412
......@@ -230,6 +230,12 @@ static int flv_read_header(AVFormatContext *s,
url_fskip(&s->pb, 4);
flags = get_byte(&s->pb);
/* old flvtool cleared this field */
/* FIXME: better fix needed */
if (!flags) {
flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO;
av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n");
}
if(flags & FLV_HEADER_FLAG_HASVIDEO){
st = av_new_stream(s, 0);
......
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