Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThemaister <maister@archlinux.us>2011-10-08 23:54:20 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-10-09 01:19:14 +0400
commita3e11fa43ce144fc1f4d1c9f81b7de8f18ff628f (patch)
tree3e2d49a0d00f892e05add8bad55d18957a90c3c8 /libavutil
parent96fad826ffde544591c850bfaf0bcce530fffaab (diff)
Start adding pixel definitions for planar rgb.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/pixdesc.c9
-rw-r--r--libavutil/pixfmt.h1
2 files changed, 10 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
index 1b97ab2255..ba19afbda2 100644
--- a/libavutil/pixdesc.c
+++ b/libavutil/pixdesc.c
@@ -988,6 +988,15 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
{0,1,2,0,7}, /* A */
},
},
+ [PIX_FMT_GBR24P] = {
+ .name = "gbr24p",
+ .nb_components= 3,
+ .comp = {
+ {0,1,1,0,7}, /* G */
+ {1,1,1,0,7}, /* B */
+ {2,1,1,0,7}, /* R */
+ },
+ },
};
static enum PixelFormat get_pix_fmt_internal(const char *name)
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index 81cbd72560..f23d0c5054 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -154,6 +154,7 @@ enum PixelFormat {
PIX_FMT_RGBA64LE, ///< packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
PIX_FMT_BGRA64BE, ///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as big-endian
PIX_FMT_BGRA64LE, ///< packed RGBA 16:16:16:16, 64bpp, 16B, 16G, 16R, 16A, the 2-byte value for each R/G/B/A component is stored as little-endian
+ PIX_FMT_GBR24P, ///< planar GBR, 24bpp, 8G, 8B, 8R.
PIX_FMT_NB, ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
};