video-chroma: add interlaced flag
authorWim Taymans <wim.taymans@collabora.co.uk>
Mon, 27 May 2013 09:25:09 +0000 (11:25 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 27 May 2013 09:25:09 +0000 (11:25 +0200)
gst-libs/gst/video/video-chroma.h

index 63a3145..8c450d2 100644 (file)
@@ -71,12 +71,13 @@ typedef enum {
 /**
  * GstVideoChromaFlags:
  * @GST_VIDEO_CHROMA_FLAG_NONE: no flags
+ * @GST_VIDEO_CHROMA_FLAG_INTERLACED: the input is interlaced
  *
- * Extra flags that influence the result from gst_video_chroma_resample_new()
- * and extra features of the returned resampler.
+ * Extra flags that influence the result from gst_video_chroma_resample_new().
  */
 typedef enum {
   GST_VIDEO_CHROMA_FLAG_NONE       = 0,
+  GST_VIDEO_CHROMA_FLAG_INTERLACED = (1 << 0),
 } GstVideoChromaFlags;
 
 typedef struct _GstVideoChromaResample GstVideoChromaResample;