diff options
author | Clément Bœsch | 2013-01-01 15:42:33 +0100 |
---|---|---|
committer | Clément Bœsch | 2013-01-01 16:20:10 +0100 |
commit | 8d398f40b4a18fec8467c8b074344e4e24853c46 (patch) | |
tree | a048af40fc032e2da54a9effe9c6e0d8f04a17b0 /libavformat/isom.h | |
parent | 69a1667b064b11a2df4b4bdc136955f76d17f558 (diff) |
lavf/mov: simplify timecode track ref.
There can be only one track reference. The multiple tref handling is
handled at a different level.
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index f6eba56220..0360c53f11 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -128,9 +128,7 @@ typedef struct MOVStreamContext { unsigned drefs_count; MOVDref *drefs; int dref_id; - unsigned tref_type; - unsigned trefs_count; - uint32_t *trefs; + int timecode_track; int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files) int width; ///< tkhd width int height; ///< tkhd height |