diff libmpcodecs/img_format.h @ 29458:c85a54f30ed9

100l, fix compilation again and make codec-cfg.c use the predefined constants instead of reimplementing the IMGFMT_RGB|bit_depth logic.
author reimar
date Wed, 12 Aug 2009 01:03:21 +0000
parents 052acc1342ca
children c9c2befb2409
line wrap: on
line diff
--- a/libmpcodecs/img_format.h	Wed Aug 12 00:51:09 2009 +0000
+++ b/libmpcodecs/img_format.h	Wed Aug 12 01:03:21 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|48)
+#define IMGFMT_RGB48BE (IMGFMT_RGB|48|128)
 
 #define IMGFMT_BGR_MASK 0xFFFFFF00
 #define IMGFMT_BGR (('B'<<24)|('G'<<16)|('R'<<8))