summaryrefslogtreecommitdiffstats
path: root/video/out/vo_x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_x11.c')
-rw-r--r--video/out/vo_x11.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/out/vo_x11.c b/video/out/vo_x11.c
index 6c122d944b..dc2a2a0c8f 100644
--- a/video/out/vo_x11.c
+++ b/video/out/vo_x11.c
@@ -159,6 +159,8 @@ static void freeMyXImage(struct priv *p, int foo)
p->myximage[foo] = NULL;
}
+#define BM(first, count) (((1 << (count)) - 1) << (first))
+
const struct fmt_entry {
uint32_t mpfmt;
int depth;
@@ -176,6 +178,7 @@ const struct fmt_entry {
{IMGFMT_BGR0, 32, MSBFirst, 0x0000FF00, 0x00FF0000, 0xFF000000},
{IMGFMT_BGR0, 32, LSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF},
{IMGFMT_RGB565, 16, LSBFirst, 0x0000F800, 0x000007E0, 0x0000001F},
+ {IMGFMT_RGB30, 32, LSBFirst, BM(20, 10), BM(10, 10), BM(0, 10)},
{0}
};