diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2012-09-20 10:40:10 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-27 08:59:36 +0200 |
commit | a714150827c70f8baf2ec42dfecd9363c17e803d (patch) | |
tree | 030bb16e0d7b55016ea385368a0945f3c3f0fffc /libavformat/movenc.h | |
parent | f379a108a45a800bff059034f939224e4535a8e7 (diff) | |
download | ffmpeg-a714150827c70f8baf2ec42dfecd9363c17e803d.tar.gz |
lavf/movenc: add faststart option.
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r-- | libavformat/movenc.h | 3 |
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); |