diff options
author | Martin Storsjö <martin@martin.st> | 2013-09-09 12:05:01 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-09-17 23:25:46 +0300 |
commit | a4adabb460ace39783d707a5b3bbe28b4b5b9dc4 (patch) | |
tree | 886524bd40008ae80a3d6854f5712e8abacf8179 /libavformat/movenc.h | |
parent | c77d409bf95954aceb762dd800d1ee2868c4b0d4 (diff) | |
download | ffmpeg-a4adabb460ace39783d707a5b3bbe28b4b5b9dc4.tar.gz |
movenc: Write the moof atom in two passes
This is a bit more work, but avoids having to fill in
the data offset field afterwards instead of directly when
the rest of the trun atom is written.
This simplifies future cases where this field needs to be set to
something different.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r-- | libavformat/movenc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h index 78001cc3f2..bcb87e18e7 100644 --- a/libavformat/movenc.h +++ b/libavformat/movenc.h @@ -116,7 +116,6 @@ typedef struct MOVTrack { HintSampleQueue sample_queue; AVIOContext *mdat_buf; - int64_t moof_size_offset; int64_t data_offset; int64_t frag_start; int64_t tfrf_offset; |