Commit 8b58b532 authored by michael's avatar michael

Tell the user if a AVI is non interleaved.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13482 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 96dfa14f
......@@ -605,8 +605,10 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
avi_load_index(s);
avi->index_loaded = 1;
avi->non_interleaved |= guess_ni_flag(s);
if(avi->non_interleaved)
if(avi->non_interleaved) {
av_log(s, AV_LOG_INFO, "Non interleaved AVI\n");
clean_index(s);
}
return 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