]> git.sesse.net Git - vlc/blob - src/video_output/vout_wrapper.c
Calls directly the vout wrapper iof using function pointers.
[vlc] / src / video_output / vout_wrapper.c
1 /*****************************************************************************
2  * vout_display.c: "vout display" -> "video output" wrapper
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_vout_display.h>
34 #include <vlc_vout_wrapper.h>
35 #include <vlc_vout.h>
36 #include <assert.h>
37 #include "vout_internal.h"
38 #include "display.h"
39
40 /*****************************************************************************
41  *
42  *****************************************************************************/
43 struct vout_sys_t {
44     char           *title;
45     vout_display_t *vd;
46     bool           use_dr;
47 };
48
49 struct picture_sys_t {
50     picture_t *direct;
51 };
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 static void VoutGetDisplayCfg(vout_thread_t *,
57                               vout_display_cfg_t *, const char *title);
58 #ifdef WIN32
59 static int  Forward(vlc_object_t *, char const *,
60                     vlc_value_t, vlc_value_t, void *);
61 #endif
62
63 /*****************************************************************************
64  *
65  *****************************************************************************/
66 int vout_OpenWrapper(vout_thread_t *vout, const char *name)
67 {
68     vout_sys_t *sys;
69
70     msg_Dbg(vout, "Opening vout display wrapper");
71
72     /* */
73     sys = malloc(sizeof(*sys));
74     if (!sys)
75         return VLC_ENOMEM;
76
77     sys->title = var_CreateGetNonEmptyString(vout, "video-title");
78
79     /* */
80     video_format_t source   = vout->fmt_render;
81     source.i_visible_width  = source.i_width;
82     source.i_visible_height = source.i_height;
83     source.i_x_offset       = 0;
84     source.i_y_offset       = 0;
85
86     vout_display_state_t state;
87     VoutGetDisplayCfg(vout, &state.cfg, sys->title);
88     state.is_on_top = var_CreateGetBool(vout, "video-on-top");
89     state.sar.num = 0;
90     state.sar.den = 0;
91
92     const mtime_t double_click_timeout = 300000;
93     const mtime_t hide_timeout = var_CreateGetInteger(vout, "mouse-hide-timeout") * 1000;
94
95     sys->vd = vout_NewDisplay(vout, &source, &state, name ? name : "$vout",
96                               double_click_timeout, hide_timeout);
97     /* If we need to video filter and it fails, then try a splitter
98      * XXX it is a hack for now FIXME */
99     if (name && !sys->vd)
100         sys->vd = vout_NewSplitter(vout, &source, &state, "$vout", name,
101                                    double_click_timeout, hide_timeout);
102     if (!sys->vd) {
103         free(sys->title);
104         free(sys);
105         return VLC_EGENERIC;
106     }
107
108     /* */
109 #ifdef WIN32
110     var_Create(vout, "direct3d-desktop", VLC_VAR_BOOL|VLC_VAR_DOINHERIT);
111     var_AddCallback(vout, "direct3d-desktop", Forward, NULL);
112     var_Create(vout, "video-wallpaper", VLC_VAR_BOOL|VLC_VAR_DOINHERIT);
113     var_AddCallback(vout, "video-wallpaper", Forward, NULL);
114 #endif
115
116     /* */
117     vout->p_sys      = sys;
118
119     return VLC_SUCCESS;
120 }
121
122 /*****************************************************************************
123  *
124  *****************************************************************************/
125 void vout_CloseWrapper(vout_thread_t *vout)
126 {
127     vout_sys_t *sys = vout->p_sys;
128
129 #ifdef WIN32
130     var_DelCallback(vout, "direct3d-desktop", Forward, NULL);
131     var_DelCallback(vout, "video-wallpaper", Forward, NULL);
132 #endif
133     vout_DeleteDisplay(sys->vd, NULL);
134     free(sys->title);
135     free(sys );
136 }
137
138 /*****************************************************************************
139  *
140  *****************************************************************************/
141 int vout_InitWrapper(vout_thread_t *vout)
142 {
143     vout_sys_t *sys = vout->p_sys;
144     vout_display_t *vd = sys->vd;
145
146     /* */
147     video_format_t source = vd->source;
148
149     vout->output.i_chroma = source.i_chroma;
150     vout->output.i_width  = source.i_width;
151     vout->output.i_height = source.i_height;
152     vout->output.i_aspect = (int64_t)source.i_sar_num * source.i_width * VOUT_ASPECT_FACTOR / source.i_sar_den / source.i_height;
153     vout->output.i_rmask  = source.i_rmask;
154     vout->output.i_gmask  = source.i_gmask;
155     vout->output.i_bmask  = source.i_bmask;
156     vout->output.pf_setpalette = NULL; /* FIXME What to do ? Seems unused anyway */
157
158     /* also set fmt_out (completly broken API) */
159     vout->fmt_out.i_chroma         = vout->output.i_chroma;
160     vout->fmt_out.i_width          =
161     vout->fmt_out.i_visible_width  = vout->output.i_width;
162     vout->fmt_out.i_height         =
163     vout->fmt_out.i_visible_height = vout->output.i_height;
164     vout->fmt_out.i_sar_num        = vout->output.i_aspect * vout->output.i_height;
165     vout->fmt_out.i_sar_den        = VOUT_ASPECT_FACTOR    * vout->output.i_width;
166     vout->fmt_out.i_x_offset       = 0;
167     vout->fmt_out.i_y_offset       = 0;
168
169     if (vout->fmt_in.i_visible_width  != source.i_visible_width ||
170         vout->fmt_in.i_visible_height != source.i_visible_height ||
171         vout->fmt_in.i_x_offset       != source.i_x_offset ||
172         vout->fmt_in.i_y_offset       != source.i_y_offset )
173         vout->i_changes |= VOUT_CROP_CHANGE;
174
175     if (vout->b_on_top)
176         vout_SetWindowState(vd, VOUT_WINDOW_STATE_ABOVE);
177
178     /* XXX For non dr case, the current vout implementation force us to
179      * create at most 1 direct picture (otherwise the buffers will be kept
180      * referenced even through the Init/End.
181      */
182     sys->use_dr = !vout_IsDisplayFiltered(vd);
183     const bool allow_dr = !vd->info.has_pictures_invalid && sys->use_dr;
184     const int picture_max = allow_dr ? VOUT_MAX_PICTURES : 1;
185     for (vout->output.i_pictures = 0;
186             vout->output.i_pictures < picture_max;
187                 vout->output.i_pictures++) {
188         /* Find an empty picture slot */
189         picture_t *picture = NULL;
190         for (int index = 0; index < VOUT_MAX_PICTURES; index++) {
191             if (vout->p_picture[index].i_status == FREE_PICTURE) {
192                 picture = &vout->p_picture[index];
193                 break;
194             }
195         }
196         if (!picture)
197             break;
198         memset(picture, 0, sizeof(*picture));
199
200         picture->p_sys = malloc(sizeof(*picture->p_sys));
201
202         if (sys->use_dr) {
203             picture_pool_t *pool = vout_display_Pool(vd, picture_max);
204             if (!pool)
205                 break;
206             picture_t *direct = picture_pool_Get(pool);
207             if (!direct)
208                 break;
209             picture->format = direct->format;
210             picture->i_planes = direct->i_planes;
211             for (int i = 0; i < direct->i_planes; i++)
212                 picture->p[i] = direct->p[i];
213             picture->b_slow = vd->info.is_slow;
214
215             picture->p_sys->direct = direct;
216         } else {
217             vout_AllocatePicture(VLC_OBJECT(vd), picture,
218                                  vd->source.i_chroma,
219                                  vd->source.i_width, vd->source.i_height,
220                                  vd->source.i_sar_num, vd->source.i_sar_den);
221             if (!picture->i_planes)
222                 break;
223             picture->p_sys->direct = NULL;
224         }
225         picture->i_status = DESTROYED_PICTURE;
226         picture->i_type    = DIRECT_PICTURE;
227
228         vout->output.pp_picture[vout->output.i_pictures] = picture;
229     }
230     return VLC_SUCCESS;
231 }
232
233 /*****************************************************************************
234  *
235  *****************************************************************************/
236 void vout_EndWrapper(vout_thread_t *vout)
237 {
238     vout_sys_t *sys = vout->p_sys;
239
240     for (int i = 0; i < VOUT_MAX_PICTURES; i++) {
241         picture_t *picture = &vout->p_picture[i];
242
243         if (picture->i_type != DIRECT_PICTURE)
244             continue;
245
246         if (picture->p_sys->direct)
247             picture_Release(picture->p_sys->direct);
248         if (!sys->use_dr)
249             free(picture->p_data_orig);
250         free(picture->p_sys);
251
252         picture->i_status = FREE_PICTURE;
253     }
254     if (sys->use_dr && vout_AreDisplayPicturesInvalid(sys->vd))
255         vout_ManageDisplay(sys->vd, true);
256 }
257
258 /*****************************************************************************
259  *
260  *****************************************************************************/
261 int vout_ManageWrapper(vout_thread_t *vout)
262 {
263     vout_sys_t *sys = vout->p_sys;
264     vout_display_t *vd = sys->vd;
265
266     while (vout->i_changes & (VOUT_FULLSCREEN_CHANGE |
267                               VOUT_ASPECT_CHANGE |
268                               VOUT_ZOOM_CHANGE |
269                               VOUT_SCALE_CHANGE |
270                               VOUT_ON_TOP_CHANGE |
271                               VOUT_CROP_CHANGE)) {
272         /* */
273         if (vout->i_changes & VOUT_FULLSCREEN_CHANGE) {
274             vout->b_fullscreen = !vout->b_fullscreen;
275
276             var_SetBool(vout, "fullscreen", vout->b_fullscreen);
277             vout_SetDisplayFullscreen(vd, vout->b_fullscreen);
278             vout->i_changes &= ~VOUT_FULLSCREEN_CHANGE;
279         }
280         if (vout->i_changes & VOUT_ASPECT_CHANGE) {
281             vout->output.i_aspect   = (int64_t)vout->fmt_in.i_sar_num * vout->fmt_in.i_width * VOUT_ASPECT_FACTOR /
282                                       vout->fmt_in.i_sar_den / vout->fmt_in.i_height;
283             vout->fmt_out.i_sar_num = vout->fmt_in.i_sar_num;
284             vout->fmt_out.i_sar_den = vout->fmt_in.i_sar_den;
285
286             vout_SetDisplayAspect(vd, vout->fmt_in.i_sar_num, vout->fmt_in.i_sar_den);
287
288             vout->i_changes &= ~VOUT_ASPECT_CHANGE;
289         }
290         if (vout->i_changes & VOUT_ZOOM_CHANGE) {
291             const float zoom = var_GetFloat(vout, "scale");
292
293             unsigned den = ZOOM_FP_FACTOR;
294             unsigned num = den * zoom;
295             if (num < (ZOOM_FP_FACTOR+9) / 10)
296                 num = (ZOOM_FP_FACTOR+9) / 10;
297             else if (num > ZOOM_FP_FACTOR * 10)
298                 num = ZOOM_FP_FACTOR * 10;
299
300             vout_SetDisplayZoom(vd, num, den);
301
302             vout->i_changes &= ~VOUT_ZOOM_CHANGE;
303         }
304         if (vout->i_changes & VOUT_SCALE_CHANGE) {
305             const bool is_display_filled = var_GetBool(vout, "autoscale");
306
307             vout_SetDisplayFilled(vd, is_display_filled);
308
309             vout->i_changes &= ~VOUT_SCALE_CHANGE;
310         }
311         if (vout->i_changes & VOUT_ON_TOP_CHANGE) {
312             vout_SetWindowState(vd, vout->b_on_top
313                 ? VOUT_WINDOW_STATE_ABOVE
314                 : VOUT_WINDOW_STATE_NORMAL);
315
316             vout->i_changes &= ~VOUT_ON_TOP_CHANGE;
317         }
318         if (vout->i_changes & VOUT_CROP_CHANGE) {
319             const video_format_t crop = vout->fmt_in;
320             const video_format_t org = vout->fmt_render;
321             /* FIXME because of rounding errors, the reconstructed ratio is wrong */
322             unsigned num = 0;
323             unsigned den = 0;
324             if (crop.i_x_offset == org.i_x_offset &&
325                 crop.i_visible_width == org.i_visible_width &&
326                 crop.i_y_offset == org.i_y_offset + (org.i_visible_height - crop.i_visible_height)/2) {
327                 vlc_ureduce(&num, &den,
328                             crop.i_visible_width * crop.i_sar_num,
329                             crop.i_visible_height * crop.i_sar_den, 0);
330             } else if (crop.i_y_offset == org.i_y_offset &&
331                        crop.i_visible_height == org.i_visible_height &&
332                        crop.i_x_offset == org.i_x_offset + (org.i_visible_width - crop.i_visible_width)/2) {
333                 vlc_ureduce(&num, &den,
334                             crop.i_visible_width * crop.i_sar_num,
335                             crop.i_visible_height * crop.i_sar_den, 0);
336             }
337             vout_SetDisplayCrop(vd, num, den,
338                                 crop.i_x_offset, crop.i_y_offset,
339                                 crop.i_visible_width, crop.i_visible_height);
340             vout->i_changes &= ~VOUT_CROP_CHANGE;
341         }
342
343     }
344
345     if (sys->use_dr && vout_AreDisplayPicturesInvalid(vd)) {
346         vout->i_changes |= VOUT_PICTURE_BUFFERS_CHANGE;
347     }
348     vout_ManageDisplay(vd, !sys->use_dr);
349     return VLC_SUCCESS;
350 }
351
352 /*****************************************************************************
353  * Render
354  *****************************************************************************/
355 void vout_RenderWrapper(vout_thread_t *vout, picture_t *picture)
356 {
357     vout_sys_t *sys = vout->p_sys;
358     vout_display_t *vd = sys->vd;
359
360     assert(sys->use_dr || !picture->p_sys->direct);
361     assert(vout_IsDisplayFiltered(vd) == !sys->use_dr);
362
363     if (sys->use_dr) {
364         assert(picture->p_sys->direct);
365         vout_display_Prepare(vd, picture->p_sys->direct);
366     } else {
367         picture_t *direct = picture->p_sys->direct = vout_FilterDisplay(vd, picture);
368         if (direct) {
369             vout_display_Prepare(vd, direct);
370         }
371     }
372 }
373
374 /*****************************************************************************
375  *
376  *****************************************************************************/
377 void vout_DisplayWrapper(vout_thread_t *vout, picture_t *picture)
378 {
379     vout_sys_t *sys = vout->p_sys;
380     vout_display_t *vd = sys->vd;
381
382     picture_t *direct = picture->p_sys->direct;
383     if (!direct)
384         return;
385
386     /* XXX This is a hack that will work with current vout_display_t modules */
387     if (sys->use_dr)
388         picture_Hold(direct);
389
390      vout_display_Display(vd, direct);
391
392      if (sys->use_dr) {
393          for (int i = 0; i < picture->i_planes; i++) {
394              picture->p[i].p_pixels = direct->p[i].p_pixels;
395              picture->p[i].i_pitch  = direct->p[i].i_pitch;
396              picture->p[i].i_lines  = direct->p[i].i_lines;
397          }
398      } else {
399          picture->p_sys->direct = NULL;
400      }
401 }
402
403 static void VoutGetDisplayCfg(vout_thread_t *vout, vout_display_cfg_t *cfg, const char *title)
404 {
405     /* Load configuration */
406     cfg->is_fullscreen = var_CreateGetBool(vout, "fullscreen");
407     cfg->display.title = title;
408     const int display_width = var_CreateGetInteger(vout, "width");
409     const int display_height = var_CreateGetInteger(vout, "height");
410     cfg->display.width   = display_width > 0  ? display_width  : 0;
411     cfg->display.height  = display_height > 0 ? display_height : 0;
412     cfg->is_display_filled  = var_CreateGetBool(vout, "autoscale");
413     cfg->display.sar.num = 1; /* TODO monitor AR */
414     cfg->display.sar.den = 1;
415     unsigned zoom_den = 1000;
416     unsigned zoom_num = zoom_den * var_CreateGetFloat(vout, "scale");
417     vlc_ureduce(&zoom_num, &zoom_den, zoom_num, zoom_den, 0);
418     cfg->zoom.num = zoom_num;
419     cfg->zoom.den = zoom_den;
420     cfg->align.vertical = VOUT_DISPLAY_ALIGN_CENTER;
421     cfg->align.horizontal = VOUT_DISPLAY_ALIGN_CENTER;
422     const int align_mask = var_CreateGetInteger(vout, "align");
423     if (align_mask & 0x1)
424         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_LEFT;
425     else if (align_mask & 0x2)
426         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_RIGHT;
427     if (align_mask & 0x4)
428         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_TOP;
429     else if (align_mask & 0x8)
430         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_BOTTOM;
431 }
432
433 #ifdef WIN32
434 static int Forward(vlc_object_t *object, char const *var,
435                    vlc_value_t oldval, vlc_value_t newval, void *data)
436 {
437     vout_thread_t *vout = (vout_thread_t*)object;
438
439     VLC_UNUSED(oldval);
440     VLC_UNUSED(data);
441     return var_Set(vout->p_sys->vd, var, newval);
442 }
443 #endif