diff options
author | James Almer <jamrial@gmail.com> | 2024-10-07 00:19:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-12 10:08:29 -0300 |
commit | 57db8e0571ce3b0ef75def1d405ef45b7b3a5004 (patch) | |
tree | bc09168472f2e72108a2427662a108a05e29af3f /libswscale/utils.c | |
parent | eac9af382a7250b0f3fd821ee8eab7b266ded95a (diff) | |
download | ffmpeg-57db8e0571ce3b0ef75def1d405ef45b7b3a5004.tar.gz |
swscale/output: add VYU444 output support
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index c80cc18eb2..719619858f 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -270,7 +270,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_XV36LE] = { 1, 1 }, [AV_PIX_FMT_AYUV] = { 1, 1 }, [AV_PIX_FMT_UYVA] = { 1, 1 }, - [AV_PIX_FMT_VYU444] = { 1, 0 }, + [AV_PIX_FMT_VYU444] = { 1, 1 }, [AV_PIX_FMT_V30XLE] = { 1, 0 }, }; |