summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-04 21:33:07 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-04 21:33:29 +0200
commit0b25261d29c6b348e2dccc2985090cf10a60c34f (patch)
tree3798257fc3502fffffd3913451f739fee1d33656 /libavutil
parent073c074447c253111790c0472fb83f184e66814e (diff)
parente0d73fda361729d207e51fa2afd8ba6102e58d98 (diff)
Merge commit 'e0d73fda361729d207e51fa2afd8ba6102e58d98'
* commit 'e0d73fda361729d207e51fa2afd8ba6102e58d98': avutil: add alias names for gray 8/16 colour spaces Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/pixdesc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
index 7e5cedd048..3fb7e2ade5 100644
--- a/libavutil/pixdesc.c
+++ b/libavutil/pixdesc.c
@@ -258,6 +258,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{ 0, 0, 1, 0, 7 }, /* Y */
},
.flags = AV_PIX_FMT_FLAG_PSEUDOPAL,
+ .alias = "gray8,y8",
},
[AV_PIX_FMT_MONOWHITE] = {
.name = "monow",
@@ -568,6 +569,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
{ 0, 1, 1, 0, 15 }, /* Y */
},
.flags = AV_PIX_FMT_FLAG_BE,
+ .alias = "y16be",
},
[AV_PIX_FMT_GRAY16LE] = {
.name = "gray16le",
@@ -577,6 +579,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
.comp = {
{ 0, 1, 1, 0, 15 }, /* Y */
},
+ .alias = "y16le",
},
[AV_PIX_FMT_YUV440P] = {
.name = "yuv440p",