diff options
author | Lynne <dev@lynne.ee> | 2023-02-25 09:36:58 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:35 +0200 |
commit | 934525eae0f73fe61f5d4694b6ae413ccc823d8c (patch) | |
tree | 348148d844a17e4d22ef33044e716649af3bea2a /libswscale/utils.c | |
parent | 0bda3340a32d1ed932697145be301a01dcea9687 (diff) | |
download | ffmpeg-934525eae0f73fe61f5d4694b6ae413ccc823d8c.tar.gz |
lsws: add in/out support for the new 12-bit 2-plane 422 and 444 pixfmts
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 b02e6cdc64..8fe34a3437 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -248,8 +248,12 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_X2BGR10LE] = { 1, 1 }, [AV_PIX_FMT_P210BE] = { 1, 1 }, [AV_PIX_FMT_P210LE] = { 1, 1 }, + [AV_PIX_FMT_P212BE] = { 1, 1 }, + [AV_PIX_FMT_P212LE] = { 1, 1 }, [AV_PIX_FMT_P410BE] = { 1, 1 }, [AV_PIX_FMT_P410LE] = { 1, 1 }, + [AV_PIX_FMT_P412BE] = { 1, 1 }, + [AV_PIX_FMT_P412LE] = { 1, 1 }, [AV_PIX_FMT_P216BE] = { 1, 1 }, [AV_PIX_FMT_P216LE] = { 1, 1 }, [AV_PIX_FMT_P416BE] = { 1, 1 }, |