diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2016-09-24 23:09:43 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-09-27 18:48:30 +0200 |
commit | 9bd6ea5695660529b2887292874a7b9e61fc301e (patch) | |
tree | a0be0485e7678daa22bf3dd3944023e11b0a1ddd /libswscale/utils.c | |
parent | 0aebbbd024762d3c9c13f4bf0607710feee5e73a (diff) | |
download | ffmpeg-9bd6ea5695660529b2887292874a7b9e61fc301e.tar.gz |
pixfmt: Add yuv444p12 pixel format
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index dc442929b9..b7b534dceb 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -177,6 +177,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_YUV444P9LE] = { 1, 1 }, [AV_PIX_FMT_YUV444P10BE] = { 1, 1 }, [AV_PIX_FMT_YUV444P10LE] = { 1, 1 }, + [AV_PIX_FMT_YUV444P12BE] = { 1, 1 }, + [AV_PIX_FMT_YUV444P12LE] = { 1, 1 }, [AV_PIX_FMT_GBRP] = { 1, 1 }, [AV_PIX_FMT_GBRP9LE] = { 1, 1 }, [AV_PIX_FMT_GBRP9BE] = { 1, 1 }, |