annotate libvo/vo_xvidix.c @ 4316:9f8a618e87c3

fix screen saver bug under gui
author pontscho
date Wed, 23 Jan 2002 15:16:20 +0000
parents 2c7e6c87fb6f
children ed5b85b713a3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
1 /*
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
2 VIDIX accelerated overlay in a X window
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
3
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
4 (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
5
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
6 WS window manager by Pontscho/Fresh!
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
7
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
8 Based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;))
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
9 */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
10
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
11 #include <stdio.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
12 #include <stdlib.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
13 #include <string.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
14 #include <math.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
15 #include <errno.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
16
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
17 #include "config.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
18 #include "video_out.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
19 #include "video_out_internal.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
20
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
21 #include <X11/Xlib.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
22 #include <X11/Xutil.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
23 //#include <X11/keysym.h>
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
24
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
25 #ifdef HAVE_XINERAMA
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
26 #include <X11/extensions/Xinerama.h>
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
27 #endif
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
28
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
29 #include "x11_common.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
30 #include "aspect.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
31 #include "mp_msg.h"
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
32
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
33 #include "vosub_vidix.h"
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
34 #include "../vidix/vidixlib.h"
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
35
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
36 LIBVO_EXTERN(xvidix)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
37
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
38 static vo_info_t vo_info =
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
39 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
40 "X11 (VIDIX)",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
41 "xvidix",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
42 "Alex Beregszaszi",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
43 ""
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
44 };
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
45
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
46 #define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
47
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
48 /* X11 related variables */
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
49 static Window mWindow;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
50 static int X_already_started = 0;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
51
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
52 static GC mGC;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
53 static XGCValues mGCV;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
54 static uint32_t fgColor;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
55
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
56 /* VIDIX related stuff */
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
57 static const char *vidix_name = (char *)(-1);
4132
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
58 static int pre_init_err = 0;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
59
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
60 /* Image parameters */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
61 static uint32_t image_width;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
62 static uint32_t image_height;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
63 static uint32_t image_format;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
64 static uint32_t image_depth;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
65
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
66 /* Window parameters */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
67 static uint32_t window_x, window_y;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
68 static uint32_t window_width, window_height;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
69
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
70 /* used by XGetGeometry & XTranslateCoordinates */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
71 static Window mRoot;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
72 static uint32_t drwX, drwY, drwWidth, drwHeight, drwBorderWidth,
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
73 drwDepth, drwcX, drwcY, dwidth, dheight, mFullscreen;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
74
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
75 static vidix_grkey_t gr_key;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
76
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
77 static void set_window(int force_update)
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
78 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
79 #ifdef HAVE_NEW_GUI
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
80 if (vo_window != None)
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
81 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
82 if ((vo_dwidth == vo_screenwidth) && (vo_dheight == vo_screenheight))
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
83 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
84 mFullscreen = 1;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
85 dwidth = vo_screenwidth;
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
86 dheight = vo_screenwidth * vo_dheight / vo_dwidth;
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
87 }
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
88 else
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
89 {
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
90 mFullscreen = 0;
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
91 dwidth = vo_dwidth;
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
92 dheight = vo_dheight;
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
93 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
94 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
95 #endif
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
96
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
97 XGetGeometry(mDisplay, mWindow, &mRoot, &drwX, &drwY, &drwWidth,
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
98 &drwHeight, &drwBorderWidth, &drwDepth);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
99 drwX = drwY = 0;
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
100 XTranslateCoordinates(mDisplay, mWindow, mRoot, 0, 0,
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
101 &drwcX, &drwcY, &mRoot);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
102
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
103 if (!mFullscreen)
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
104 mp_msg(MSGT_VO, MSGL_V, "[xvidix] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
105 drwcX, drwcY, drwX, drwY, drwWidth, drwHeight);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
106
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
107 /* following stuff copied from vo_xmga.c */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
108 aspect(&dwidth, &dheight, A_NOZOOM);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
109 #if X11_FULLSCREEN
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
110 if (mFullscreen)
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
111 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
112 aspect(&dwidth, &dheight, A_ZOOM);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
113 drwX = (vo_screenwidth - (dwidth > vo_screenwidth ? vo_screenwidth : dwidth)) / 2;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
114 drwcX += drwX;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
115 drwY = (vo_screenheight - (dheight > vo_screenheight ? vo_screenheight : dheight)) / 2;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
116 drwcY += drwY;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
117 drwWidth = (dwidth > vo_screenwidth ? vo_screenwidth : dwidth);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
118 drwHeight = (dheight > vo_screenheight ? vo_screenheight : dheight);
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
119 mp_msg(MSGT_VO, MSGL_V, "[xvidix-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
120 drwcX, drwcY, drwX, drwY, drwWidth, drwHeight);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
121 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
122 #endif
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
123
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
124 #ifdef HAVE_XINERAMA
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
125 if (XineramaIsActive(mDisplay))
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
126 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
127 XineramaScreenInfo *screens;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
128 int num_screens;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
129 int i = 0;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
130
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
131 screens = XineramaQueryScreens(mDisplay, &num_screens);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
132
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
133 /* find the screen we are on */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
134 while ((screens[i].x_org <= drwcX) || (screens[i].y_org <= drwcY) ||
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
135 (screens[i].x_org + screens[i].width >= drwcX) ||
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
136 (screens[i].y_org + screens[i].height >= drwcY))
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
137 i++;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
138
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
139 /* set drwcX and drwcY to the right values */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
140 drwcX = drwcX - screens[i].x_org;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
141 drwcY = drwcY - screens[i].y_org;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
142 XFree(screens);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
143 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
144 #endif
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
145
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
146 /* set new values in VIDIX */
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
147 if (force_update || (window_x != drwcX) || (window_y != drwcY) ||
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
148 (window_width != drwWidth) || (window_height != drwHeight))
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
149 {
4194
37c35f4ef9e2 Fixed resize bug.
nick
parents: 4133
diff changeset
150 window_x = drwcX;
37c35f4ef9e2 Fixed resize bug.
nick
parents: 4133
diff changeset
151 window_y = drwcY;
37c35f4ef9e2 Fixed resize bug.
nick
parents: 4133
diff changeset
152 window_width = drwWidth;
37c35f4ef9e2 Fixed resize bug.
nick
parents: 4133
diff changeset
153 window_height = drwHeight;
4198
7e2bf04c9a7c added vidix_start() and vidix_stop() for better runtime-resize support ;)
alex
parents: 4194
diff changeset
154
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
155 /* FIXME: implement runtime resize/move if possible, this way is very ugly! */
4198
7e2bf04c9a7c added vidix_start() and vidix_stop() for better runtime-resize support ;)
alex
parents: 4194
diff changeset
156 vidix_stop();
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
157 if (vidix_init(image_width, image_height, window_x, window_y,
4133
7134f727e3c6 Still one bit of bugs fixed
nick
parents: 4132
diff changeset
158 window_width, window_height, image_format, vo_depthonscreen, vo_screenwidth, vo_screenheight) != 0)
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
159 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
160 mp_msg(MSGT_VO, MSGL_FATAL, "Can't initialize VIDIX driver: %s: %s\n",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
161 vidix_name, strerror(errno));
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
162 vidix_term();
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
163 uninit();
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
164 exit(1); /* !!! */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
165 }
4198
7e2bf04c9a7c added vidix_start() and vidix_stop() for better runtime-resize support ;)
alex
parents: 4194
diff changeset
166 vidix_start();
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
167 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
168
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
169 mp_msg(MSGT_VO, MSGL_INFO, "[xvidix] window properties: pos: %dx%d, size: %dx%d\n",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
170 window_x, window_y, window_width, window_height);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
171
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
172
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
173 /* mDrawColorKey: */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
174
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
175 /* fill drawable with specified color */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
176 XSetForeground(mDisplay, mGC, fgColor);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
177 XFillRectangle(mDisplay, mWindow, mGC, drwX, drwY, drwWidth,
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
178 (mFullscreen ? drwHeight - 1 : drwHeight));
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
179 /* flush, update drawable */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
180 XFlush(mDisplay);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
181
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
182 return;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
183 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
184
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
185 /* connect to server, create and map window,
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
186 * allocate colors and (shared) memory
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
187 */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
188 static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width,
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
189 uint32_t d_height, uint32_t flags, char *title, uint32_t format)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
190 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
191 XVisualInfo vinfo;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
192 XSizeHints hint;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
193 XSetWindowAttributes xswa;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
194 unsigned long xswamask;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
195 XWindowAttributes attribs;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
196 int window_depth;
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
197
4132
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
198 if(pre_init_err)
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
199 {
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
200 mp_msg(MSGT_VO, MSGL_INFO, "[xvidix] Quiting due preinit error\n");
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
201 return -1;
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
202 }
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
203 // if (title)
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
204 // free(title);
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
205 title = strdup("MPlayer VIDIX X11 Overlay");
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
206
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
207 image_height = height;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
208 image_width = width;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
209 image_format = format;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
210
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
211 if (IMGFMT_IS_RGB(format))
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
212 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
213 image_depth = IMGFMT_RGB_DEPTH(format);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
214 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
215 else
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
216 if (IMGFMT_IS_BGR(format))
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
217 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
218 image_depth = IMGFMT_BGR_DEPTH(format);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
219 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
220 else
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
221 switch(format)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
222 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
223 case IMGFMT_IYUV:
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
224 case IMGFMT_I420:
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
225 case IMGFMT_YV12:
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
226 image_depth = 12;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
227 break;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
228 case IMGFMT_YUY2:
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
229 image_depth = 16;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
230 break;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
231 default:
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
232 mp_msg(MSGT_VO, MSGL_FATAL, "Unknown image format: %s",
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
233 vo_format_name(format));
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
234 return(-1);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
235 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
236
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
237 if (X_already_started)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
238 return(-1);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
239 if (!vo_init())
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
240 return(-1);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
241
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
242 aspect_save_orig(width, height);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
243 aspect_save_prescale(d_width, d_height);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
244 aspect_save_screenres(vo_screenwidth, vo_screenheight);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
245
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
246 window_x = 0;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
247 window_y = 0;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
248 window_width = d_width;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
249 window_height = d_height;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
250
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
251 mFullscreen = flags&0x01;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
252
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
253 X_already_started++;
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
254
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
255 /* from xmga.c */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
256 switch(vo_depthonscreen)
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
257 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
258 case 32:
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
259 case 24:
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
260 fgColor = 0x00ff00ffL;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
261 break;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
262 case 16:
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
263 fgColor = 0xf81fL;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
264 break;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
265 case 15:
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
266 fgColor = 0x7c1fL;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
267 break;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
268 default:
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
269 mp_msg(MSGT_VO, MSGL_ERR, "Sorry, this (%d) color depth is not supported\n",
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
270 vo_depthonscreen);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
271 }
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
272
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
273 aspect(&d_width, &d_height, A_NOZOOM);
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
274
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
275 #ifdef HAVE_NEW_GUI
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
276 if (vo_window == None)
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
277 {
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
278 #endif
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
279
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
280 #ifdef X11_FULLSCREEN
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
281 if (mFullscreen) /* fullscreen */
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
282 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
283 if (flags & 0x04)
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
284 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
285 aspect(&d_width, &d_height, A_ZOOM);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
286 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
287 else
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
288 {
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
289 d_width = vo_screenwidth;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
290 d_height = vo_screenheight;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
291 }
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
292 }
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
293 #endif
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
294
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
295 /* Make the window */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
296 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), &attribs);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
297
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
298 /* from vo_x11 */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
299 window_depth = attribs.depth;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
300 if ((window_depth != 15) && (window_depth != 16) && (window_depth != 24)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
301 && (window_depth != 32))
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
302 window_depth = 24;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
303 XMatchVisualInfo(mDisplay, mScreen, window_depth, TrueColor, &vinfo);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
304
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
305 xswa.background_pixel = BlackPixel(mDisplay, mScreen);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
306 xswa.border_pixel = 0;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
307 xswa.colormap = XCreateColormap(mDisplay, RootWindow(mDisplay, mScreen),
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
308 vinfo.visual, AllocNone);
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
309 xswa.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
310 xswamask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
311
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
312 if (WinID >= 0)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
313 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
314 mWindow = WinID ? ((Window)WinID) : RootWindow(mDisplay, mScreen);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
315 XUnmapWindow(mDisplay, mWindow);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
316 XChangeWindowAttributes(mDisplay, mWindow, xswamask, &xswa);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
317 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
318 else
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
319 mWindow = XCreateWindow(mDisplay, RootWindow(mDisplay, mScreen),
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
320 window_x, window_y, window_width, window_height, xswa.border_pixel,
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
321 vinfo.depth, InputOutput, vinfo.visual, xswamask, &xswa);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
322
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
323 vo_x11_classhint(mDisplay, mWindow, "xvidix");
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
324 vo_hidecursor(mDisplay, mWindow);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
325
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
326 #ifdef X11_FULLSCREEN
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
327 if (mFullscreen) /* fullscreen */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
328 vo_x11_decoration(mDisplay, mWindow, 0);
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
329 #endif
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
330
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
331 XGetNormalHints(mDisplay, mWindow, &hint);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
332 hint.x = window_x;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
333 hint.y = window_y;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
334 hint.base_width = hint.width = window_width;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
335 hint.base_height = hint.height = window_height;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
336 hint.flags = USPosition | USSize;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
337 XSetNormalHints(mDisplay, mWindow, &hint);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
338
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
339 XStoreName(mDisplay, mWindow, title);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
340 /* Map window. */
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
341
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
342 XMapWindow(mDisplay, mWindow);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
343 #ifdef HAVE_XINERAMA
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
344 vo_x11_xinerama_move(mDisplay, mWindow);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
345 #endif
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
346
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
347 mGC = XCreateGC(mDisplay, mWindow, GCForeground, &mGCV);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
348
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
349 #ifdef HAVE_NEW_GUI
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
350 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
351 else
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
352 {
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
353 /* window was created by GUI */
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
354 mWindow = vo_window;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
355 mGC = vo_gc;
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
356 }
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
357 #endif
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
358
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
359 mp_msg(MSGT_VO, MSGL_INFO, "[xvidix] image properties: %dx%d depth: %d\n",
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
360 image_width, image_height, image_depth);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
361
4255
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
362 if (vidix_grkey_support())
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
363 {
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
364 vidix_grkey_get(&gr_key);
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
365 gr_key.key_op = KEYS_PUT;
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
366 gr_key.ckey.op = CKEY_TRUE;
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
367 gr_key.ckey.red = 255;
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
368 gr_key.ckey.green = 0;
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
369 gr_key.ckey.blue = 255;
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
370 vidix_grkey_set(&gr_key);
5a4a4b272d10 vidix_grkey_support checking for colorkeying
alex
parents: 4241
diff changeset
371 }
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
372
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
373 set_window(1);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
374
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
375 #ifdef HAVE_NEW_GUI
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
376 if (vo_window == None)
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
377 #endif
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
378 {
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
379 XFlush(mDisplay);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
380 XSync(mDisplay, False);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
381 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
382
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
383 saver_off(mDisplay); /* turning off screen saver */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
384
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
385 return(0);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
386 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
387
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
388 static const vo_info_t *get_info(void)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
389 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
390 return(&vo_info);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
391 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
392
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
393
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
394 static void check_events(void)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
395 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
396 const int event = vo_x11_check_events(mDisplay);
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
397
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
398 if ((event & VO_EVENT_RESIZE) || (event & VO_EVENT_EXPOSE))
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
399 set_window(0);
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
400
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
401 return;
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
402 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
403
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
404 /* draw_osd, flip_page, draw_slice, draw_frame should be
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
405 overwritten with vidix functions (vosub_vidix.c) */
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
406 static void draw_osd(void)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
407 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
408 mp_msg(MSGT_VO, MSGL_FATAL, "[xvidix] error: didn't used vidix draw_osd!\n");
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
409 return;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
410 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
411
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
412 static void flip_page(void)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
413 {
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
414 mp_msg(MSGT_VO, MSGL_FATAL, "[xvidix] error: didn't used vidix flip_page!\n");
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
415 return;
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
416 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
417
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
418 static uint32_t draw_slice(uint8_t *src[], int stride[],
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
419 int w, int h, int x, int y)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
420 {
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
421 UNUSED(src);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
422 UNUSED(stride);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
423 UNUSED(w);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
424 UNUSED(h);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
425 UNUSED(x);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
426 UNUSED(y);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
427 mp_msg(MSGT_VO, MSGL_FATAL, "[xvidix] error: didn't used vidix draw_slice!\n");
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
428 return(0);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
429 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
430
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
431 static uint32_t draw_frame(uint8_t *src[])
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
432 {
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
433 UNUSED(src);
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
434 mp_msg(MSGT_VO, MSGL_FATAL, "[xvidix] error: didn't used vidix draw_frame!\n");
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
435 return(0);
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
436 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
437
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
438 static uint32_t query_format(uint32_t format)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
439 {
4132
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
440 static int first = 1;
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
441 if(first)
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
442 {
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
443 first = 0;
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
444 if (vidix_name == (char *)(-1))
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
445 {
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
446 if (vo_subdevice)
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
447 vidix_name = strdup(vo_subdevice);
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
448 else
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
449 {
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
450 mp_msg(MSGT_VO, MSGL_INFO, "No vidix driver name provided, probing available drivers!\n");
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
451 vidix_name = NULL;
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
452 }
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
453 }
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
454
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
455 if (vidix_preinit(vidix_name, &video_out_xvidix) != 0)
4132
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
456 {
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
457 pre_init_err = 1;
4125
88de258b3ea9 fixed vidix_name handling (subdevice)
alex
parents: 4123
diff changeset
458 return(0);
4132
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
459 }
84ecfd03c86a test for preinit errors and correct handling subdevice
nick
parents: 4131
diff changeset
460 }
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
461 return(pre_init_err ? 0 : vidix_query_fourcc(format));
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
462 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
463
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
464
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
465 static void uninit(void)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
466 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
467 vidix_term();
4316
9f8a618e87c3 fix screen saver bug under gui
pontscho
parents: 4271
diff changeset
468 saver_on(mDisplay); /* screen saver back on */
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
469 #ifdef HAVE_NEW_GUI
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
470 /* destroy window only if it's not controlled by GUI */
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
471 if (vo_window == None)
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
472 #endif
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
473 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
474 if (!(WinID > 0)) /* don't destory window if -wid specified */
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
475 {
4241
817742049fa0 updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents: 4198
diff changeset
476 XDestroyWindow(mDisplay, mWindow);
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
477 XCloseDisplay(mDisplay);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
478 }
4123
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
479 }
467a7141f5c9 added X11/VIDIX
alex
parents:
diff changeset
480 }
4271
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
481
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
482 /* i think this is obsoleted.... -- alex */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
483 static void Terminate_Display_Process(void)
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
484 {
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
485 getchar(); /* wait for enter to remove window */
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
486 vidix_term();
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
487 XDestroyWindow(mDisplay, mWindow);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
488 XCloseDisplay(mDisplay);
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
489 X_already_started = 0;
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
490
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
491 return;
2c7e6c87fb6f reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents: 4255
diff changeset
492 }