summaryrefslogtreecommitdiff
path: root/libavformat/isom.h
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2015-07-20 15:00:35 -0500
committerRodger Combs <rodger.combs@gmail.com>2015-10-09 21:18:28 -0500
commit4ab56667594842283dc5ae07f0daba2a2cb4d3af (patch)
tree10d269842de3ede7a6c8349b697ce66519466709 /libavformat/isom.h
parentcd847839f33e58a2c2259595335ab483ef32667d (diff)
lavf/mov: add support for sidx fragment indexes
Fixes trac #3842
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r--libavformat/isom.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h
index aee9d6e8c7..6e921c04a0 100644
--- a/libavformat/isom.h
+++ b/libavformat/isom.h
@@ -103,6 +103,7 @@ typedef struct MOVSbgp {
typedef struct MOVFragmentIndexItem {
int64_t moof_offset;
int64_t time;
+ int headers_read;
} MOVFragmentIndexItem;
typedef struct MOVFragmentIndex {
@@ -197,6 +198,7 @@ typedef struct MOVContext {
int has_looked_for_mfra;
MOVFragmentIndex** fragment_index_data;
unsigned fragment_index_count;
+ int fragment_index_complete;
int atom_depth;
unsigned int aax_mode; ///< 'aax' file has been detected
uint8_t file_key[20];