diff options
author | Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> | 2012-04-13 18:59:14 +0900 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-04-13 23:08:34 +0300 |
commit | accea4d9d8ef4a51a02653568118eb2862bf79cc (patch) | |
tree | 38b491848065337e09f0f6a80e8fdb8ba7d9551b /libavformat/isom.h | |
parent | f346b6bbebd86525c65bf7f40190d7ba3eb8a90a (diff) | |
download | ffmpeg-accea4d9d8ef4a51a02653568118eb2862bf79cc.tar.gz |
mov: Fix detecting there is no sync sample.
Stss atom without entries doesn't mean every sample is a sync sample.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 214af589a5..f716d9323f 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -106,6 +106,7 @@ typedef struct MOVStreamContext { unsigned int sample_size; unsigned int sample_count; int *sample_sizes; + int keyframe_absent; unsigned int keyframe_count; int *keyframes; int time_scale; |