summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-05-20 02:22:44 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-05-20 02:22:44 +0000
commit285a3da9bd27f1ecf9e0b22ee56779575cd67447 (patch)
tree3b490f55caf4af56bffc1dc3e3df02d42f057b52
parent978677a779e947cc9366143b86bb78c604cff919 (diff)
warn about multiple fourcc
Originally committed as revision 13201 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index c58f7135b5..2f7a9c73b5 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -697,6 +697,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
/* 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;
}