diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-02 19:27:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-02 19:44:08 +0200 |
commit | 37f69cd93e6343bcf34f55fadc8fedfebb7d235c (patch) | |
tree | 616e126ca1aa8a5c939aae897d60a239b021d291 /libswscale/utils.c | |
parent | cc8b45c0ce35465fd0efee7103e41bcc28251f99 (diff) | |
download | ffmpeg-37f69cd93e6343bcf34f55fadc8fedfebb7d235c.tar.gz |
swscale: add full bgra64 support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 3ced7ad3b9..983824b222 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -165,8 +165,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_Y400A] = { 1, 0 }, [AV_PIX_FMT_BGR48BE] = { 1, 1 }, [AV_PIX_FMT_BGR48LE] = { 1, 1 }, - [AV_PIX_FMT_BGRA64BE] = { 0, 0, 1 }, - [AV_PIX_FMT_BGRA64LE] = { 0, 0, 1 }, + [AV_PIX_FMT_BGRA64BE] = { 1, 1, 1 }, + [AV_PIX_FMT_BGRA64LE] = { 1, 1, 1 }, [AV_PIX_FMT_YUV420P9BE] = { 1, 1 }, [AV_PIX_FMT_YUV420P9LE] = { 1, 1 }, [AV_PIX_FMT_YUV420P10BE] = { 1, 1 }, |