summaryrefslogtreecommitdiff
path: root/gst-libs/gst/video/video.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-09-12 19:34:28 -0700
committerDavid Schleef <ds@schleef.org>2010-09-14 12:33:21 -0700
commit1a75dede56301b4da8008e942cb6c0794233b99d (patch)
tree13d6b0b6493b842a9c8cb70f085cf0f567b0e8fb /gst-libs/gst/video/video.h
parentd9495fdc2165f4cbe4b1ae7b210474556d995ecd (diff)
downloadgstreamer-plugins-base-1a75dede56301b4da8008e942cb6c0794233b99d.tar.gz
video: Add UYVP, 10-bit 4:2:2
Diffstat (limited to 'gst-libs/gst/video/video.h')
-rw-r--r--gst-libs/gst/video/video.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst-libs/gst/video/video.h b/gst-libs/gst/video/video.h
index 393b92a83..ba8ac98b9 100644
--- a/gst-libs/gst/video/video.h
+++ b/gst-libs/gst/video/video.h
@@ -63,6 +63,7 @@ G_BEGIN_DECLS
* @GST_VIDEO_FORMAT_BGR16: reverse rgb 5-6-5 bits per component (Since: 0.10.30)
* @GST_VIDEO_FORMAT_RGB15: rgb 5-5-5 bits per component (Since: 0.10.30)
* @GST_VIDEO_FORMAT_BGR15: reverse rgb 5-5-5 bits per component (Since: 0.10.30)
+ * @GST_VIDEO_FORMAT_UYVP: packed 10-bit 4:2:2 YUV (U0-Y0-V0-Y1 U2-Y2-V2-Y3 U4 ...)
*
* Enum value describing the most common video formats.
*/
@@ -100,7 +101,8 @@ typedef enum {
GST_VIDEO_FORMAT_RGB16,
GST_VIDEO_FORMAT_BGR16,
GST_VIDEO_FORMAT_RGB15,
- GST_VIDEO_FORMAT_BGR15
+ GST_VIDEO_FORMAT_BGR15,
+ GST_VIDEO_FORMAT_UYVP
} GstVideoFormat;
#define GST_VIDEO_BYTE1_MASK_32 "0xFF000000"