[FFmpeg-cvslog] lavf/mov: skip version and flags attributes in mov_read_chan function

Matthieu Bouron git at videolan.org
Wed Feb 6 23:37:25 CET 2013


ffmpeg | branch: release/1.1 | Matthieu Bouron <matthieu.bouron at gmail.com> | Mon Feb  4 22:06:11 2013 +0100| [02d3ad8609573a4b0069e57df03646ec3d92fdf1] | committer: Carl Eugen Hoyos

lavf/mov: skip version and flags attributes in mov_read_chan function

Fixes ticket #1764.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 59d40fc7e66e6ebb2d89e25115492bfe13b07d95)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=02d3ad8609573a4b0069e57df03646ec3d92fdf1
---

 libavformat/mov.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 6c78adb..b818a80 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