summaryrefslogtreecommitdiff
path: root/libavformat/isom.h
diff options
context:
space:
mode:
authorYusuke Nakamura <muken.the.vfrmaniac@gmail.com>2011-06-05 02:45:54 +0900
committerMichael Niedermayer <michaelni@gmx.at>2011-10-28 01:37:50 +0200
commit05e417aa63ef73b3c3a767c334f6c53abdb1ea20 (patch)
tree3871caf8bb2327c4c8417f29591afcd693a7046c /libavformat/isom.h
parente7f008a53406e17c91d4fd12ffd140baac2560ff (diff)
mov: Support empty first edit + normal second edit.
(cherry picked from commit df342c91e6cfceb2537c2d1b2442dd685381a0ca) Reviewed-by: Baptiste Coudurier Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r--libavformat/isom.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h
index 7fc2b546f8..9269799e5e 100644
--- a/libavformat/isom.h
+++ b/libavformat/isom.h
@@ -109,7 +109,9 @@ typedef struct MOVStreamContext {
unsigned int keyframe_count;
int *keyframes;
int time_scale;
- int64_t time_offset; ///< time offset of the first edit list entry
+ int64_t empty_duration; ///< empty duration of the first edit list entry
+ int64_t start_time; ///< start time of the media
+ int64_t time_offset; ///< time offset of the edit list entries
int current_sample;
unsigned int bytes_per_frame;
unsigned int samples_per_frame;