summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorMark Reid <mindmark@gmail.com>2020-05-03 16:10:03 -0700
committerMichael Niedermayer <michael@niedermayer.cc>2020-05-05 20:06:58 +0200
commitba5d0515a6dc0e34d578e5ef94b6ca5f17fc979d (patch)
tree94633e3f0fa417f3c421aeeaf20a2224c233f8a9 /libswscale/utils.c
parentf93bd302821e08df5ee037e67c4b85bec5d4d475 (diff)
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.c4
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 },