summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-05-06 15:13:53 +0000
committerPaul B Mahol <onemda@gmail.com>2013-05-08 12:48:05 +0000
commit5c057433ccd32f37ddc828d3f82c5b1ad7d3e3db (patch)
tree8edcb9970d79eda2e8c7da1c1f9d557a9999ea7c /libswscale/utils.c
parent8d9537228f034037e710146291a933f0f4f554be (diff)
libswscale: GBRAP input & output and GBRAP16 input support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index b0a0f19110..5f4dabfad7 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -200,9 +200,9 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
[AV_PIX_FMT_GBRP16BE] = { 1, 0 },
[AV_PIX_FMT_XYZ12BE] = { 1, 0, 1 },
[AV_PIX_FMT_XYZ12LE] = { 1, 0, 1 },
- [AV_PIX_FMT_GBRAP] = { 0, 0 },
- [AV_PIX_FMT_GBRAP16LE] = { 0, 0 },
- [AV_PIX_FMT_GBRAP16BE] = { 0, 0 },
+ [AV_PIX_FMT_GBRAP] = { 1, 1 },
+ [AV_PIX_FMT_GBRAP16LE] = { 1, 0 },
+ [AV_PIX_FMT_GBRAP16BE] = { 1, 0 },
};
int sws_isSupportedInput(enum AVPixelFormat pix_fmt)