Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-12 17:05:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-12 17:05:25 +0400
commit63725d158d34f8c57c9baa4ec6138d8c70d77581 (patch)
tree0a96ec21b7dd6ddc508908b708681d82a0350f38 /libswscale
parentd93bc4ef5c1729fde4ae9d172e57c2dd928ad5fe (diff)
Revert "sws: support endianness conversion for AV_PIX_FMT_RGBA64"
This reverts commit 23f7b14f2851d1d1a969c12b7e337826f0c74a43. This commit broke fate
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/utils.c4
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 },