Mercurial > mplayer.hg
annotate libvo/x11_common.h @ 30098:834af9d1e3e9
Add support for 440p colorspace.
author | reimar |
---|---|
date | Wed, 30 Dec 2009 12:03:17 +0000 |
parents | 8375205ecdcc |
children | 1d39794263eb |
rev | line source |
---|---|
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
1 /* |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
2 * This file is part of MPlayer. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
3 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
7 * (at your option) any later version. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
8 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
12 * GNU General Public License for more details. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
13 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
17 */ |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
18 |
26029 | 19 #ifndef MPLAYER_X11_COMMON_H |
20 #define MPLAYER_X11_COMMON_H | |
32 | 21 |
4993 | 22 #include <X11/Xlib.h> |
23 #include <X11/Xutil.h> | |
24 | |
27750
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
25 #include "config.h" |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
26 |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
27 #if defined(CONFIG_GL) || defined(CONFIG_X11) || defined(CONFIG_XV) |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
28 #define X11_FULLSCREEN 1 |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
29 #endif |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
30 |
14663
9d79600ff98d
X11 headers must be included also when X11_FULLSCREEN is not defined (although
reimar
parents:
13843
diff
changeset
|
31 #ifdef X11_FULLSCREEN |
9d79600ff98d
X11 headers must be included also when X11_FULLSCREEN is not defined (although
reimar
parents:
13843
diff
changeset
|
32 |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
33 #define vo_wm_LAYER 1 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
34 #define vo_wm_FULLSCREEN 2 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
35 #define vo_wm_STAYS_ON_TOP 4 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
36 #define vo_wm_ABOVE 8 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
37 #define vo_wm_BELOW 16 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
38 #define vo_wm_NETWM (vo_wm_FULLSCREEN | vo_wm_STAYS_ON_TOP | vo_wm_ABOVE | vo_wm_BELOW) |
8864 | 39 |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
40 /* EWMH state actions, see |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
41 http://freedesktop.org/Standards/wm-spec/index.html#id2768769 */ |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
42 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */ |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
43 #define _NET_WM_STATE_ADD 1 /* add/set property */ |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
44 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */ |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
45 |
8864 | 46 extern int metacity_hack; |
47 | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
48 extern int vo_fs_layer; |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5955
diff
changeset
|
49 extern int vo_wm_type; |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
50 extern int vo_fs_type; |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
51 extern char** vo_fstype_list; |
32 | 52 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
53 extern char *mDisplayName; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
54 extern Display *mDisplay; |
2455 | 55 extern Window mRootWin; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
56 extern int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
57 extern int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
58 |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5835
diff
changeset
|
59 extern int vo_mouse_autohide; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
4993
diff
changeset
|
60 |
27886 | 61 int vo_init( void ); |
62 void vo_uninit( void ); | |
63 void vo_hidecursor ( Display* , Window ); | |
64 void vo_showcursor( Display *disp, Window win ); | |
65 void vo_x11_decoration( Display * vo_Display,Window w,int d ); | |
30083
8375205ecdcc
vo_x11_classhint name argument should be const, since we pass string constants there.
reimar
parents:
28512
diff
changeset
|
66 void vo_x11_classhint( Display * display,Window window,const char *name ); |
27886 | 67 void vo_x11_nofs_sizepos(int x, int y, int width, int height); |
68 void vo_x11_sizehint( int x, int y, int width, int height, int max ); | |
69 int vo_x11_check_events(Display *mydisplay); | |
70 void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask); | |
27885
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27750
diff
changeset
|
71 int vo_x11_update_geometry(void); |
27886 | 72 void vo_x11_fullscreen( void ); |
73 void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer ); | |
74 void vo_x11_uninit(void); | |
75 Colormap vo_x11_create_colormap(XVisualInfo *vinfo); | |
76 uint32_t vo_x11_set_equalizer(char *name, int value); | |
77 uint32_t vo_x11_get_equalizer(char *name, int *value); | |
78 void fstype_help(void); | |
79 Window vo_x11_create_smooth_window( Display *mDisplay, Window mRoot, | |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10359
diff
changeset
|
80 Visual *vis, int x, int y, unsigned int width, unsigned int height, |
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10359
diff
changeset
|
81 int depth, Colormap col_map); |
27886 | 82 void vo_x11_create_vo_window(XVisualInfo *vis, int x, int y, |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
22886
diff
changeset
|
83 unsigned int width, unsigned int height, int flags, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
22886
diff
changeset
|
84 Colormap col_map, const char *classname, const char *title); |
27886 | 85 void vo_x11_clearwindow_part(Display *mDisplay, Window vo_window, |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10359
diff
changeset
|
86 int img_width, int img_height, int use_fs); |
27886 | 87 void vo_x11_clearwindow( Display *mDisplay, Window vo_window ); |
88 void vo_x11_ontop(void); | |
89 void vo_x11_border(void); | |
90 void vo_x11_ewmh_fullscreen( int action ); | |
6095 | 91 |
32 | 92 #endif |
93 | |
4993 | 94 extern Window vo_window; |
95 extern GC vo_gc; | |
96 extern XSizeHints vo_hint; | |
4795 | 97 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27306
diff
changeset
|
98 #ifdef CONFIG_XV |
14742 | 99 //XvPortID xv_port; |
100 extern unsigned int xv_port; | |
101 | |
27886 | 102 int vo_xv_set_eq(uint32_t xv_port, char * name, int value); |
103 int vo_xv_get_eq(uint32_t xv_port, char * name, int *value); | |
14742 | 104 |
27886 | 105 int vo_xv_enable_vsync(void); |
15864 | 106 |
27886 | 107 void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height ); |
16958 | 108 |
14742 | 109 /*** colorkey handling ***/ |
110 typedef struct xv_ck_info_s | |
111 { | |
112 int method; ///< CK_METHOD_* constants | |
113 int source; ///< CK_SRC_* constants | |
114 } xv_ck_info_t; | |
115 | |
116 #define CK_METHOD_NONE 0 ///< no colorkey drawing | |
117 #define CK_METHOD_BACKGROUND 1 ///< set colorkey as window background | |
118 #define CK_METHOD_AUTOPAINT 2 ///< let xv draw the colorkey | |
119 #define CK_METHOD_MANUALFILL 3 ///< manually draw the colorkey | |
120 #define CK_SRC_USE 0 ///< use specified / default colorkey | |
121 #define CK_SRC_SET 1 ///< use and set specified / default colorkey | |
122 #define CK_SRC_CUR 2 ///< use current colorkey ( get it from xv ) | |
123 | |
124 extern xv_ck_info_t xv_ck_info; | |
125 extern unsigned long xv_colorkey; | |
126 | |
27886 | 127 int vo_xv_init_colorkey(void); |
128 void vo_xv_draw_colorkey(int32_t x, int32_t y, int32_t w, int32_t h); | |
129 void xv_setup_colorkeyhandling(char const * ck_method_str, char const * ck_str); | |
14742 | 130 |
131 /*** test functions for common suboptions ***/ | |
132 int xv_test_ck( void * arg ); | |
133 int xv_test_ckm( void * arg ); | |
10359 | 134 #endif |
135 | |
27886 | 136 void vo_setwindow( Window w,GC g ); |
137 void vo_x11_putkey(int key); | |
723 | 138 |
324 | 139 void saver_off( Display * ); |
140 void saver_on( Display * ); | |
3990 | 141 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27306
diff
changeset
|
142 #ifdef CONFIG_XF86VM |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27886
diff
changeset
|
143 void vo_vm_switch(void); |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27886
diff
changeset
|
144 void vo_vm_close(void); |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
3990
diff
changeset
|
145 #endif |
4981 | 146 |
18174 | 147 void update_xinerama_info(void); |
148 | |
8864 | 149 int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return); |
150 | |
26029 | 151 #endif /* MPLAYER_X11_COMMON_H */ |