changeset 29457:052acc1342ca

1000l, RGB48BE does _not_ use 49 bit/pixel, probably fixes 48 bit PNG decoding.
author reimar
date Wed, 12 Aug 2009 00:51:09 +0000
parents 3e4e16a014f3
children c85a54f30ed9
files libmpcodecs/img_format.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/img_format.h	Wed Aug 12 00:27:00 2009 +0000
+++ b/libmpcodecs/img_format.h	Wed Aug 12 00:51:09 2009 +0000
@@ -14,7 +14,7 @@
 #define IMGFMT_RGB24 (IMGFMT_RGB|24)
 #define IMGFMT_RGB32 (IMGFMT_RGB|32)
 #define IMGFMT_RGB48LE (IMGFMT_RGB|48)
-#define IMGFMT_RGB48BE (IMGFMT_RGB|49)
+#define IMGFMT_RGB48BE (IMGFMT_RGB|48)
 
 #define IMGFMT_BGR_MASK 0xFFFFFF00
 #define IMGFMT_BGR (('B'<<24)|('G'<<16)|('R'<<8))