diff options
author | Martin Storsjö <martin@martin.st> | 2012-01-21 02:16:34 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-14 16:12:18 +0200 |
commit | 4ace130ee60163d88e998e717ec903e85d4775d0 (patch) | |
tree | cc286302018b078087a2f6aeb8e1743ca3a4f5ff /libavformat/movenc.h | |
parent | ae5a9355744f048e14c9242142f78f7023fa357f (diff) | |
download | ffmpeg-4ace130ee60163d88e998e717ec903e85d4775d0.tar.gz |
movenc: Support muxing VC1
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r-- | libavformat/movenc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h index 5fc71fb99d..b77fc80b2f 100644 --- a/libavformat/movenc.h +++ b/libavformat/movenc.h @@ -120,6 +120,15 @@ typedef struct MOVIndex { int nb_frag_info; MOVFragmentInfo *frag_info; + + struct { + int64_t struct_offset; + int first_packet_seq; + int first_packet_entry; + int packet_seq; + int packet_entry; + int slices; + } vc1_info; } MOVTrack; typedef struct MOVMuxContext { |