summaryrefslogtreecommitdiff
path: root/gst/ffmpegcolorspace/avcodec.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-02-12 22:29:00 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-02-12 22:29:00 +0000
commitc89562b61a13c95036bd661a988e4c6b9b2cfbdb (patch)
treeca0bcbbe1e53b90f905135d2efb647eb0f198615 /gst/ffmpegcolorspace/avcodec.h
parent4aa7bf75d6261c41dbdbbd2bae13f9098bf46183 (diff)
downloadgstreamer-plugins-base-c89562b61a13c95036bd661a988e4c6b9b2cfbdb.tar.gz
Convert to and from YV12 (fixes #156379)
Original commit message from CVS: Convert to and from YV12 (fixes #156379)
Diffstat (limited to 'gst/ffmpegcolorspace/avcodec.h')
-rw-r--r--gst/ffmpegcolorspace/avcodec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/ffmpegcolorspace/avcodec.h b/gst/ffmpegcolorspace/avcodec.h
index b6f94d753..f9a39f9ac 100644
--- a/gst/ffmpegcolorspace/avcodec.h
+++ b/gst/ffmpegcolorspace/avcodec.h
@@ -52,7 +52,8 @@ enum CodecType {
* to run on the IBM VGA graphics adapter use 6-bit palette components.
*/
enum PixelFormat {
- PIX_FMT_YUV420P, ///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples)
+ PIX_FMT_YUV420P, ///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples) (I420)
+ PIX_FMT_YVU420P, ///< Planar YUV 4:2:0 (1 Cb & Cr sample per 2x2 Y samples) (YV12)
PIX_FMT_YUV422, ///< Packed pixel, Y0 Cb Y1 Cr
PIX_FMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB...
PIX_FMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR...