projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Tell the user if a AVI is non interleaved.
[ffmpeg.git]
/
libavformat
/
avidec.c
diff --git
a/libavformat/avidec.c
b/libavformat/avidec.c
index
96b411b
..
a84acf8
100644
(file)
--- a/
libavformat/avidec.c
+++ b/
libavformat/avidec.c
@@
-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;
}