Mercurial > mplayer.hg
annotate libvo/video_out.h @ 12084:68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
much more efficient encoding of the frame_code table
stream_id -> stream_id_plus1, that way 0 is the special case instead of stream_count and we can be sure the table needs only 8bit per entry
replace timestamp_msb by timestamp (and obviously dont code the lsb if the whole is coded) thats simpler and more compact
add a msb_timestamp flag to the frame_code[].flags
author | michael |
---|---|
date | Wed, 31 Mar 2004 01:44:57 +0000 |
parents | cd33d1e3b709 |
children | c000f4c23efd |
rev | line source |
---|---|
1 | 1 /* |
2 * video_out.h | |
3 * | |
4 * Copyright (C) Aaron Holtzman - Aug 1999 | |
31 | 5 * Strongly modified, most parts rewritten: A'rpi/ESP-team - 2000-2001 |
6781 | 6 * (C) MPlayer Developers |
1 | 7 * |
8 */ | |
4933 | 9 |
10 #ifndef __VIDEO_OUT_H | |
11 #define __VIDEO_OUT_H 1 | |
1 | 12 |
13 #include <inttypes.h> | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
14 #include <stdarg.h> |
1 | 15 |
5294 | 16 //#include "font_load.h" |
408 | 17 #include "img_format.h" |
8081 | 18 //#include "../vidix/vidix.h" |
1 | 19 |
31 | 20 #define VO_EVENT_EXPOSE 1 |
21 #define VO_EVENT_RESIZE 2 | |
22 #define VO_EVENT_KEYPRESS 4 | |
23 | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
7069
diff
changeset
|
24 /* Obsolete: VOCTRL_QUERY_VAA 1 */ |
6781 | 25 /* does the device support the required format */ |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
26 #define VOCTRL_QUERY_FORMAT 2 |
4754 | 27 /* signal a device reset seek */ |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
28 #define VOCTRL_RESET 3 |
4618 | 29 /* true if vo driver can use GUI created windows */ |
30 #define VOCTRL_GUISUPPORT 4 | |
7009 | 31 #define VOCTRL_GUI_NOWINDOW 19 |
4731 | 32 /* used to switch to fullscreen */ |
33 #define VOCTRL_FULLSCREEN 5 | |
4738 | 34 #define VOCTRL_SCREENSHOT 6 |
4754 | 35 /* signal a device pause */ |
36 #define VOCTRL_PAUSE 7 | |
37 /* start/resume playback */ | |
38 #define VOCTRL_RESUME 8 | |
4971 | 39 /* libmpcodecs direct rendering: */ |
40 #define VOCTRL_GET_IMAGE 9 | |
5502 | 41 #define VOCTRL_DRAW_IMAGE 13 |
6110 | 42 #define VOCTRL_SET_SPU_PALETTE 14 |
5002 | 43 /* decoding ahead: */ |
44 #define VOCTRL_GET_NUM_FRAMES 10 | |
45 #define VOCTRL_GET_FRAME_NUM 11 | |
46 #define VOCTRL_SET_FRAME_NUM 12 | |
6308 | 47 #define VOCTRL_GET_PANSCAN 15 |
48 #define VOCTRL_SET_PANSCAN 16 | |
6781 | 49 /* equalizer controls */ |
50 #define VOCTRL_SET_EQUALIZER 17 | |
51 #define VOCTRL_GET_EQUALIZER 18 | |
8450 | 52 //#define VOCTRL_GUI_NOWINDOW 19 |
53 /* Frame duplication */ | |
54 #define VOCTRL_DUPLICATE_FRAME 20 | |
55 // ... 21 | |
9560
ae2ce6ebc1fa
Pass start slice to the vo it make dr + slice implemantation easier
albeu
parents:
8450
diff
changeset
|
56 #define VOCTRL_START_SLICE 21 |
7009 | 57 |
11542 | 58 #define VOCTRL_ONTOP 25 |
59 | |
9569
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
60 // Vo can be used by xover |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
61 #define VOCTRL_XOVERLAY_SUPPORT 22 |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
62 |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
63 #define VOCTRL_XOVERLAY_SET_COLORKEY 24 |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
64 typedef struct { |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
65 uint32_t x11; // The raw x11 color |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
66 uint16_t r,g,b; |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
67 } mp_colorkey_t; |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
68 |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
69 #define VOCTRL_XOVERLAY_SET_WIN 23 |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
70 typedef struct { |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
71 int x,y; |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
72 int w,h; |
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
73 } mp_win_t; |
6307 | 74 |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
75 #define VO_TRUE 1 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
76 #define VO_FALSE 0 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
77 #define VO_ERROR -1 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
78 #define VO_NOTAVAIL -2 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
79 #define VO_NOTIMPL -3 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
80 |
4736 | 81 #define VOFLAG_FULLSCREEN 0x01 |
82 #define VOFLAG_MODESWITCHING 0x02 | |
83 #define VOFLAG_SWSCALE 0x04 | |
84 #define VOFLAG_FLIPPING 0x08 | |
9569
894d02a6469e
vo_xover is a new vo that should make easy to have x11 support for
albeu
parents:
9560
diff
changeset
|
85 #define VOFLAG_XOVERLAY_SUB_VO 0x10000 |
4736 | 86 |
1 | 87 typedef struct vo_info_s |
88 { | |
89 /* driver name ("Matrox Millennium G200/G400" */ | |
90 const char *name; | |
91 /* short name (for config strings) ("mga") */ | |
92 const char *short_name; | |
93 /* author ("Aaron Holtzman <aholtzma@ess.engr.uvic.ca>") */ | |
94 const char *author; | |
95 /* any additional comments */ | |
96 const char *comment; | |
97 } vo_info_t; | |
98 | |
99 typedef struct vo_functions_s | |
100 { | |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
8081
diff
changeset
|
101 vo_info_t *info; |
4352 | 102 /* |
103 * Preinitializes driver (real INITIALIZATION) | |
104 * arg - currently it's vo_subdevice | |
105 * returns: zero on successful initialization, non-zero on error. | |
106 */ | |
107 uint32_t (*preinit)(const char *arg); | |
1 | 108 /* |
4352 | 109 * Initialize (means CONFIGURE) the display driver. |
31 | 110 * params: |
111 * width,height: image source size | |
112 * d_width,d_height: size of the requested window size, just a hint | |
113 * fullscreen: flag, 0=windowd 1=fullscreen, just a hint | |
114 * title: window title, if available | |
115 * format: fourcc of pixel format | |
116 * returns : zero on successful initialization, non-zero on error. | |
1 | 117 */ |
4433 | 118 uint32_t (*config)(uint32_t width, uint32_t height, uint32_t d_width, |
119 uint32_t d_height, uint32_t fullscreen, char *title, | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
7069
diff
changeset
|
120 uint32_t format); |
1 | 121 |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
122 /* |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
123 * Control interface |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
124 */ |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
125 uint32_t (*control)(uint32_t request, void *data, ...); |
1 | 126 |
127 /* | |
31 | 128 * Display a new RGB/BGR frame of the video to the screen. |
129 * params: | |
130 * src[0] - pointer to the image | |
1 | 131 */ |
132 uint32_t (*draw_frame)(uint8_t *src[]); | |
133 | |
134 /* | |
31 | 135 * Draw a planar YUV slice to the buffer: |
136 * params: | |
137 * src[3] = source image planes (Y,U,V) | |
138 * stride[3] = source image planes line widths (in bytes) | |
139 * w,h = width*height of area to be copied (in Y pixels) | |
140 * x,y = position at the destination image (in Y pixels) | |
1 | 141 */ |
142 uint32_t (*draw_slice)(uint8_t *src[], int stride[], int w,int h, int x,int y); | |
143 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
144 /* |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
145 * Draws OSD to the screen buffer |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
146 */ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
147 void (*draw_osd)(void); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
148 |
1 | 149 /* |
31 | 150 * Blit/Flip buffer to the screen. Must be called after each frame! |
1 | 151 */ |
152 void (*flip_page)(void); | |
153 | |
31 | 154 /* |
155 * This func is called after every frames to handle keyboard and | |
156 * other events. It's called in PAUSE mode too! | |
157 */ | |
158 void (*check_events)(void); | |
159 | |
160 /* | |
161 * Closes driver. Should restore the original state of the system. | |
162 */ | |
1 | 163 void (*uninit)(void); |
164 | |
165 } vo_functions_t; | |
166 | |
1142 | 167 char *vo_format_name(int format); |
1326 | 168 int vo_init(void); |
169 | |
7562
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
170 vo_functions_t* init_best_video_out(char** vo_list); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
171 void list_video_out(); |
92188b57a062
video out driver list support (like -vc, example: -vo xmga,xv,x11,)
arpi
parents:
7539
diff
changeset
|
172 |
1 | 173 // NULL terminated array of all drivers |
174 extern vo_functions_t* video_out_drivers[]; | |
175 | |
4811
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
176 extern int vo_flags; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
177 |
5511 | 178 extern int vo_config_count; |
179 | |
4618 | 180 // correct resolution/bpp on screen: (should be autodetected by vo_init()) |
388 | 181 extern int vo_depthonscreen; |
182 extern int vo_screenwidth; | |
183 extern int vo_screenheight; | |
213 | 184 |
388 | 185 // requested resolution/bpp: (-x -y -bpp options) |
4811
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
186 extern int vo_dx; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
187 extern int vo_dy; |
388 | 188 extern int vo_dwidth; |
189 extern int vo_dheight; | |
190 extern int vo_dbpp; | |
191 | |
7539
56ea9db91251
-nograbpointer, based on old patch by Christian Ohm <chr.ohm@gmx.net>
arpi
parents:
7435
diff
changeset
|
192 extern int vo_grabpointer; |
1268 | 193 extern int vo_doublebuffering; |
5431
013458752947
disabling direct rendering by default (too buggy and conflicts with osd/sub)
arpi
parents:
5294
diff
changeset
|
194 extern int vo_directrendering; |
4667 | 195 extern int vo_vsync; |
4981 | 196 extern int vo_fs; |
1268 | 197 extern int vo_fsmode; |
6304
ee65527096c2
pan&scan support with -vo xv by ?? <mplayer@svennevid.net>
arpi
parents:
6110
diff
changeset
|
198 extern float vo_panscan; |
12021
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
11542
diff
changeset
|
199 extern int vo_adapter_num; |
cd33d1e3b709
move refreshrate and adapter_num variables to video_out because they might be usefull for other drivers, too
faust3
parents:
11542
diff
changeset
|
200 extern int vo_refresh_rate; |
1268 | 201 |
6755 | 202 extern int vo_gamma_brightness; |
203 extern int vo_gamma_saturation; | |
204 extern int vo_gamma_contrast; | |
205 extern int vo_gamma_hue; | |
206 extern int vo_gamma_red_intensity; | |
207 extern int vo_gamma_green_intensity; | |
208 extern int vo_gamma_blue_intensity; | |
209 | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5511
diff
changeset
|
210 extern int vo_mouse_timer_const; |
10785 | 211 extern int vo_nomouse_input; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5511
diff
changeset
|
212 |
2707 | 213 extern int vo_pts; |
3201 | 214 extern float vo_fps; |
2707 | 215 |
1184 | 216 extern char *vo_subdevice; |
217 | |
10988 | 218 extern int vo_colorkey; |
219 | |
7069 | 220 #if defined(HAVE_FBDEV)||defined(HAVE_VESA) |
221 | |
222 typedef struct { | |
223 float min; | |
224 float max; | |
225 } range_t; | |
226 | |
227 extern float range_max(range_t *r); | |
228 extern int in_range(range_t *r, float f); | |
229 extern range_t *str2range(char *s); | |
230 extern char *monitor_hfreq_str; | |
231 extern char *monitor_vfreq_str; | |
232 extern char *monitor_dotclock_str; | |
233 | |
234 #endif | |
235 | |
4933 | 236 #endif |