Commit e5681ba0 authored by Stefano Sabatini's avatar Stefano Sabatini

Rename the (yet not defined) macros:

PIX_FMT_RGB565_BE -> PIX_FMT_RGB565BE
PIX_FMT_RGB565_LE -> PIX_FMT_RGB565LE
for consistency with the other pixfmts macros.

Originally committed as revision 17977 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e49da827
...@@ -144,7 +144,7 @@ static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = { ...@@ -144,7 +144,7 @@ static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = {
}, },
//FIXME change pix fmt defines so that we have a LE & BE instead of a native-endian //FIXME change pix fmt defines so that we have a LE & BE instead of a native-endian
#if 0 #if 0
[PIX_FMT_RGB565_LE] = { [PIX_FMT_RGB565LE] = {
.nb_channels = 3, .nb_channels = 3,
.log2_chroma_w= 0, .log2_chroma_w= 0,
.log2_chroma_h= 0, .log2_chroma_h= 0,
...@@ -154,7 +154,7 @@ static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = { ...@@ -154,7 +154,7 @@ static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = {
{0,1,2,3,4}, {0,1,2,3,4},
}, },
}, },
[PIX_FMT_RGB565_BE] = { [PIX_FMT_RGB565BE] = {
.nb_channels = 3, .nb_channels = 3,
.log2_chroma_w= 0, .log2_chroma_w= 0,
.log2_chroma_h= 0, .log2_chroma_h= 0,
......
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