diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2018-11-24 16:22:52 +0100 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2018-11-24 16:24:47 +0100 |
commit | 86e6f0dbc7fd31e4a071c9fc1fc94fb9e74e0624 (patch) | |
tree | 9e60b60803cb9d657231abfd65b919cb77ddc924 /libswscale/utils.c | |
parent | 80b0624099da8f758928676aa848473182fd4b8c (diff) | |
download | ffmpeg-86e6f0dbc7fd31e4a071c9fc1fc94fb9e74e0624.tar.gz |
swscale : add support for YUVA444P12 and YUVA422P12
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index d5913ed733..df68bcc0d9 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -260,6 +260,10 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_P016BE] = { 1, 1 }, [AV_PIX_FMT_GRAYF32LE] = { 1, 1 }, [AV_PIX_FMT_GRAYF32BE] = { 1, 1 }, + [AV_PIX_FMT_YUVA422P12BE] = { 1, 1 }, + [AV_PIX_FMT_YUVA422P12LE] = { 1, 1 }, + [AV_PIX_FMT_YUVA444P12BE] = { 1, 1 }, + [AV_PIX_FMT_YUVA444P12LE] = { 1, 1 }, }; int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |