diff options
author | James Almer <jamrial@gmail.com> | 2024-10-21 21:41:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-23 14:11:23 -0300 |
commit | 7756cd98acefcaad260d73811fa12e5e3903c8df (patch) | |
tree | 63134ae74c27697acd4c4ef37d0beabc4edda26f /libswscale/utils.c | |
parent | f462ba05f54dae6b4113c2d2162b861ed2ffe27c (diff) | |
download | ffmpeg-7756cd98acefcaad260d73811fa12e5e3903c8df.tar.gz |
swscale/input: add Y216LE input support
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 9b23df4dbb..25ed05afee 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -248,6 +248,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_NV42] = { 1, 1 }, [AV_PIX_FMT_Y210LE] = { 1, 1 }, [AV_PIX_FMT_Y212LE] = { 1, 1 }, + [AV_PIX_FMT_Y216LE] = { 1, 0 }, [AV_PIX_FMT_X2RGB10LE] = { 1, 1 }, [AV_PIX_FMT_X2BGR10LE] = { 1, 1 }, [AV_PIX_FMT_P210BE] = { 1, 1 }, |