Commit f4e0ec81 authored by Paul B Mahol's avatar Paul B Mahol

pixdesc: BGRA64 is rgb pixel format

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 5b51efdc
......@@ -791,7 +791,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
{ 0, 7, 1, 0, 15 }, /* B */
{ 0, 7, 7, 0, 15 }, /* A */
},
.flags = PIX_FMT_BE,
.flags = PIX_FMT_BE | PIX_FMT_RGB,
},
[PIX_FMT_BGRA64LE] = {
.name = "bgra64le",
......@@ -804,6 +804,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
{ 0, 7, 1, 0, 15 }, /* B */
{ 0, 7, 7, 0, 15 }, /* A */
},
.flags = PIX_FMT_RGB,
},
[PIX_FMT_BGR565BE] = {
.name = "bgr565be",
......
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