diff options
author | James Almer <jamrial@gmail.com> | 2025-03-05 12:55:26 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2025-03-10 10:15:42 -0300 |
commit | 468577d1a52908519bb5af91cbe1430b5ae44d1e (patch) | |
tree | f1cf5ca6b905d113782ec01d1beecc094be96dd7 /libswscale/utils.c | |
parent | 61fc9b6fee1a818f0e91d14b2026a8aa5c5b3fe3 (diff) | |
download | ffmpeg-468577d1a52908519bb5af91cbe1430b5ae44d1e.tar.gz |
swscale/input: add support for YAF16 and YAF32
Signed-off-by: James Almer <jamrial@gmail.com>
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 c2fbaf5515..953bf015e4 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -252,6 +252,10 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_GRAYF32BE] = { 1, 1 }, [AV_PIX_FMT_GRAYF16LE] = { 1, 0 }, [AV_PIX_FMT_GRAYF16BE] = { 1, 0 }, + [AV_PIX_FMT_YAF32LE] = { 1, 0 }, + [AV_PIX_FMT_YAF32BE] = { 1, 0 }, + [AV_PIX_FMT_YAF16LE] = { 1, 0 }, + [AV_PIX_FMT_YAF16BE] = { 1, 0 }, [AV_PIX_FMT_YUVA422P12BE] = { 1, 1 }, [AV_PIX_FMT_YUVA422P12LE] = { 1, 1 }, [AV_PIX_FMT_YUVA444P12BE] = { 1, 1 }, |