contrib: soxr: fix build on WIN32
[vlc.git] / include / vlc_vout_display.h
blobac2e1ca4901340e1c20af7a738d80054251aa099
1 /*****************************************************************************
2 * vlc_vout_display.h: vout_display_t definitions
3 *****************************************************************************
4 * Copyright (C) 2009 Laurent Aimar
5 * $Id$
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_VOUT_DISPLAY_H
25 #define VLC_VOUT_DISPLAY_H 1
27 #include <vlc_es.h>
28 #include <vlc_picture.h>
29 #include <vlc_picture_pool.h>
30 #include <vlc_subpicture.h>
31 #include <vlc_actions.h>
32 #include <vlc_mouse.h>
33 #include <vlc_vout.h>
34 #include <vlc_vout_window.h>
35 #include <vlc_viewpoint.h>
37 /**
38 * \defgroup video_display Video output display
39 * Video output display: output buffers and rendering
41 * \ingroup video_output
42 * @{
43 * \file
44 * Video output display modules interface
47 /* XXX
48 * Do NOT use video_format_t::i_aspect but i_sar_num/den everywhere. i_aspect
49 * will be removed as soon as possible.
52 typedef struct vout_display_t vout_display_t;
53 typedef struct vout_display_sys_t vout_display_sys_t;
54 typedef struct vout_display_owner_t vout_display_owner_t;
56 /**
57 * Possible alignments for vout_display.
59 typedef enum
61 VOUT_DISPLAY_ALIGN_CENTER,
62 /* */
63 VOUT_DISPLAY_ALIGN_LEFT,
64 VOUT_DISPLAY_ALIGN_RIGHT,
65 /* */
66 VOUT_DISPLAY_ALIGN_TOP,
67 VOUT_DISPLAY_ALIGN_BOTTOM,
68 } vout_display_align_t;
70 /**
71 * Window management state.
73 enum {
74 VOUT_WINDOW_STATE_NORMAL=0,
75 VOUT_WINDOW_STATE_ABOVE=1,
76 VOUT_WINDOW_STATE_BELOW=2,
77 VOUT_WINDOW_STACK_MASK=3,
80 /**
81 * Initial/Current configuration for a vout_display_t
83 typedef struct {
84 #if defined(_WIN32) || defined(__OS2__)
85 bool is_fullscreen VLC_DEPRECATED; /* Is the display fullscreen */
86 #endif
88 /* Display properties */
89 struct {
90 /* Window title (may be NULL) */
91 const char *title;
93 /* Display size */
94 unsigned width;
95 unsigned height;
97 /* Display SAR */
98 vlc_rational_t sar;
99 } display;
101 /* Alignment of the picture inside the display */
102 struct {
103 int horizontal;
104 int vertical;
105 } align;
107 /* Do we fill up the display with the video */
108 bool is_display_filled;
110 /* Zoom to use
111 * It will be applied to the whole display if b_display_filled is set, otherwise
112 * only on the video source */
113 struct {
114 int num;
115 int den;
116 } zoom;
118 vlc_viewpoint_t viewpoint;
119 } vout_display_cfg_t;
122 * Information from a vout_display_t to configure
123 * the core behaviour.
125 * By default they are all false or NULL.
128 typedef struct {
129 bool is_slow; /* The picture memory has slow read/write */
130 bool has_double_click; /* Is double-click generated */
131 bool needs_hide_mouse; /* Needs VOUT_DISPLAY_HIDE_MOUSE,
132 * needs to call vout_display_SendEventMouseMoved()
133 * or vout_display_SendEventMouseState() */
134 bool has_pictures_invalid; /* Will VOUT_DISPLAY_EVENT_PICTURES_INVALID be used */
135 const vlc_fourcc_t *subpicture_chromas; /* List of supported chromas for subpicture rendering. */
136 } vout_display_info_t;
139 * Control query for vout_display_t
141 enum {
142 /* Hide the mouse. It will be sent when
143 * vout_display_t::info.needs_hide_mouse is true */
144 VOUT_DISPLAY_HIDE_MOUSE VLC_DEPRECATED_ENUM,
146 /* Ask to reset the internal buffers after a VOUT_DISPLAY_EVENT_PICTURES_INVALID
147 * request.
149 VOUT_DISPLAY_RESET_PICTURES,
151 #if defined(_WIN32) || defined(__OS2__)
152 /* Ask the module to acknowledge/refuse the fullscreen state change after
153 * being requested (externally or by VOUT_DISPLAY_EVENT_FULLSCREEN */
154 VOUT_DISPLAY_CHANGE_FULLSCREEN VLC_DEPRECATED_ENUM, /* bool fs */
155 /* Ask the module to acknowledge/refuse the window management state change
156 * after being requested externally or by VOUT_DISPLAY_WINDOW_STATE */
157 VOUT_DISPLAY_CHANGE_WINDOW_STATE VLC_DEPRECATED_ENUM, /* unsigned state */
158 #endif
159 /* Ask the module to acknowledge/refuse the display size change requested
160 * (externally or by VOUT_DISPLAY_EVENT_DISPLAY_SIZE) */
161 VOUT_DISPLAY_CHANGE_DISPLAY_SIZE, /* const vout_display_cfg_t *p_cfg */
163 /* Ask the module to acknowledge/refuse fill display state change after
164 * being requested externally */
165 VOUT_DISPLAY_CHANGE_DISPLAY_FILLED, /* const vout_display_cfg_t *p_cfg */
167 /* Ask the module to acknowledge/refuse zoom change after being requested
168 * externally */
169 VOUT_DISPLAY_CHANGE_ZOOM, /* const vout_display_cfg_t *p_cfg */
171 /* Ask the module to acknowledge/refuse source aspect ratio after being
172 * requested externally */
173 VOUT_DISPLAY_CHANGE_SOURCE_ASPECT,
175 /* Ask the module to acknowledge/refuse source crop change after being
176 * requested externally.
177 * The cropping requested is stored by video_format_t::i_x/y_offset and
178 * video_format_t::i_visible_width/height */
179 VOUT_DISPLAY_CHANGE_SOURCE_CROP,
181 /* Ask the module to acknowledge/refuse VR/360° viewing direction after
182 * being requested externally */
183 VOUT_DISPLAY_CHANGE_VIEWPOINT, /* const vout_display_cfg_t *p_cfg */
187 * Event from vout_display_t
189 * Events modifiying the state may be sent multiple times.
190 * Only the transition will be retained and acted upon.
192 enum {
193 /* TODO:
194 * ZOOM ? DISPLAY_FILLED ? ON_TOP ?
196 /* */
197 VOUT_DISPLAY_EVENT_PICTURES_INVALID, /* The buffer are now invalid and need to be changed */
199 #if defined(_WIN32) || defined(__OS2__)
200 VOUT_DISPLAY_EVENT_FULLSCREEN,
201 VOUT_DISPLAY_EVENT_WINDOW_STATE,
202 #endif
204 VOUT_DISPLAY_EVENT_DISPLAY_SIZE, /* The display size need to change : int i_width, int i_height */
206 /* */
207 VOUT_DISPLAY_EVENT_CLOSE,
208 VOUT_DISPLAY_EVENT_KEY,
210 /* Full mouse state.
211 * You can use it OR use the other mouse events. The core will do
212 * the conversion.
214 VOUT_DISPLAY_EVENT_MOUSE_STATE,
216 /* Mouse event */
217 VOUT_DISPLAY_EVENT_MOUSE_MOVED,
218 VOUT_DISPLAY_EVENT_MOUSE_PRESSED,
219 VOUT_DISPLAY_EVENT_MOUSE_RELEASED,
220 VOUT_DISPLAY_EVENT_MOUSE_DOUBLE_CLICK,
222 /* VR navigation */
223 VOUT_DISPLAY_EVENT_VIEWPOINT_MOVED,
227 * Vout owner structures
229 struct vout_display_owner_t {
230 /* Private place holder for the vout_display_t creator
232 void *sys;
234 /* Event coming from the module
236 * This function is set prior to the module instantiation and must not
237 * be overwritten nor used directly (use the vout_display_SendEvent*
238 * wrapper.
240 * You can send it at any time i.e. from any vout_display_t functions or
241 * from another thread.
242 * Be careful, it does not ensure correct serialization if it is used
243 * from multiple threads.
245 void (*event)(vout_display_t *, int, va_list);
247 /* Window management
249 * These functions are set prior to the module instantiation and must not
250 * be overwritten nor used directly (use the vout_display_*Window
251 * wrapper */
252 vout_window_t *(*window_new)(vout_display_t *, unsigned type);
253 void (*window_del)(vout_display_t *, vout_window_t *);
256 struct vout_display_t {
257 struct vlc_common_members obj;
259 /* Module */
260 module_t *module;
262 /* Initial and current configuration.
263 * You cannot modify it directly, you must use the appropriate events.
265 * It reflects the current values, i.e. after the event has been accepted
266 * and applied/configured if needed.
268 const vout_display_cfg_t *cfg;
270 /* video source format.
272 * Cropping is not requested while in the open function.
273 * You cannot change it.
275 video_format_t source;
277 /* picture_t format.
279 * You can only change it inside the module open function to
280 * match what you want, and when a VOUT_DISPLAY_RESET_PICTURES control
281 * request is made and succeeds.
283 * By default, it is equal to ::source except for the aspect ratio
284 * which is undefined(0) and is ignored.
286 video_format_t fmt;
288 /* Information
290 * You can only set them in the open function.
292 vout_display_info_t info;
294 /* Return a pointer over the current picture_pool_t* (mandatory).
296 * For performance reasons, it is best to provide at least count
297 * pictures but it is not mandatory.
298 * You can return NULL when you cannot/do not want to allocate
299 * pictures.
300 * The vout display module keeps the ownership of the pool and can
301 * destroy it only when closing or on invalid pictures control.
303 picture_pool_t *(*pool)(vout_display_t *, unsigned count);
305 /* Prepare a picture and an optional subpicture for display (optional).
307 * It is called before the next pf_display call to provide as much
308 * time as possible to prepare the given picture and the subpicture
309 * for display.
310 * You are guaranted that pf_display will always be called and using
311 * the exact same picture_t and subpicture_t.
312 * You cannot change the pixel content of the picture_t or of the
313 * subpicture_t.
315 void (*prepare)(vout_display_t *, picture_t *, subpicture_t *);
317 /* Display a picture and an optional subpicture (mandatory).
319 * The picture and the optional subpicture must be displayed as soon as
320 * possible.
321 * You cannot change the pixel content of the picture_t or of the
322 * subpicture_t.
324 * This function gives away the ownership of the picture and of the
325 * subpicture, so you must release them as soon as possible.
327 void (*display)(vout_display_t *, picture_t *, subpicture_t *);
329 /* Control on the module (mandatory) */
330 int (*control)(vout_display_t *, int, va_list);
332 /* Manage pending event (optional) */
333 void (*manage)(vout_display_t *) VLC_DEPRECATED;
335 /* Private place holder for the vout_display_t module (optional)
337 * A module is free to use it as it wishes.
339 vout_display_sys_t *sys;
341 /* Reserved for the vout_display_t owner.
343 * It must not be overwritten nor used directly by a module.
345 vout_display_owner_t owner;
348 static inline void vout_display_SendEvent(vout_display_t *vd, int query, ...)
350 va_list args;
351 va_start(args, query);
352 vd->owner.event(vd, query, args);
353 va_end(args);
356 static inline void vout_display_SendEventDisplaySize(vout_display_t *vd, int width, int height)
358 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_DISPLAY_SIZE, width, height);
360 static inline void vout_display_SendEventPicturesInvalid(vout_display_t *vd)
362 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_PICTURES_INVALID);
364 static inline void vout_display_SendEventClose(vout_display_t *vd)
366 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_CLOSE);
368 static inline void vout_display_SendEventKey(vout_display_t *vd, int key)
370 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_KEY, key);
372 #if defined(_WIN32) || defined(__OS2__)
373 static inline void vout_display_SendEventFullscreen(vout_display_t *vd, bool is_fullscreen,
374 bool is_window_fullscreen)
376 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_FULLSCREEN, is_fullscreen, is_window_fullscreen);
378 static inline void vout_display_SendWindowState(vout_display_t *vd, unsigned state)
380 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_WINDOW_STATE, state);
382 #endif
383 /* The mouse position (State and Moved event) must be expressed against vout_display_t::source unit */
384 static inline void vout_display_SendEventMouseState(vout_display_t *vd, int x, int y, int button_mask)
386 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_STATE, x, y, button_mask);
388 static inline void vout_display_SendEventMouseMoved(vout_display_t *vd, int x, int y)
390 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_MOVED, x, y);
392 static inline void vout_display_SendEventMousePressed(vout_display_t *vd, int button)
394 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_PRESSED, button);
396 static inline void vout_display_SendEventMouseReleased(vout_display_t *vd, int button)
398 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_RELEASED, button);
400 static inline void vout_display_SendEventMouseDoubleClick(vout_display_t *vd)
402 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_MOUSE_DOUBLE_CLICK);
404 static inline void vout_display_SendEventViewpointMoved(vout_display_t *vd,
405 const vlc_viewpoint_t *vp)
407 vout_display_SendEvent(vd, VOUT_DISPLAY_EVENT_VIEWPOINT_MOVED, vp);
411 * Asks for a new window of a given type.
413 static inline vout_window_t *vout_display_NewWindow(vout_display_t *vd, unsigned type)
415 return vd->owner.window_new(vd, type);
418 * Deletes a window created by vout_display_NewWindow if window is non NULL
419 * or any unused windows otherwise.
421 static inline void vout_display_DeleteWindow(vout_display_t *vd,
422 vout_window_t *window)
424 vd->owner.window_del(vd, window);
427 static inline bool vout_display_IsWindowed(vout_display_t *vd)
429 vout_window_t *window = vout_display_NewWindow(vd, VOUT_WINDOW_TYPE_INVALID);
430 if (window != NULL)
431 vout_display_DeleteWindow(vd, window);
432 return window != NULL;
436 * Computes the default display size given the source and
437 * the display configuration.
439 * This asssumes that the picture is already cropped.
441 VLC_API void vout_display_GetDefaultDisplaySize(unsigned *width, unsigned *height, const video_format_t *source, const vout_display_cfg_t *);
445 * Structure used to store the result of a vout_display_PlacePicture.
447 typedef struct {
448 int x;
449 int y;
450 unsigned width;
451 unsigned height;
452 } vout_display_place_t;
455 * Computes how to place a picture inside the display to respect
456 * the given parameters.
457 * This assumes that cropping is done by an external mean.
459 * \param p_place Place inside the window (window pixel unit)
460 * \param p_source Video source format
461 * \param p_cfg Display configuration
462 * \param b_clip If true, prevent the video to go outside the display (break zoom).
464 VLC_API void vout_display_PlacePicture(vout_display_place_t *place, const video_format_t *source, const vout_display_cfg_t *cfg, bool do_clipping);
468 * Helper function that applies the necessary transforms to the mouse position
469 * and then calls vout_display_SendEventMouseMoved.
471 * \param vd vout_display_t.
472 * \param orient_display The orientation of the picture as seen on screen (probably ORIENT_NORMAL).
473 * \param m_x Mouse x position (relative to place, origin is top left).
474 * \param m_y Mouse y position (relative to place, origin is top left).
475 * \param place Place of the picture.
477 VLC_API void vout_display_SendMouseMovedDisplayCoordinates(vout_display_t *vd, video_orientation_t orient_display, int m_x, int m_y,
478 vout_display_place_t *place);
480 /** @} */
481 #endif /* VLC_VOUT_DISPLAY_H */