mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Change the order of the components for RGB565LE and RGB565BE,
to make them resemble the order in the name: BGR <-> RGB. Originally committed as revision 18279 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb39fb512a
commit
f938cbf984
@ -160,9 +160,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
.log2_chroma_w= 0,
|
||||
.log2_chroma_h= 0,
|
||||
.comp = {
|
||||
{0,1,1,0,4}, /* B */
|
||||
{0,1,1,5,5}, /* G */
|
||||
{0,1,2,3,4}, /* R */
|
||||
{0,1,1,5,5}, /* G */
|
||||
{0,1,1,0,4}, /* B */
|
||||
},
|
||||
},
|
||||
[PIX_FMT_RGB565BE] = {
|
||||
@ -171,9 +171,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
|
||||
.log2_chroma_w= 0,
|
||||
.log2_chroma_h= 0,
|
||||
.comp = {
|
||||
{0,1,1,0,4}, /* B */
|
||||
{0,1,1,5,5}, /* G */
|
||||
{0,1,0,3,4}, /* R */
|
||||
{0,1,1,5,5}, /* G */
|
||||
{0,1,1,0,4}, /* B */
|
||||
},
|
||||
.flags = PIX_FMT_BE,
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user