[FFmpeg-cvslog] r13201 - trunk/libavformat/mov.c
bcoudurier
subversion
Tue May 20 04:22:44 CEST 2008
Author: bcoudurier
Date: Tue May 20 04:22:44 2008
New Revision: 13201
Log:
warn about multiple fourcc
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Tue May 20 04:22:44 2008
@@ -697,6 +697,7 @@ static int mov_read_stsd(MOVContext *c,
/* Multiple fourcc, we skip JPEG. This is not correct, we should
* export it as a separate AVStream but this needs a few changes
* in the MOV demuxer, patch welcome. */
+ av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
url_fskip(pb, size - (url_ftell(pb) - start_pos));
continue;
}
More information about the ffmpeg-cvslog
mailing list