Mercurial > mplayer.hg
annotate libvo/video_out.h @ 5019:95e573c1203f
VM fixes by Nilmoni Deb.
author | atmos4 |
---|---|
date | Sun, 10 Mar 2002 08:16:07 +0000 |
parents | 70751bbd6404 |
children | 4e64fca268e9 |
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 |
1 | 6 * |
7 */ | |
4933 | 8 |
9 #ifndef __VIDEO_OUT_H | |
10 #define __VIDEO_OUT_H 1 | |
1 | 11 |
12 #include <inttypes.h> | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
13 #include <stdarg.h> |
1 | 14 |
213 | 15 #include "font_load.h" |
408 | 16 #include "img_format.h" |
4352 | 17 #include "../vidix/vidix.h" |
1 | 18 |
31 | 19 #define VO_EVENT_EXPOSE 1 |
20 #define VO_EVENT_RESIZE 2 | |
21 #define VO_EVENT_KEYPRESS 4 | |
22 | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
23 /* takes a pointer to a vo_vaa_s struct */ |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
24 #define VOCTRL_QUERY_VAA 1 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
25 /* takes a pointer to uint32_t fourcc */ |
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 | |
4731 | 31 /* used to switch to fullscreen */ |
32 #define VOCTRL_FULLSCREEN 5 | |
4738 | 33 /* user wants to have screen shot. (currently without args)*/ |
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 | |
5002 | 41 /* decoding ahead: */ |
42 #define VOCTRL_GET_NUM_FRAMES 10 | |
43 #define VOCTRL_GET_FRAME_NUM 11 | |
44 #define VOCTRL_SET_FRAME_NUM 12 | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
45 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
46 #define VO_TRUE 1 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
47 #define VO_FALSE 0 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
48 #define VO_ERROR -1 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
49 #define VO_NOTAVAIL -2 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
50 #define VO_NOTIMPL -3 |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
51 |
4736 | 52 #define VOFLAG_FULLSCREEN 0x01 |
53 #define VOFLAG_MODESWITCHING 0x02 | |
54 #define VOFLAG_SWSCALE 0x04 | |
55 #define VOFLAG_FLIPPING 0x08 | |
56 | |
1 | 57 typedef struct vo_info_s |
58 { | |
59 /* driver name ("Matrox Millennium G200/G400" */ | |
60 const char *name; | |
61 /* short name (for config strings) ("mga") */ | |
62 const char *short_name; | |
63 /* author ("Aaron Holtzman <aholtzma@ess.engr.uvic.ca>") */ | |
64 const char *author; | |
65 /* any additional comments */ | |
66 const char *comment; | |
67 } vo_info_t; | |
68 | |
4352 | 69 /* Direct access to BES */ |
70 typedef struct bes_da_s | |
71 { | |
72 vidix_rect_t dest; /* This field should be filled by x,y,w,h | |
73 from vidix:src but pitches from | |
74 vidix:dest */ | |
75 int flags; /* Probably will work only when flag == 0 */ | |
76 /* memory model */ | |
4618 | 77 unsigned frame_size; /* destination frame size */ |
78 unsigned num_frames; /* number of available frames */ | |
4352 | 79 unsigned offsets[VID_PLAY_MAXFRAMES]; /* relative offset of each frame from begin of video memory */ |
80 vidix_yuv_t offset; /* relative offsets within frame for yuv planes */ | |
81 void* dga_addr; /* linear address of BES */ | |
82 }bes_da_t; | |
83 | |
84 /* | |
85 Video Accelearted Architecture. | |
86 Every field of this structure can be set to NULL that means that | |
87 features is not supported | |
88 */ | |
89 typedef struct vo_vaa_s | |
90 { | |
91 uint32_t flags; /* currently undefined */ | |
92 /* | |
93 * Query Direct Access to BES | |
94 * info - information to be filled | |
95 * returns: 0 on success errno on error. | |
96 */ | |
97 int (*query_bes_da)(bes_da_t *info); | |
98 int (*get_video_eq)(vidix_video_eq_t *info); | |
99 int (*set_video_eq)(const vidix_video_eq_t *info); | |
100 int (*get_num_fx)(unsigned *info); | |
101 int (*get_oem_fx)(vidix_oem_fx_t *info); | |
102 int (*set_oem_fx)(const vidix_oem_fx_t *info); | |
103 int (*set_deint)(const vidix_deinterlace_t *info); | |
104 }vo_vaa_t; | |
105 | |
4433 | 106 /* Misc info to tuneup vo driver */ |
107 typedef struct vo_tune_info_s | |
108 { | |
109 int pitch[3]; /* Should be 0 if unknown else power of 2 */ | |
110 }vo_tune_info_t; | |
111 | |
1 | 112 typedef struct vo_functions_s |
113 { | |
4352 | 114 /* |
115 * Preinitializes driver (real INITIALIZATION) | |
116 * arg - currently it's vo_subdevice | |
117 * returns: zero on successful initialization, non-zero on error. | |
118 */ | |
119 uint32_t (*preinit)(const char *arg); | |
1 | 120 /* |
4352 | 121 * Initialize (means CONFIGURE) the display driver. |
31 | 122 * params: |
123 * width,height: image source size | |
124 * d_width,d_height: size of the requested window size, just a hint | |
125 * fullscreen: flag, 0=windowd 1=fullscreen, just a hint | |
126 * title: window title, if available | |
127 * format: fourcc of pixel format | |
128 * returns : zero on successful initialization, non-zero on error. | |
1 | 129 */ |
4433 | 130 uint32_t (*config)(uint32_t width, uint32_t height, uint32_t d_width, |
131 uint32_t d_height, uint32_t fullscreen, char *title, | |
132 uint32_t format,const vo_tune_info_t *); | |
1 | 133 |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
134 /* |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
135 * Control interface |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
136 */ |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
137 uint32_t (*control)(uint32_t request, void *data, ...); |
1 | 138 |
139 /* | |
140 * Return driver information. | |
141 * returns : read-only pointer to a vo_info_t structure. | |
142 */ | |
143 const vo_info_t* (*get_info)(void); | |
144 | |
145 /* | |
31 | 146 * Display a new RGB/BGR frame of the video to the screen. |
147 * params: | |
148 * src[0] - pointer to the image | |
1 | 149 */ |
150 uint32_t (*draw_frame)(uint8_t *src[]); | |
151 | |
152 /* | |
31 | 153 * Draw a planar YUV slice to the buffer: |
154 * params: | |
155 * src[3] = source image planes (Y,U,V) | |
156 * stride[3] = source image planes line widths (in bytes) | |
157 * w,h = width*height of area to be copied (in Y pixels) | |
158 * x,y = position at the destination image (in Y pixels) | |
1 | 159 */ |
160 uint32_t (*draw_slice)(uint8_t *src[], int stride[], int w,int h, int x,int y); | |
161 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
162 /* |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
163 * Draws OSD to the screen buffer |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
164 */ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
165 void (*draw_osd)(void); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1326
diff
changeset
|
166 |
1 | 167 /* |
31 | 168 * Blit/Flip buffer to the screen. Must be called after each frame! |
1 | 169 */ |
170 void (*flip_page)(void); | |
171 | |
31 | 172 /* |
173 * This func is called after every frames to handle keyboard and | |
174 * other events. It's called in PAUSE mode too! | |
175 */ | |
176 void (*check_events)(void); | |
177 | |
178 /* | |
179 * Closes driver. Should restore the original state of the system. | |
180 */ | |
1 | 181 void (*uninit)(void); |
182 | |
183 } vo_functions_t; | |
184 | |
1142 | 185 char *vo_format_name(int format); |
1326 | 186 int vo_init(void); |
187 | |
1 | 188 // NULL terminated array of all drivers |
189 extern vo_functions_t* video_out_drivers[]; | |
190 | |
4811
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
191 extern int vo_flags; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
192 |
4618 | 193 // correct resolution/bpp on screen: (should be autodetected by vo_init()) |
388 | 194 extern int vo_depthonscreen; |
195 extern int vo_screenwidth; | |
196 extern int vo_screenheight; | |
213 | 197 |
388 | 198 // 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
|
199 extern int vo_dx; |
38a9cddd9e4d
added vo_dx,vo_dy (used currently only by X based outputs)
alex
parents:
4754
diff
changeset
|
200 extern int vo_dy; |
388 | 201 extern int vo_dwidth; |
202 extern int vo_dheight; | |
203 extern int vo_dbpp; | |
204 | |
4981 | 205 extern int vo_old_x; |
206 extern int vo_old_y; | |
207 extern int vo_old_width; | |
208 extern int vo_old_height; | |
209 | |
1268 | 210 extern int vo_doublebuffering; |
4667 | 211 extern int vo_vsync; |
4981 | 212 extern int vo_fs; |
1268 | 213 extern int vo_fsmode; |
214 | |
2707 | 215 extern int vo_pts; |
3201 | 216 extern float vo_fps; |
2707 | 217 |
1184 | 218 extern char *vo_subdevice; |
219 | |
4933 | 220 #endif |