aboutsummaryrefslogtreecommitdiffstats
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-10-21 22:08:02 -0300
committerJames Almer <jamrial@gmail.com>2024-10-23 14:11:35 -0300
commitb520d95467bcacbdb514b1f458ad14c157857b51 (patch)
treedf053ff781cfad3d0807b843c93b0599d1ea552a /libswscale/utils.c
parent7756cd98acefcaad260d73811fa12e5e3903c8df (diff)
downloadffmpeg-b520d95467bcacbdb514b1f458ad14c157857b51.tar.gz
swscale/output: add Y216LE output support
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 25ed05afee..dc0cdb52d4 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -248,7 +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_Y216LE] = { 1, 1 },
[AV_PIX_FMT_X2RGB10LE] = { 1, 1 },
[AV_PIX_FMT_X2BGR10LE] = { 1, 1 },
[AV_PIX_FMT_P210BE] = { 1, 1 },