diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-15 10:33:51 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-15 10:33:51 +0000 |
commit | e5681ba0f2f5c7bdc64076ca587b86ced89d2787 (patch) | |
tree | 7c2c2168a653ca3f7ee1ddf19e46079da4a67c98 /libavcodec/pixdesc.c | |
parent | e49da8273be326b77d082a2060be2bfd86769bb1 (diff) | |
download | ffmpeg-e5681ba0f2f5c7bdc64076ca587b86ced89d2787.tar.gz |
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
Diffstat (limited to 'libavcodec/pixdesc.c')
-rw-r--r-- | libavcodec/pixdesc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pixdesc.c b/libavcodec/pixdesc.c index aac9cba6cf..ceec276a30 100644 --- a/libavcodec/pixdesc.c +++ b/libavcodec/pixdesc.c @@ -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 #if 0 - [PIX_FMT_RGB565_LE] = { + [PIX_FMT_RGB565LE] = { .nb_channels = 3, .log2_chroma_w= 0, .log2_chroma_h= 0, @@ -154,7 +154,7 @@ static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = { {0,1,2,3,4}, }, }, - [PIX_FMT_RGB565_BE] = { + [PIX_FMT_RGB565BE] = { .nb_channels = 3, .log2_chroma_w= 0, .log2_chroma_h= 0, |