Commit 23f7b14f authored by Paul B Mahol's avatar Paul B Mahol

sws: support endianness conversion for AV_PIX_FMT_RGBA64

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent cd43a7e9
......@@ -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 },
[AV_PIX_FMT_RGBA64LE] = { 1, 0 },
[AV_PIX_FMT_RGBA64BE] = { 1, 0, 1 },
[AV_PIX_FMT_RGBA64LE] = { 1, 0, 1 },
[AV_PIX_FMT_RGB565BE] = { 1, 1 },
[AV_PIX_FMT_RGB565LE] = { 1, 1 },
[AV_PIX_FMT_RGB555BE] = { 1, 1 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment