video-chroma: add interlaced flag

This commit is contained in:
Wim Taymans 2013-05-27 11:25:09 +02:00
parent 7b8ff707b6
commit 73190bcf79

View 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;