mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 10:55:34 +00:00
video-chroma: add interlaced flag
This commit is contained in:
parent
7b8ff707b6
commit
73190bcf79
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue