diff options
author | Philip Langdale <philipl@overt.org> | 2022-09-04 16:42:32 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2022-09-06 12:49:10 -0700 |
commit | 4a59eba227135f90a59a412a0175c783dc0be6d5 (patch) | |
tree | 30c511709ce2839d92384b714203f78898e94ea8 /libswscale/utils.c | |
parent | 198b5b90d5ab1c48aa54e0c6f2b6acd28487b0b3 (diff) | |
download | ffmpeg-4a59eba227135f90a59a412a0175c783dc0be6d5.tar.gz |
swscale/input: add support for Y212LE
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 ab86037cd4..a5a9bc589a 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -249,6 +249,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_NV24] = { 1, 1 }, [AV_PIX_FMT_NV42] = { 1, 1 }, [AV_PIX_FMT_Y210LE] = { 1, 0 }, + [AV_PIX_FMT_Y212LE] = { 1, 0 }, [AV_PIX_FMT_X2RGB10LE] = { 1, 1 }, [AV_PIX_FMT_X2BGR10LE] = { 1, 1 }, [AV_PIX_FMT_P210BE] = { 1, 1 }, |