]> git.sesse.net Git - vlc/blob - include/vlc_vout_display.h
Introduce "vout display" module API to replaced "vout" one.
[vlc] / include / vlc_vout_display.h
1 /*****************************************************************************
2  * vlc_vout_display.h: vout_display_t definitions
3  *****************************************************************************
4  * Copyright (C) 2009 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef VLC_VOUT_DISPLAY_H
25 #define VLC_VOUT_DISPLAY_H 1
26
27 /**
28  * \file
29  * This file defines vout display structures and functions in vlc
30  */
31
32 #include <vlc_es.h>
33 #include <vlc_picture.h>
34 #include <vlc_subpicture.h>
35 #include <vlc_keys.h>
36 #include <vlc_mouse.h>
37 #include <vlc_vout_window.h>
38
39 /* XXX
40  * Do NOT use video_format_t::i_aspect but i_sar_num/den everywhere. i_aspect
41  * will be removed as soon as possible.
42  *
43  */
44 typedef struct vout_display_t vout_display_t;
45 typedef struct vout_display_sys_t vout_display_sys_t;
46 typedef struct vout_display_owner_t vout_display_owner_t;
47 typedef struct vout_display_owner_sys_t vout_display_owner_sys_t;
48
49 /**
50  * It specifies the possible alignment used in vout_display.
51  */
52 typedef enum
53 {
54     VOUT_DISPLAY_ALIGN_CENTER,
55     /* */
56     VOUT_DISPLAY_ALIGN_LEFT,
57     VOUT_DISPLAY_ALIGN_RIGHT,
58     /* */
59     VOUT_DISPLAY_ALIGN_TOP,
60     VOUT_DISPLAY_ALIGN_BOTTOM,
61 } vout_display_align_t;
62
63 /**
64  * Initial/Current configuration for a vout_display_t
65  */
66 typedef struct {
67     bool is_fullscreen;  /* Is the display fullscreen */
68
69     /* Display properties */
70     struct {
71         /* Window title (may be NULL) */
72         const char *title;
73
74         /* Display size */
75         int  width;
76         int  height;
77
78         /* Display SAR */
79         struct {
80             int num;
81             int den;
82         } sar;
83     } display;
84
85     /* Alignment of the picture inside the display */
86     struct {
87         int horizontal;
88         int vertical;
89     } align;
90
91     /* Do we fill up the display with the video */
92     bool is_display_filled;
93
94     /* Zoom to use
95      * It will be applied to the whole display if b_display_filled is set, otherwise
96      * only on the video source */
97     struct {
98         int num;
99         int den;
100     } zoom;
101
102 } vout_display_cfg_t;
103
104 /**
105  * Informations from a vout_display_t to configure
106  * the core behaviour.
107  *
108  * By default they are all false.
109  *
110  */
111 typedef struct {
112     bool is_slow;            /* The picture memory has slow read/write */
113     bool has_double_click;    /* Is double-click generated */
114     bool has_hide_mouse;      /* Is mouse automatically hidden */
115     bool has_pictures_invalid;/* Will VOUT_DISPLAY_EVENT_PICTURES_INVALID be used */
116 } vout_display_info_t;
117
118 /**
119  * Control query for vout_display_t
120  */
121 enum {
122     /* Hide the mouse. It will be send when
123      * vout_display_t::info.b_hide_mouse is false */
124     VOUT_DISPLAY_HIDE_MOUSE,
125
126     /* Ask to reset the internal buffers after a VOUT_DISPLAY_EVENT_PICTURES_INVALID
127      * request.
128      */
129     VOUT_DISPLAY_RESET_PICTURES,
130
131     /* Ask the module to acknowledge/refuse the fullscreen state change after
132      * being requested (externaly or by VOUT_DISPLAY_EVENT_FULLSCREEN */
133     VOUT_DISPLAY_CHANGE_FULLSCREEN,     /* const vout_display_cfg_t *p_cfg */
134
135     /* Ask the module to acknowledge/refuse the on top state change after
136      * being requested externaly */
137     VOUT_DISPLAY_CHANGE_ON_TOP,         /* int b_on_top */
138
139     /* Ask the module to acknowledge/refuse the display size change requested
140      * (externaly or by VOUT_DISPLAY_EVENT_DISPLAY_SIZE) */
141     VOUT_DISPLAY_CHANGE_DISPLAY_SIZE,   /* const vout_display_cfg_t *p_cfg */
142
143     /* Ask the module to acknowledge/refuse fill display state change after
144      * being requested externaly */
145     VOUT_DISPLAY_CHANGE_DISPLAY_FILLED, /* const vout_display_cfg_t *p_cfg */
146
147     /* Ask the module to acknowledge/refuse zoom change after being requested
148      * externaly */
149     VOUT_DISPLAY_CHANGE_ZOOM, /* const vout_display_cfg_t *p_cfg */
150
151     /* Ask the module to acknowledge/refuse source aspect ratio after being
152      * requested externaly */
153     VOUT_DISPLAY_CHANGE_SOURCE_ASPECT, /* const video_format_t *p_source */
154
155     /* Ask the module to acknowledge/refuse source crop change after being
156      * requested externaly.
157      * The cropping requested is stored by video_format_t::i_x/y_offset and
158      * video_format_t::i_visible_width/height */
159     VOUT_DISPLAY_CHANGE_SOURCE_CROP,   /* const video_format_t *p_source */
160 };
161
162 /**
163  * Event from vout_display_t
164  *
165  * For event that modifiy the state, you may send them multiple of times,
166  * only the transition will be kept and act upon.
167  */
168 enum {
169     /* TODO:
170      * ZOOM ? DISPLAY_FILLED ? ON_TOP ?
171      */
172     /* */
173     VOUT_DISPLAY_EVENT_PICTURES_INVALID,    /* The buffer are now invalid and need to be changed */
174
175     VOUT_DISPLAY_EVENT_FULLSCREEN,
176
177     VOUT_DISPLAY_EVENT_DISPLAY_SIZE,        /* The display size need to change : int i_width, int i_height */
178
179     /* */
180     VOUT_DISPLAY_EVENT_CLOSE,
181     VOUT_DISPLAY_EVENT_KEY,
182
183     /* Full mouse state.
184      * You can use it OR use the other mouse events. The core will do
185      * the conversion.
186      */
187     VOUT_DISPLAY_EVENT_MOUSE_STATE,
188
189     /* Mouse event */
190     VOUT_DISPLAY_EVENT_MOUSE_MOVED,
191     VOUT_DISPLAY_EVENT_MOUSE_PRESSED,
192     VOUT_DISPLAY_EVENT_MOUSE_RELEASED,
193     VOUT_DISPLAY_EVENT_MOUSE_DOUBLE_CLICK,
194 };
195
196 /**
197  * Vout owner structures
198  */
199 struct vout_display_owner_t {
200     /* Private place holder for the vout_display_t creator
201      */
202     vout_display_owner_sys_t *sys;
203
204     /* Event comming from the module
205      *
206      * This function is set prior to the module instantiation and must not
207      * be overwritten nor used directly (use the vout_display_SendEvent*
208      * wrapper.
209      *
210      * You can send it at any time ie from any vout_display_t functions
211      * (TODO add support from a private thread).
212      */
213     void            (*event)(vout_display_t *, int, va_list);
214
215     /* Window management
216      *
217      * These functions are set prior to the module instantiation and must not
218      * be overwritten nor used directly (use the vout_display_*Window
219      * wrapper */
220     vout_window_t *(*window_new)(vout_display_t *, const vout_window_cfg_t *);
221     void           (*window_del)(vout_display_t *, vout_window_t *);
222 };
223
224 struct vout_display_t {
225     VLC_COMMON_MEMBERS
226
227     /* Module */
228     module_t *module;
229
230     /* Initial and current configuration.
231      * You cannot modify it directly, you must use the appropriate event.
232      *
233      * It reflects the current in use value ie after the event has been accepted
234      * and applied/configured if needed.
235      */
236     const vout_display_cfg_t *cfg;
237
238     /* video source format.
239      *
240      * You are guaranted that in the open function, no cropping is asked.
241      * You cannot change it.
242      */
243     video_format_t source;
244
245     /* picture_t format.
246      *
247      * You can only change it inside the module open function to
248      * match what you want and when a VOUT_DISPLAY_RESET_PICTURES
249      * is called on your module and was successfull.
250      *
251      * By default, it is equal to ::source except for the aspect ratio
252      * which is undefined(0) and is ignored.
253      */
254     video_format_t fmt;
255
256     /* Informations
257      *
258      * You can only set then in the open function.
259      */
260     vout_display_info_t info;
261
262     /* Return a new picture_t (mandatory).
263      *
264      * You can return NULL when you cannot/do not want to allocate
265      * more pictures.
266      * If you want to create a pool of reusable pictures, you can
267      * use a picture_pool_t.
268      */
269     picture_t *(*get)(vout_display_t *);
270
271     /* Prepare a picture for display (optional).
272      *
273      * It is called before the next pf_display call to provide as much
274      * time as possible to prepare the given picture for display.
275      * You are guaranted that pf_display will always be called and using
276      * the exact same picture_t.
277      * You cannot change the pixel content of the picture_t.
278      */
279     void       (*prepare)(vout_display_t *, picture_t *);
280
281     /* Display a picture (mandatory).
282      *
283      * The picture must be displayed as soon as possible.
284      * You cannot change the pixel content of the picture_t.
285      *
286      * This function gives away the ownership of the picture, so you must
287      * release it as soon as possible.
288      */
289     void       (*display)(vout_display_t *, picture_t *);
290
291     /* Control on the module (mandatory) */
292     int        (*control)(vout_display_t *, int, va_list);
293
294     /* Manage pending event (mandatory for now) */
295     void       (*manage)(vout_display_t *);
296
297     /* Private place holder for the vout_display_t module (optional)
298      *
299      * A module is free to used it as it wishes.
300      */
301     vout_display_sys_t *sys;
302
303     /* Reserved for the vout_display_t owner.
304      *
305      * It must not be overwritten nor used directly by a module.
306      */
307     vout_display_owner_t owner;
308 };
309
310 static inline void vout_display_SendEvent(vout_display_t *vd, int query, ...)
311 {
312     va_list args;
313     va_start(args, query);
314     vd->owner.event(vd, query, args);
315     va_end(args);
316 }
317
318 static inline void vout_display_SendEventDisplaySize(vout_display_t *vd, int width, int height)
319 {
320     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_DISPLAY_SIZE, width, height);
321 }
322 static inline void vout_display_SendEventPicturesInvalid(vout_display_t *vd)
323 {
324     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_PICTURES_INVALID);
325 }
326 static inline void vout_display_SendEventClose(vout_display_t *vd)
327 {
328     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_CLOSE);
329 }
330 static inline void vout_display_SendEventKey(vout_display_t *vd, int key)
331 {
332     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_KEY, key);
333 }
334 static inline void vout_display_SendEventFullscreen(vout_display_t *vd, bool is_fullscreen)
335 {
336     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_FULLSCREEN, is_fullscreen);
337 }
338 /* The mouse position (State and Moved event) must be expressed against vout_display_t::source unit */
339 static inline void vout_display_SendEventMouseState(vout_display_t *vd, int x, int y, int button_mask)
340 {
341     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_STATE, x, y, button_mask);
342 }
343 static inline void vout_display_SendEventMouseMoved(vout_display_t *vd, int x, int y)
344 {
345     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_MOVED, x, y);
346 }
347 static inline void vout_display_SendEventMousePressed(vout_display_t *vd, int button)
348 {
349     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_PRESSED, button);
350 }
351 static inline void vout_display_SendEventMouseReleased(vout_display_t *vd, int button)
352 {
353     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_RELEASED, button);
354 }
355 static inline void vout_display_SendEventMouseDoubleClick(vout_display_t *vd)
356 {
357     vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_DOUBLE_CLICK);
358 }
359
360 /**
361  * Ask for a new window with the given configuration as hint.
362  *
363  * b_standalone/i_x/i_y may be overwritten by the core
364  */
365 static inline vout_window_t *vout_display_NewWindow(vout_display_t *vd, const vout_window_cfg_t *cfg)
366 {
367     return vd->owner.window_new(vd, cfg);
368 }
369 static inline void vout_display_DeleteWindow(vout_display_t *vd,
370                                              vout_window_t *window)
371 {
372     vd->owner.window_del(vd, window);
373 }
374
375 /**
376  * It computes the default display size given the source and
377  * the display configuration.
378  *
379  * It supposes that the picture will already be cropped.
380  */
381 VLC_EXPORT( void, vout_display_GetDefaultDisplaySize, (int *width, int *height, const video_format_t *source, const vout_display_cfg_t *) );
382
383
384 /**
385  * Structure used to store the result of a vout_display_PlacePicture.
386  */
387 typedef struct {
388     int x;
389     int y;
390     int width;
391     int height;
392 } vout_display_place_t;
393
394 /**
395  * It computes how to place a picture inside the display to respect
396  * the given parameters.
397  * It supposes that the cropping is done by an external mean.
398  *
399  * \param p_place Place inside the window (window pixel unit)
400  * \param p_source Video source format
401  * \param p_cfg Display configuration
402  * \param b_clip If true, prevent the video to go outside the display (break zoom).
403  */
404 VLC_EXPORT( void, vout_display_PlacePicture, (vout_display_place_t *place, const video_format_t *source, const vout_display_cfg_t *cfg, bool do_clipping) );
405
406 #endif /* VLC_VOUT_DISPLAY_H */
407