1
mirror of https://github.com/mpv-player/mpv synced 2025-01-05 03:06:28 +01:00

1000l, RGB48BE does _not_ use 49 bit/pixel, probably fixes 48 bit PNG decoding.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29499 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-08-12 00:51:09 +00:00
parent 6ca4476753
commit c9f520a3f9

View File

@ -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))