diff options
author | James Almer <jamrial@gmail.com> | 2022-08-04 00:10:30 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-08-05 09:39:21 -0300 |
commit | f0abd07996c35d2160488cb7e6794eb6d22cecc9 (patch) | |
tree | f79d763a96ce867817a1e5e17a6fcdd585843733 /libswscale/utils.c | |
parent | cbb53bfbd803f6407f6e19211b2cf47dc9711408 (diff) | |
download | ffmpeg-f0abd07996c35d2160488cb7e6794eb6d22cecc9.tar.gz |
swscale/input: add VUYA input support
Reviewed-by: Philip Langdale <philipl@overt.org>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index c0504a6dfc..bc3d1c955c 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -258,6 +258,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_P416BE] = { 1, 1 }, [AV_PIX_FMT_P416LE] = { 1, 1 }, [AV_PIX_FMT_NV16] = { 1, 1 }, + [AV_PIX_FMT_VUYA] = { 1, 0 }, }; int ff_shuffle_filter_coefficients(SwsContext *c, int *filterPos, |