summaryrefslogtreecommitdiff
path: root/libavformat/movenc.h
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-09-20 10:40:10 +0200
committerClément Bœsch <ubitux@gmail.com>2012-09-27 08:59:36 +0200
commita714150827c70f8baf2ec42dfecd9363c17e803d (patch)
tree030bb16e0d7b55016ea385368a0945f3c3f0fffc /libavformat/movenc.h
parentf379a108a45a800bff059034f939224e4535a8e7 (diff)
lavf/movenc: add faststart option.
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r--libavformat/movenc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h
index b4b3f1c6ac..da6f19bbe0 100644
--- a/libavformat/movenc.h
+++ b/libavformat/movenc.h
@@ -152,7 +152,7 @@ typedef struct MOVMuxContext {
int flags;
int rtp_flags;
- int reserved_moov_size;
+ int reserved_moov_size; ///< 0 for disabled, -1 for automatic, size otherwise
int64_t reserved_moov_pos;
int iods_skip;
@@ -174,6 +174,7 @@ typedef struct MOVMuxContext {
#define FF_MOV_FLAG_SEPARATE_MOOF 16
#define FF_MOV_FLAG_FRAG_CUSTOM 32
#define FF_MOV_FLAG_ISML 64
+#define FF_MOV_FLAG_FASTSTART 128
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);