diff options
author | Mark Reid <mindmark@gmail.com> | 2020-05-03 16:10:03 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-05-05 20:06:58 +0200 |
commit | ba5d0515a6dc0e34d578e5ef94b6ca5f17fc979d (patch) | |
tree | 94633e3f0fa417f3c421aeeaf20a2224c233f8a9 /libswscale/utils.c | |
parent | f93bd302821e08df5ee037e67c4b85bec5d4d475 (diff) | |
download | ffmpeg-ba5d0515a6dc0e34d578e5ef94b6ca5f17fc979d.tar.gz |
libswscale: add input support AV_PIX_FMT_GBRAPF32
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 bb3495b990..193efdd881 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -236,6 +236,10 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_GBRP14BE] = { 1, 1 }, [AV_PIX_FMT_GBRP16LE] = { 1, 1 }, [AV_PIX_FMT_GBRP16BE] = { 1, 1 }, + [AV_PIX_FMT_GBRPF32LE] = { 1, 0 }, + [AV_PIX_FMT_GBRPF32BE] = { 1, 0 }, + [AV_PIX_FMT_GBRAPF32LE] = { 1, 0 }, + [AV_PIX_FMT_GBRAPF32BE] = { 1, 0 }, [AV_PIX_FMT_GBRAP] = { 1, 1 }, [AV_PIX_FMT_GBRAP16LE] = { 1, 1 }, [AV_PIX_FMT_GBRAP16BE] = { 1, 1 }, |