diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-12 15:05:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-12 15:05:25 +0200 |
commit | 63725d158d34f8c57c9baa4ec6138d8c70d77581 (patch) | |
tree | 0a96ec21b7dd6ddc508908b708681d82a0350f38 /libswscale/utils.c | |
parent | d93bc4ef5c1729fde4ae9d172e57c2dd928ad5fe (diff) | |
download | ffmpeg-63725d158d34f8c57c9baa4ec6138d8c70d77581.tar.gz |
Revert "sws: support endianness conversion for AV_PIX_FMT_RGBA64"
This reverts commit 23f7b14f2851d1d1a969c12b7e337826f0c74a43.
This commit broke fate
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 2fddebfa4a..b372e9698c 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -138,8 +138,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_YUVA444P16LE]= { 1, 1 }, [AV_PIX_FMT_RGB48BE] = { 1, 1 }, [AV_PIX_FMT_RGB48LE] = { 1, 1 }, - [AV_PIX_FMT_RGBA64BE] = { 1, 0, 1 }, - [AV_PIX_FMT_RGBA64LE] = { 1, 0, 1 }, + [AV_PIX_FMT_RGBA64BE] = { 1, 0 }, + [AV_PIX_FMT_RGBA64LE] = { 1, 0 }, [AV_PIX_FMT_RGB565BE] = { 1, 1 }, [AV_PIX_FMT_RGB565LE] = { 1, 1 }, [AV_PIX_FMT_RGB555BE] = { 1, 1 }, |