This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavf/mov: skip version and flags attributes in mov_read_chan function
Fixes ticket
#1764
. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Matthieu Bouron
Michael Niedermayer
13 years ago
parent
4745194336
commit
59d40fc7e6
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
libavformat/mov.c
+ 3
- 0
libavformat/mov.c
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save