You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavf/mov: skip version and flags attributes in mov_read_chan function
Fixes ticket #1764. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
4745194336
commit
59d40fc7e6
@@ -696,6 +696,9 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
if (atom.size < 16)
|
if (atom.size < 16)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
/* skip version and flags */
|
||||||
|
avio_skip(pb, 4);
|
||||||
|
|
||||||
ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
|
ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user