diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-07-20 15:00:35 -0500 |
---|---|---|
committer | Rodger Combs <rodger.combs@gmail.com> | 2015-10-09 21:18:28 -0500 |
commit | 4ab56667594842283dc5ae07f0daba2a2cb4d3af (patch) | |
tree | 10d269842de3ede7a6c8349b697ce66519466709 /libavformat/isom.h | |
parent | cd847839f33e58a2c2259595335ab483ef32667d (diff) | |
download | ffmpeg-4ab56667594842283dc5ae07f0daba2a2cb4d3af.tar.gz |
lavf/mov: add support for sidx fragment indexes
Fixes trac #3842
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 2 |
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]; |