Mercurial > mplayer.hg
annotate libvo/x11_common.h @ 30272:c6c40936049c
We only need to disable seeking back in ad_ffmpeg when we actually _use_
a parser, not when just needs_parsing is set.
Fixes playback of e.g. ADPCM in AVI like http://samples.mplayerhq.hu/avi/imaadpcm.avi
author | reimar |
---|---|
date | Fri, 15 Jan 2010 21:01:31 +0000 |
parents | 1d39794263eb |
children | 18b9a39a5bac |
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 |
30166
1d39794263eb
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
30083
diff
changeset
|
22 #include <stdint.h> |
4993 | 23 #include <X11/Xlib.h> |
24 #include <X11/Xutil.h> | |
25 | |
27750
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
26 #include "config.h" |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
27 |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
28 #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
|
29 #define X11_FULLSCREEN 1 |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
30 #endif |
2c11b155ff11
Move X11_FULLSCREEN definition to x11_common.h where it belongs.
diego
parents:
27377
diff
changeset
|
31 |
14663
9d79600ff98d
X11 headers must be included also when X11_FULLSCREEN is not defined (although
reimar
parents:
13843
diff
changeset
|
32 #ifdef X11_FULLSCREEN |
9d79600ff98d
X11 headers must be included also when X11_FULLSCREEN is not defined (although
reimar
parents:
13843
diff
changeset
|
33 |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
34 #define vo_wm_LAYER 1 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
35 #define vo_wm_FULLSCREEN 2 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
36 #define vo_wm_STAYS_ON_TOP 4 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
37 #define vo_wm_ABOVE 8 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
38 #define vo_wm_BELOW 16 |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
39 #define vo_wm_NETWM (vo_wm_FULLSCREEN | vo_wm_STAYS_ON_TOP | vo_wm_ABOVE | vo_wm_BELOW) |
8864 | 40 |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
41 /* EWMH state actions, see |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
42 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
|
43 #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
|
44 #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
|
45 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */ |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
11542
diff
changeset
|
46 |
8864 | 47 extern int metacity_hack; |
48 | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
49 extern int vo_fs_layer; |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5955
diff
changeset
|
50 extern int vo_wm_type; |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
51 extern int vo_fs_type; |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8864
diff
changeset
|
52 extern char** vo_fstype_list; |
32 | 53 |
922
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 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
|
55 extern Display *mDisplay; |
2455 | 56 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
|
57 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
|
58 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
|
59 |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5835
diff
changeset
|
60 extern int vo_mouse_autohide; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
4993
diff
changeset
|
61 |
27886 | 62 int vo_init( void ); |
63 void vo_uninit( void ); | |
64 void vo_hidecursor ( Display* , Window ); | |
65 void vo_showcursor( Display *disp, Window win ); | |
66 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
|
67 void vo_x11_classhint( Display * display,Window window,const char *name ); |
27886 | 68 void vo_x11_nofs_sizepos(int x, int y, int width, int height); |
69 void vo_x11_sizehint( int x, int y, int width, int height, int max ); | |
70 int vo_x11_check_events(Display *mydisplay); | |
71 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
|
72 int vo_x11_update_geometry(void); |
27886 | 73 void vo_x11_fullscreen( void ); |
74 void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer ); | |
75 void vo_x11_uninit(void); | |
76 Colormap vo_x11_create_colormap(XVisualInfo *vinfo); | |
77 uint32_t vo_x11_set_equalizer(char *name, int value); | |
78 uint32_t vo_x11_get_equalizer(char *name, int *value); | |
79 void fstype_help(void); | |
80 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
|
81 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
|
82 int depth, Colormap col_map); |
27886 | 83 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
|
84 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
|
85 Colormap col_map, const char *classname, const char *title); |
27886 | 86 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
|
87 int img_width, int img_height, int use_fs); |
27886 | 88 void vo_x11_clearwindow( Display *mDisplay, Window vo_window ); |
89 void vo_x11_ontop(void); | |
90 void vo_x11_border(void); | |
91 void vo_x11_ewmh_fullscreen( int action ); | |
6095 | 92 |
32 | 93 #endif |
94 | |
4993 | 95 extern Window vo_window; |
96 extern GC vo_gc; | |
97 extern XSizeHints vo_hint; | |
4795 | 98 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27306
diff
changeset
|
99 #ifdef CONFIG_XV |
14742 | 100 //XvPortID xv_port; |
101 extern unsigned int xv_port; | |
102 | |
27886 | 103 int vo_xv_set_eq(uint32_t xv_port, char * name, int value); |
104 int vo_xv_get_eq(uint32_t xv_port, char * name, int *value); | |
14742 | 105 |
27886 | 106 int vo_xv_enable_vsync(void); |
15864 | 107 |
27886 | 108 void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height ); |
16958 | 109 |
14742 | 110 /*** colorkey handling ***/ |
111 typedef struct xv_ck_info_s | |
112 { | |
113 int method; ///< CK_METHOD_* constants | |
114 int source; ///< CK_SRC_* constants | |
115 } xv_ck_info_t; | |
116 | |
117 #define CK_METHOD_NONE 0 ///< no colorkey drawing | |
118 #define CK_METHOD_BACKGROUND 1 ///< set colorkey as window background | |
119 #define CK_METHOD_AUTOPAINT 2 ///< let xv draw the colorkey | |
120 #define CK_METHOD_MANUALFILL 3 ///< manually draw the colorkey | |
121 #define CK_SRC_USE 0 ///< use specified / default colorkey | |
122 #define CK_SRC_SET 1 ///< use and set specified / default colorkey | |
123 #define CK_SRC_CUR 2 ///< use current colorkey ( get it from xv ) | |
124 | |
125 extern xv_ck_info_t xv_ck_info; | |
126 extern unsigned long xv_colorkey; | |
127 | |
27886 | 128 int vo_xv_init_colorkey(void); |
129 void vo_xv_draw_colorkey(int32_t x, int32_t y, int32_t w, int32_t h); | |
130 void xv_setup_colorkeyhandling(char const * ck_method_str, char const * ck_str); | |
14742 | 131 |
132 /*** test functions for common suboptions ***/ | |
133 int xv_test_ck( void * arg ); | |
134 int xv_test_ckm( void * arg ); | |
10359 | 135 #endif |
136 | |
27886 | 137 void vo_setwindow( Window w,GC g ); |
138 void vo_x11_putkey(int key); | |
723 | 139 |
324 | 140 void saver_off( Display * ); |
141 void saver_on( Display * ); | |
3990 | 142 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27306
diff
changeset
|
143 #ifdef CONFIG_XF86VM |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27886
diff
changeset
|
144 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
|
145 void vo_vm_close(void); |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
3990
diff
changeset
|
146 #endif |
4981 | 147 |
18174 | 148 void update_xinerama_info(void); |
149 | |
8864 | 150 int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return); |
151 | |
26029 | 152 #endif /* MPLAYER_X11_COMMON_H */ |