diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2016-10-10 22:31:24 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-10-12 18:00:24 +0200 |
commit | ef3740c3a02bb8448bf7129e336c20846731bd1c (patch) | |
tree | c320a6b4e5511d7c5bf12da7029e7dbdd23c3b81 /libswscale/utils.c | |
parent | f59750641afdd6285bd977c450cc790bebb7693d (diff) | |
download | ffmpeg-ef3740c3a02bb8448bf7129e336c20846731bd1c.tar.gz |
swscale: Enable GBRP12 output
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 55b5275e6d..ad5518acfc 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -184,8 +184,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_GBRP9BE] = { 1, 1 }, [AV_PIX_FMT_GBRP10LE] = { 1, 1 }, [AV_PIX_FMT_GBRP10BE] = { 1, 1 }, - [AV_PIX_FMT_GBRP12LE] = { 1, 0 }, - [AV_PIX_FMT_GBRP12BE] = { 1, 0 }, + [AV_PIX_FMT_GBRP12LE] = { 1, 1 }, + [AV_PIX_FMT_GBRP12BE] = { 1, 1 }, [AV_PIX_FMT_GBRP16LE] = { 1, 0 }, [AV_PIX_FMT_GBRP16BE] = { 1, 0 }, [AV_PIX_FMT_GBRAP] = { 1, 1 }, |