[FFmpeg-cvslog] lavf/mov: skip version and flags attributes in mov_read_chan function
Matthieu Bouron
git at videolan.org
Wed Feb 6 22:48:14 CET 2013
ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at gmail.com> | Mon Feb 4 22:06:11 2013 +0100| [59d40fc7e66e6ebb2d89e25115492bfe13b07d95] | committer: Michael Niedermayer
lavf/mov: skip version and flags attributes in mov_read_chan function
Fixes ticket #1764.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59d40fc7e66e6ebb2d89e25115492bfe13b07d95
---
libavformat/mov.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 7f7c0e1..52c2503 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -696,6 +696,9 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if (atom.size < 16)
return 0;
+ /* skip version and flags */
+ avio_skip(pb, 4);
+
ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
return 0;
More information about the ffmpeg-cvslog
mailing list