Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-01-21 04:16:34 +0400
committerMartin Storsjö <martin@martin.st>2012-02-14 18:12:18 +0400
commit4ace130ee60163d88e998e717ec903e85d4775d0 (patch)
treecc286302018b078087a2f6aeb8e1743ca3a4f5ff /libavformat/movenc.h
parentae5a9355744f048e14c9242142f78f7023fa357f (diff)
movenc: Support muxing VC1
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r--libavformat/movenc.h9
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 {