summaryrefslogtreecommitdiff
path: root/gst/matroska/matroska-ids.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/matroska/matroska-ids.h')
-rw-r--r--gst/matroska/matroska-ids.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gst/matroska/matroska-ids.h b/gst/matroska/matroska-ids.h
index 9a88010d0..c2e41e549 100644
--- a/gst/matroska/matroska-ids.h
+++ b/gst/matroska/matroska-ids.h
@@ -500,8 +500,10 @@ typedef enum {
} GstMatroskaTrackFlags;
typedef enum {
- GST_MATROSKA_VIDEOTRACK_INTERLACED = (GST_MATROSKA_TRACK_SHIFT<<0)
-} GstMatroskaVideoTrackFlags;
+ GST_MATROSKA_INTERLACE_MODE_UNKNOWN = 0,
+ GST_MATROSKA_INTERLACE_MODE_INTERLACED = 1,
+ GST_MATROSKA_INTERLACE_MODE_PROGRESSIVE = 2,
+} GstMatroskaInterlaceMode;
typedef enum {
GST_MATROSKA_STEREO_MODE_SBS_LR = 0x1,
@@ -596,6 +598,8 @@ typedef struct _GstMatroskaTrackVideoContext {
GstMatroskaAspectRatioMode asr_mode;
guint32 fourcc;
+ GstMatroskaInterlaceMode interlace_mode;
+
GstVideoMultiviewMode multiview_mode;
GstVideoMultiviewFlags multiview_flags;