From: Wim Taymans Date: Mon, 27 May 2013 09:25:09 +0000 (+0200) Subject: video-chroma: add interlaced flag X-Git-Tag: 1.1.1~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73190bcf79a0d032a8662cdb31334859de495531;p=platform%2Fupstream%2Fgst-plugins-base.git video-chroma: add interlaced flag --- diff --git a/gst-libs/gst/video/video-chroma.h b/gst-libs/gst/video/video-chroma.h index 63a3145..8c450d2 100644 --- a/gst-libs/gst/video/video-chroma.h +++ b/gst-libs/gst/video/video-chroma.h @@ -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;