diff options
author | James Almer <jamrial@gmail.com> | 2024-10-06 19:43:24 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-08 22:24:47 -0300 |
commit | ec7f5e314dbb4cd171600f1438d6e3a03c695971 (patch) | |
tree | 30df439f3bbba058e268f28546724d5bf95fc820 /libswscale/utils.c | |
parent | bb37d3c33e5791e8b87ea6843463c2bb64e8327d (diff) | |
download | ffmpeg-ec7f5e314dbb4cd171600f1438d6e3a03c695971.tar.gz |
swscale/input: add UYVA 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 403444b309..978a2e1f09 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -269,6 +269,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_XV30LE] = { 1, 1 }, [AV_PIX_FMT_XV36LE] = { 1, 1 }, [AV_PIX_FMT_AYUV] = { 1, 0 }, + [AV_PIX_FMT_UYVA] = { 1, 0 }, }; /** |