]> git.sesse.net Git - vlc/blob - src/video_output/vout_intf.c
d267a4a5e58e53653f5b8ca3573342e9e7d5c122
[vlc] / src / video_output / vout_intf.c
1 /*****************************************************************************
2  * vout_intf.c : video output interface
3  *****************************************************************************
4  * Copyright (C) 2000-2007 the VideoLAN team
5  *
6  * Authors: Gildas Bazin <gbazin@videolan.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32
33 #include <stdio.h>
34 #include <stdlib.h>                                                /* free() */
35 #include <sys/types.h>                                          /* opendir() */
36 #include <sys/stat.h>
37 #include <dirent.h>                                             /* opendir() */
38 #include <assert.h>
39 #include <time.h>                                           /* strftime */
40
41 #include <vlc_interface.h>
42 #include <vlc_block.h>
43 #include <vlc_playlist.h>
44
45 #include <vlc_vout.h>
46 #include <vlc_image.h>
47 #include <vlc_osd.h>
48 #include <vlc_charset.h>
49
50 #include <vlc_strings.h>
51 #include <vlc_charset.h>
52 #include "../libvlc.h"
53 #include "vout_internal.h"
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static void InitWindowSize( vout_thread_t *, unsigned *, unsigned * );
59
60 /* Object variables callbacks */
61 static int ZoomCallback( vlc_object_t *, char const *,
62                          vlc_value_t, vlc_value_t, void * );
63 static int CropCallback( vlc_object_t *, char const *,
64                          vlc_value_t, vlc_value_t, void * );
65 static int AspectCallback( vlc_object_t *, char const *,
66                            vlc_value_t, vlc_value_t, void * );
67 static int ScalingCallback( vlc_object_t *, char const *,
68                             vlc_value_t, vlc_value_t, void * );
69 static int OnTopCallback( vlc_object_t *, char const *,
70                           vlc_value_t, vlc_value_t, void * );
71 static int FullscreenCallback( vlc_object_t *, char const *,
72                                vlc_value_t, vlc_value_t, void * );
73 static int SnapshotCallback( vlc_object_t *, char const *,
74                              vlc_value_t, vlc_value_t, void * );
75
76 static int TitleShowCallback( vlc_object_t *, char const *,
77                               vlc_value_t, vlc_value_t, void * );
78 static int TitleTimeoutCallback( vlc_object_t *, char const *,
79                                  vlc_value_t, vlc_value_t, void * );
80 static int TitlePositionCallback( vlc_object_t *, char const *,
81                                   vlc_value_t, vlc_value_t, void * );
82
83 /*****************************************************************************
84  * vout_IntfInit: called during the vout creation to initialise misc things.
85  *****************************************************************************/
86 static const struct
87 {
88     double f_value;
89     const char *psz_label;
90 } p_zoom_values[] = {
91     { 0.25, N_("1:4 Quarter") },
92     { 0.5, N_("1:2 Half") },
93     { 1, N_("1:1 Original") },
94     { 2, N_("2:1 Double") },
95     { 0, NULL } };
96
97 static const struct
98 {
99     const char *psz_value;
100     const char *psz_label;
101 } p_crop_values[] = {
102     { "", N_("Default") },
103     { "16:10", "16:10" },
104     { "16:9", "16:9" },
105     { "185:100", "1.85:1" },
106     { "221:100", "2.21:1" },
107     { "235:100", "2.35:1" },
108     { "239:100", "2.39:1" },
109     { "5:3", "5:3" },
110     { "4:3", "4:3" },
111     { "5:4", "5:4" },
112     { "1:1", "1:1" },
113     { NULL, NULL } };
114
115 static const struct
116 {
117     const char *psz_value;
118     const char *psz_label;
119 } p_aspect_ratio_values[] = {
120     { "", N_("Default") },
121     { "1:1", "1:1" },
122     { "4:3", "4:3" },
123     { "16:9", "16:9" },
124     { "16:10", "16:10" },
125     { "221:100", "2.21:1" },
126     { "5:4", "5:4" },
127     { NULL, NULL } };
128
129 static void AddCustomRatios( vout_thread_t *p_vout, const char *psz_var,
130                              char *psz_list )
131 {
132     if( psz_list && *psz_list )
133     {
134         char *psz_cur = psz_list;
135         char *psz_next;
136         while( psz_cur && *psz_cur )
137         {
138             vlc_value_t val, text;
139             psz_next = strchr( psz_cur, ',' );
140             if( psz_next )
141             {
142                 *psz_next = '\0';
143                 psz_next++;
144             }
145             val.psz_string = psz_cur;
146             text.psz_string = psz_cur;
147             var_Change( p_vout, psz_var, VLC_VAR_ADDCHOICE, &val, &text);
148             psz_cur = psz_next;
149         }
150     }
151 }
152
153 void vout_IntfInit( vout_thread_t *p_vout )
154 {
155     vlc_value_t val, text, old_val;
156     bool b_force_par = false;
157     char *psz_buf;
158     int i;
159
160     /* Create a few object variables we'll need later on */
161     var_Create( p_vout, "snapshot-path", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
162     var_Create( p_vout, "snapshot-prefix", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
163     var_Create( p_vout, "snapshot-format", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
164     var_Create( p_vout, "snapshot-preview", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
165     var_Create( p_vout, "snapshot-sequential",
166                 VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
167     var_Create( p_vout, "snapshot-num", VLC_VAR_INTEGER );
168     var_SetInteger( p_vout, "snapshot-num", 1 );
169     var_Create( p_vout, "snapshot-width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
170     var_Create( p_vout, "snapshot-height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
171
172     var_Create( p_vout, "width", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
173     var_Create( p_vout, "height", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
174     p_vout->i_alignment = var_CreateGetInteger( p_vout, "align" );
175
176     var_Create( p_vout, "video-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
177     var_Create( p_vout, "video-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
178
179     var_Create( p_vout, "mouse-hide-timeout",
180                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
181
182     p_vout->p->b_title_show = var_CreateGetBool( p_vout, "video-title-show" );
183     p_vout->p->i_title_timeout =
184         (mtime_t)var_CreateGetInteger( p_vout, "video-title-timeout" );
185     p_vout->p->i_title_position =
186         var_CreateGetInteger( p_vout, "video-title-position" );
187     p_vout->p->psz_title =  NULL;
188
189     var_AddCallback( p_vout, "video-title-show", TitleShowCallback, NULL );
190     var_AddCallback( p_vout, "video-title-timeout", TitleTimeoutCallback, NULL );
191     var_AddCallback( p_vout, "video-title-position", TitlePositionCallback, NULL );
192
193     /* Zoom object var */
194     var_Create( p_vout, "zoom", VLC_VAR_FLOAT | VLC_VAR_ISCOMMAND |
195                 VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );
196
197     text.psz_string = _("Zoom");
198     var_Change( p_vout, "zoom", VLC_VAR_SETTEXT, &text, NULL );
199
200     var_Get( p_vout, "zoom", &old_val );
201
202     for( i = 0; p_zoom_values[i].f_value; i++ )
203     {
204         if( old_val.f_float == p_zoom_values[i].f_value )
205             var_Change( p_vout, "zoom", VLC_VAR_DELCHOICE, &old_val, NULL );
206         val.f_float = p_zoom_values[i].f_value;
207         text.psz_string = _( p_zoom_values[i].psz_label );
208         var_Change( p_vout, "zoom", VLC_VAR_ADDCHOICE, &val, &text );
209     }
210
211     var_Set( p_vout, "zoom", old_val ); /* Is this really needed? */
212
213     var_AddCallback( p_vout, "zoom", ZoomCallback, NULL );
214
215     /* Crop offset vars */
216     var_Create( p_vout, "crop-left", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
217     var_Create( p_vout, "crop-top", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
218     var_Create( p_vout, "crop-right", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
219     var_Create( p_vout, "crop-bottom", VLC_VAR_INTEGER | VLC_VAR_ISCOMMAND );
220
221     var_AddCallback( p_vout, "crop-left", CropCallback, NULL );
222     var_AddCallback( p_vout, "crop-top", CropCallback, NULL );
223     var_AddCallback( p_vout, "crop-right", CropCallback, NULL );
224     var_AddCallback( p_vout, "crop-bottom", CropCallback, NULL );
225
226     /* Crop object var */
227     var_Create( p_vout, "crop", VLC_VAR_STRING | VLC_VAR_ISCOMMAND |
228                 VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );
229
230     text.psz_string = _("Crop");
231     var_Change( p_vout, "crop", VLC_VAR_SETTEXT, &text, NULL );
232
233     val.psz_string = (char*)"";
234     var_Change( p_vout, "crop", VLC_VAR_DELCHOICE, &val, 0 );
235
236     for( i = 0; p_crop_values[i].psz_value; i++ )
237     {
238         val.psz_string = (char*)p_crop_values[i].psz_value;
239         text.psz_string = _( p_crop_values[i].psz_label );
240         var_Change( p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &text );
241     }
242
243     /* update triggered every time the vout's crop parameters are changed */
244     var_Create( p_vout, "crop-update", VLC_VAR_VOID );
245
246     /* Add custom crop ratios */
247     psz_buf = config_GetPsz( p_vout, "custom-crop-ratios" );
248     AddCustomRatios( p_vout, "crop", psz_buf );
249     free( psz_buf );
250
251     var_AddCallback( p_vout, "crop", CropCallback, NULL );
252     var_Get( p_vout, "crop", &old_val );
253     if( old_val.psz_string && *old_val.psz_string )
254         var_TriggerCallback( p_vout, "crop" );
255     free( old_val.psz_string );
256
257     /* Monitor pixel aspect-ratio */
258     var_Create( p_vout, "monitor-par", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
259     var_Get( p_vout, "monitor-par", &val );
260     if( val.psz_string && *val.psz_string )
261     {
262         char *psz_parser = strchr( val.psz_string, ':' );
263         unsigned int i_aspect_num = 0, i_aspect_den = 0;
264         float i_aspect = 0;
265         if( psz_parser )
266         {
267             i_aspect_num = strtol( val.psz_string, 0, 10 );
268             i_aspect_den = strtol( ++psz_parser, 0, 10 );
269         }
270         else
271         {
272             i_aspect = atof( val.psz_string );
273             vlc_ureduce( &i_aspect_num, &i_aspect_den,
274                          i_aspect *VOUT_ASPECT_FACTOR, VOUT_ASPECT_FACTOR, 0 );
275         }
276         if( !i_aspect_num || !i_aspect_den ) i_aspect_num = i_aspect_den = 1;
277
278         p_vout->p->i_par_num = i_aspect_num;
279         p_vout->p->i_par_den = i_aspect_den;
280
281         vlc_ureduce( &p_vout->p->i_par_num, &p_vout->p->i_par_den,
282                      p_vout->p->i_par_num, p_vout->p->i_par_den, 0 );
283
284         msg_Dbg( p_vout, "overriding monitor pixel aspect-ratio: %i:%i",
285                  p_vout->p->i_par_num, p_vout->p->i_par_den );
286         b_force_par = true;
287     }
288     free( val.psz_string );
289
290     /* Aspect-ratio object var */
291     var_Create( p_vout, "aspect-ratio", VLC_VAR_STRING | VLC_VAR_ISCOMMAND |
292                 VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );
293
294     text.psz_string = _("Aspect-ratio");
295     var_Change( p_vout, "aspect-ratio", VLC_VAR_SETTEXT, &text, NULL );
296
297     val.psz_string = (char*)"";
298     var_Change( p_vout, "aspect-ratio", VLC_VAR_DELCHOICE, &val, 0 );
299
300     for( i = 0; p_aspect_ratio_values[i].psz_value; i++ )
301     {
302         val.psz_string = (char*)p_aspect_ratio_values[i].psz_value;
303         text.psz_string = _( p_aspect_ratio_values[i].psz_label );
304         var_Change( p_vout, "aspect-ratio", VLC_VAR_ADDCHOICE, &val, &text );
305     }
306
307     /* Add custom aspect ratios */
308     psz_buf = config_GetPsz( p_vout, "custom-aspect-ratios" );
309     AddCustomRatios( p_vout, "aspect-ratio", psz_buf );
310     free( psz_buf );
311
312     var_AddCallback( p_vout, "aspect-ratio", AspectCallback, NULL );
313     var_Get( p_vout, "aspect-ratio", &old_val );
314     if( (old_val.psz_string && *old_val.psz_string) || b_force_par )
315         var_TriggerCallback( p_vout, "aspect-ratio" );
316     free( old_val.psz_string );
317
318     /* Add variables to manage scaling video */
319     var_Create( p_vout, "autoscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT
320                 | VLC_VAR_ISCOMMAND );
321     text.psz_string = _("Autoscale video");
322     var_Change( p_vout, "autoscale", VLC_VAR_SETTEXT, &text, NULL );
323     var_AddCallback( p_vout, "autoscale", ScalingCallback, NULL );
324     p_vout->b_autoscale = var_GetBool( p_vout, "autoscale" );
325
326     var_Create( p_vout, "scale", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT
327                 | VLC_VAR_ISCOMMAND );
328     text.psz_string = _("Scale factor");
329     var_Change( p_vout, "scale", VLC_VAR_SETTEXT, &text, NULL );
330     var_AddCallback( p_vout, "scale", ScalingCallback, NULL );
331     p_vout->i_zoom = (int)( ZOOM_FP_FACTOR * var_GetFloat( p_vout, "scale" ) );
332
333     /* Initialize the dimensions of the video window */
334     InitWindowSize( p_vout, &p_vout->i_window_width,
335                     &p_vout->i_window_height );
336
337     /* Add a variable to indicate if the window should be on top of others */
338     var_Create( p_vout, "video-on-top", VLC_VAR_BOOL | VLC_VAR_DOINHERIT
339                 | VLC_VAR_ISCOMMAND );
340     text.psz_string = _("Always on top");
341     var_Change( p_vout, "video-on-top", VLC_VAR_SETTEXT, &text, NULL );
342     var_AddCallback( p_vout, "video-on-top", OnTopCallback, NULL );
343
344     /* Add a variable to indicate whether we want window decoration or not */
345     var_Create( p_vout, "video-deco", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
346
347     /* Add a fullscreen variable */
348     if( var_CreateGetBoolCommand( p_vout, "fullscreen" ) )
349     {
350         /* user requested fullscreen */
351         p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
352     }
353     text.psz_string = _("Fullscreen");
354     var_Change( p_vout, "fullscreen", VLC_VAR_SETTEXT, &text, NULL );
355     var_AddCallback( p_vout, "fullscreen", FullscreenCallback, NULL );
356
357     /* Add a snapshot variable */
358     var_Create( p_vout, "video-snapshot", VLC_VAR_VOID | VLC_VAR_ISCOMMAND );
359     text.psz_string = _("Snapshot");
360     var_Change( p_vout, "video-snapshot", VLC_VAR_SETTEXT, &text, NULL );
361     var_AddCallback( p_vout, "video-snapshot", SnapshotCallback, NULL );
362
363     /* Mouse coordinates */
364     var_Create( p_vout, "mouse-x", VLC_VAR_INTEGER );
365     var_Create( p_vout, "mouse-y", VLC_VAR_INTEGER );
366     var_Create( p_vout, "mouse-button-down", VLC_VAR_INTEGER );
367     var_Create( p_vout, "mouse-moved", VLC_VAR_BOOL );
368     var_Create( p_vout, "mouse-clicked", VLC_VAR_BOOL );
369
370     var_Create( p_vout, "intf-change", VLC_VAR_BOOL );
371     var_SetBool( p_vout, "intf-change", true );
372 }
373
374 /*****************************************************************************
375  * vout_Snapshot: generates a snapshot.
376  *****************************************************************************/
377 /**
378  * This function will inject a subpicture into the vout with the provided
379  * picture
380  */
381 static int VoutSnapshotPip( vout_thread_t *p_vout, picture_t *p_pic )
382 {
383     subpicture_t *p_subpic = subpicture_NewFromPicture( VLC_OBJECT(p_vout),
384                                                         p_pic, VLC_CODEC_YUVA );
385     if( !p_subpic )
386         return VLC_EGENERIC;
387
388     /* FIXME DEFAULT_CHAN is not good (used by the text) but
389      * hardcoded 0 doesn't seem right */
390     p_subpic->i_channel = 0;
391     p_subpic->i_start = mdate();
392     p_subpic->i_stop  = p_subpic->i_start + 4000000;
393     p_subpic->b_ephemer = true;
394     p_subpic->b_fade = true;
395
396     /* Reduce the picture to 1/4^2 of the screen */
397     p_subpic->i_original_picture_width  *= 4;
398     p_subpic->i_original_picture_height *= 4;
399
400     spu_DisplaySubpicture( p_vout->p_spu, p_subpic );
401     return VLC_SUCCESS;
402 }
403
404 /**
405  * This function will display the name and a PIP of the provided snapshot
406  */
407 static void VoutOsdSnapshot( vout_thread_t *p_vout, picture_t *p_pic, const char *psz_filename )
408 {
409     msg_Dbg( p_vout, "snapshot taken (%s)", psz_filename );
410     vout_OSDMessage( VLC_OBJECT( p_vout ), DEFAULT_CHAN, "%s", psz_filename );
411
412     if( var_GetBool( p_vout, "snapshot-preview" ) )
413     {
414         if( VoutSnapshotPip( p_vout, p_pic ) )
415             msg_Warn( p_vout, "Failed to display snapshot" );
416     }
417 }
418
419 /* */
420 int vout_GetSnapshot( vout_thread_t *p_vout,
421                       block_t **pp_image, picture_t **pp_picture,
422                       video_format_t *p_fmt,
423                       const char *psz_format, mtime_t i_timeout )
424 {
425     picture_t *p_picture = vout_snapshot_Get( &p_vout->p->snapshot, i_timeout );
426     if( !p_picture )
427     {
428         msg_Err( p_vout, "Failed to grab a snapshot" );
429         return VLC_EGENERIC;
430     }
431
432     if( pp_image )
433     {
434         vlc_fourcc_t i_format = VLC_CODEC_PNG;
435         if( psz_format && image_Type2Fourcc( psz_format ) )
436             i_format = image_Type2Fourcc( psz_format );
437
438         const int i_override_width  = var_GetInteger( p_vout, "snapshot-width" );
439         const int i_override_height = var_GetInteger( p_vout, "snapshot-height" );
440
441         if( picture_Export( VLC_OBJECT(p_vout), pp_image, p_fmt,
442                             p_picture, i_format, i_override_width, i_override_height ) )
443         {
444             msg_Err( p_vout, "Failed to convert image for snapshot" );
445             picture_Release( p_picture );
446             return VLC_EGENERIC;
447         }
448     }
449     if( pp_picture )
450         *pp_picture = p_picture;
451     else
452         picture_Release( p_picture );
453     return VLC_SUCCESS;
454 }
455
456 /**
457  * This function will handle a snapshot request
458  */
459 static void VoutSaveSnapshot( vout_thread_t *p_vout )
460 {
461     char *psz_path = var_GetNonEmptyString( p_vout, "snapshot-path" );
462     char *psz_format = var_GetNonEmptyString( p_vout, "snapshot-format" );
463     char *psz_prefix = var_GetNonEmptyString( p_vout, "snapshot-prefix" );
464
465     /* */
466     picture_t *p_picture;
467     block_t *p_image;
468     video_format_t fmt;
469
470     /* 500ms timeout
471      * XXX it will cause trouble with low fps video (< 2fps) */
472     if( vout_GetSnapshot( p_vout, &p_image, &p_picture, &fmt, psz_format, 500*1000 ) )
473     {
474         p_picture = NULL;
475         p_image = NULL;
476         goto exit;
477     }
478
479     if( !psz_path )
480     {
481         psz_path = vout_snapshot_GetDirectory();
482         if( !psz_path )
483         {
484             msg_Err( p_vout, "no path specified for snapshots" );
485             goto exit;
486         }
487     }
488
489     vout_snapshot_save_cfg_t cfg;
490     memset( &cfg, 0, sizeof(cfg) );
491     cfg.is_sequential = var_GetBool( p_vout, "snapshot-sequential" );
492     cfg.sequence = var_GetInteger( p_vout, "snapshot-num" );
493     cfg.path = psz_path;
494     cfg.format = psz_format;
495     cfg.prefix_fmt = psz_prefix;
496
497     char *psz_filename;
498     int  i_sequence;
499     if (vout_snapshot_SaveImage( &psz_filename, &i_sequence,
500                                  p_image, VLC_OBJECT(p_vout), &cfg ) )
501         goto exit;
502     if( cfg.is_sequential )
503         var_SetInteger( p_vout, "snapshot-num", i_sequence + 1 );
504
505     VoutOsdSnapshot( p_vout, p_picture, psz_filename );
506
507     /* signal creation of a new snapshot file */
508     var_SetString( p_vout->p_libvlc, "snapshot-file", psz_filename );
509
510     free( psz_filename );
511
512 exit:
513     if( p_image )
514         block_Release( p_image );
515     if( p_picture )
516         picture_Release( p_picture );
517     free( psz_prefix );
518     free( psz_format );
519     free( psz_path );
520 }
521
522 /*****************************************************************************
523  * Handle filters
524  *****************************************************************************/
525
526 void vout_EnableFilter( vout_thread_t *p_vout, const char *psz_name,
527                         bool b_add, bool b_setconfig )
528 {
529     char *psz_parser;
530     char *psz_string;
531     const char *psz_filter_type;
532
533     /* FIXME temporary hack */
534     const char *psz_module_name = psz_name;
535     if( !strcmp( psz_name, "magnify" ) ||
536         !strcmp( psz_name, "puzzle" ) ||
537         !strcmp( psz_name, "logo" ) ||
538         !strcmp( psz_name, "wall" ) ||
539         !strcmp( psz_name, "clone" ) )
540         psz_module_name = "video_filter_wrapper";
541
542     module_t *p_obj = module_find( psz_module_name );
543     if( !p_obj )
544     {
545         msg_Err( p_vout, "Unable to find filter module \"%s\".", psz_name );
546         return;
547     }
548
549     if( module_provides( p_obj, "video filter" ) )
550     {
551         psz_filter_type = "vout-filter";
552     }
553     else if( module_provides( p_obj, "video filter2" ) )
554     {
555         psz_filter_type = "video-filter";
556     }
557     else if( module_provides( p_obj, "sub filter" ) )
558     {
559         psz_filter_type = "sub-filter";
560     }
561     else
562     {
563         module_release( p_obj );
564         msg_Err( p_vout, "Unknown video filter type." );
565         return;
566     }
567     module_release( p_obj );
568
569     if( !strcmp( psz_filter_type, "sub-filter") )
570         psz_string = var_GetString( vout_GetSpu( p_vout ), psz_filter_type );
571     else
572         psz_string = var_GetString( p_vout, psz_filter_type );
573
574     /* Todo : Use some generic chain manipulation functions */
575     if( !psz_string ) psz_string = strdup("");
576
577     psz_parser = strstr( psz_string, psz_name );
578     if( b_add )
579     {
580         if( !psz_parser )
581         {
582             psz_parser = psz_string;
583             if( asprintf( &psz_string, (*psz_string) ? "%s:%s" : "%s%s",
584                           psz_string, psz_name ) == -1 )
585             {
586                 free( psz_parser );
587                 return;
588             }
589             free( psz_parser );
590         }
591         else
592             return;
593     }
594     else
595     {
596         if( psz_parser )
597         {
598             memmove( psz_parser, psz_parser + strlen(psz_name) +
599                             (*(psz_parser + strlen(psz_name)) == ':' ? 1 : 0 ),
600                             strlen(psz_parser + strlen(psz_name)) + 1 );
601
602             /* Remove trailing : : */
603             if( *(psz_string+strlen(psz_string ) -1 ) == ':' )
604             {
605                 *(psz_string+strlen(psz_string ) -1 ) = '\0';
606             }
607          }
608          else
609          {
610              free( psz_string );
611              return;
612          }
613     }
614
615     if( b_setconfig )
616     {
617         if( !strcmp( psz_filter_type, "sub-filter") )
618             config_PutPsz( vout_GetSpu( p_vout ), psz_filter_type, psz_string );
619         else
620             config_PutPsz( p_vout, psz_filter_type, psz_string );
621     }
622
623     if( !strcmp( psz_filter_type, "sub-filter") )
624         var_SetString( vout_GetSpu( p_vout ), psz_filter_type, psz_string );
625     else
626         var_SetString( p_vout, psz_filter_type, psz_string );
627
628     free( psz_string );
629 }
630
631 /*****************************************************************************
632  * InitWindowSize: find the initial dimensions the video window should have.
633  *****************************************************************************
634  * This function will check the "width", "height" and "zoom" config options and
635  * will calculate the size that the video window should have.
636  *****************************************************************************/
637 static void InitWindowSize( vout_thread_t *p_vout, unsigned *pi_width,
638                             unsigned *pi_height )
639 {
640 #define FP_FACTOR 1000                             /* our fixed point factor */
641
642     int i_width = var_GetInteger( p_vout, "width" );
643     int i_height = var_GetInteger( p_vout, "height" );
644     float f_zoom = var_GetFloat( p_vout, "zoom" );
645     uint64_t ll_zoom = (uint64_t)( FP_FACTOR * f_zoom );
646
647     if( i_width > 0 && i_height > 0)
648     {
649         *pi_width = (int)( i_width * ll_zoom / FP_FACTOR );
650         *pi_height = (int)( i_height * ll_zoom / FP_FACTOR );
651     }
652     else if( i_width > 0 )
653     {
654         *pi_width = (int)( i_width * ll_zoom / FP_FACTOR );
655         *pi_height = (int)( p_vout->fmt_in.i_visible_height * ll_zoom *
656             p_vout->fmt_in.i_sar_den * i_width / p_vout->fmt_in.i_sar_num /
657             FP_FACTOR / p_vout->fmt_in.i_visible_width );
658     }
659     else if( i_height > 0 )
660     {
661         *pi_height = (int)( i_height * ll_zoom / FP_FACTOR );
662         *pi_width = (int)( p_vout->fmt_in.i_visible_width * ll_zoom *
663             p_vout->fmt_in.i_sar_num * i_height / p_vout->fmt_in.i_sar_den /
664             FP_FACTOR / p_vout->fmt_in.i_visible_height );
665     }
666     else if( p_vout->fmt_in.i_sar_num == 0 || p_vout->fmt_in.i_sar_den == 0 )
667     {
668         msg_Warn( p_vout, "aspect ratio screwed up" );
669         *pi_width = (int)( p_vout->fmt_in.i_visible_width * ll_zoom / FP_FACTOR );
670         *pi_height = (int)( p_vout->fmt_in.i_visible_height * ll_zoom /FP_FACTOR);
671     }
672     else if( p_vout->fmt_in.i_sar_num >= p_vout->fmt_in.i_sar_den )
673     {
674         *pi_width = (int)( p_vout->fmt_in.i_visible_width * ll_zoom *
675             p_vout->fmt_in.i_sar_num / p_vout->fmt_in.i_sar_den / FP_FACTOR );
676         *pi_height = (int)( p_vout->fmt_in.i_visible_height * ll_zoom
677             / FP_FACTOR );
678     }
679     else
680     {
681         *pi_width = (int)( p_vout->fmt_in.i_visible_width * ll_zoom
682             / FP_FACTOR );
683         *pi_height = (int)( p_vout->fmt_in.i_visible_height * ll_zoom *
684             p_vout->fmt_in.i_sar_den / p_vout->fmt_in.i_sar_num / FP_FACTOR );
685     }
686
687     msg_Dbg( p_vout, "window size: %ux%u", *pi_width, *pi_height );
688
689 #undef FP_FACTOR
690 }
691
692 /*****************************************************************************
693  * Object variables callbacks
694  *****************************************************************************/
695 static int ZoomCallback( vlc_object_t *p_this, char const *psz_cmd,
696                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
697 {
698     vout_thread_t *p_vout = (vout_thread_t *)p_this;
699     (void)psz_cmd; (void)oldval; (void)newval; (void)p_data;
700     InitWindowSize( p_vout, &p_vout->i_window_width,
701                     &p_vout->i_window_height );
702     vout_Control( p_vout, VOUT_SET_SIZE, p_vout->i_window_width,
703                   p_vout->i_window_height );
704     return VLC_SUCCESS;
705 }
706
707 static int CropCallback( vlc_object_t *p_this, char const *psz_cmd,
708                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
709 {
710     vout_thread_t *p_vout = (vout_thread_t *)p_this;
711     int64_t i_aspect_num, i_aspect_den;
712     unsigned int i_width, i_height;
713
714     (void)oldval; (void)p_data;
715
716     /* Restore defaults */
717     p_vout->fmt_in.i_x_offset = p_vout->fmt_render.i_x_offset;
718     p_vout->fmt_in.i_visible_width = p_vout->fmt_render.i_visible_width;
719     p_vout->fmt_in.i_y_offset = p_vout->fmt_render.i_y_offset;
720     p_vout->fmt_in.i_visible_height = p_vout->fmt_render.i_visible_height;
721
722     if( !strcmp( psz_cmd, "crop" ) )
723     {
724         char *psz_end = NULL, *psz_parser = strchr( newval.psz_string, ':' );
725         if( psz_parser )
726         {
727             /* We're using the 3:4 syntax */
728             i_aspect_num = strtol( newval.psz_string, &psz_end, 10 );
729             if( psz_end == newval.psz_string || !i_aspect_num ) goto crop_end;
730
731             i_aspect_den = strtol( ++psz_parser, &psz_end, 10 );
732             if( psz_end == psz_parser || !i_aspect_den ) goto crop_end;
733
734             i_width = p_vout->fmt_in.i_sar_den*p_vout->fmt_render.i_visible_height *
735                 i_aspect_num / i_aspect_den / p_vout->fmt_in.i_sar_num;
736             i_height = p_vout->fmt_render.i_visible_width*p_vout->fmt_in.i_sar_num *
737                 i_aspect_den / i_aspect_num / p_vout->fmt_in.i_sar_den;
738
739             if( i_width < p_vout->fmt_render.i_visible_width )
740             {
741                 p_vout->fmt_in.i_x_offset = p_vout->fmt_render.i_x_offset +
742                     (p_vout->fmt_render.i_visible_width - i_width) / 2;
743                 p_vout->fmt_in.i_visible_width = i_width;
744             }
745             else
746             {
747                 p_vout->fmt_in.i_y_offset = p_vout->fmt_render.i_y_offset +
748                     (p_vout->fmt_render.i_visible_height - i_height) / 2;
749                 p_vout->fmt_in.i_visible_height = i_height;
750             }
751         }
752         else
753         {
754             psz_parser = strchr( newval.psz_string, 'x' );
755             if( psz_parser )
756             {
757                 /* Maybe we're using the <width>x<height>+<left>+<top> syntax */
758                 unsigned int i_crop_width, i_crop_height, i_crop_top, i_crop_left;
759
760                 i_crop_width = strtol( newval.psz_string, &psz_end, 10 );
761                 if( psz_end != psz_parser ) goto crop_end;
762
763                 psz_parser = strchr( ++psz_end, '+' );
764                 i_crop_height = strtol( psz_end, &psz_end, 10 );
765                 if( psz_end != psz_parser ) goto crop_end;
766
767                 psz_parser = strchr( ++psz_end, '+' );
768                 i_crop_left = strtol( psz_end, &psz_end, 10 );
769                 if( psz_end != psz_parser ) goto crop_end;
770
771                 psz_end++;
772                 i_crop_top = strtol( psz_end, &psz_end, 10 );
773                 if( *psz_end != '\0' ) goto crop_end;
774
775                 if( i_crop_top + i_crop_height >= p_vout->fmt_render.i_visible_height ||
776                     i_crop_left + i_crop_width >= p_vout->fmt_render.i_visible_width )
777                 {
778                     msg_Err( p_vout, "Unable to crop over picture boundaries");
779                     return VLC_EGENERIC;
780                 }
781
782                 i_width = i_crop_width;
783                 p_vout->fmt_in.i_visible_width = i_width;
784
785                 i_height = i_crop_height;
786                 p_vout->fmt_in.i_visible_height = i_height;
787
788                 p_vout->fmt_in.i_x_offset = i_crop_left;
789                 p_vout->fmt_in.i_y_offset = i_crop_top;
790             }
791             else
792             {
793                 /* Maybe we're using the <left>+<top>+<right>+<bottom> syntax */
794                 unsigned int i_crop_top, i_crop_left, i_crop_bottom, i_crop_right;
795
796                 psz_parser = strchr( newval.psz_string, '+' );
797                 i_crop_left = strtol( newval.psz_string, &psz_end, 10 );
798                 if( psz_end != psz_parser ) goto crop_end;
799
800                 psz_parser = strchr( ++psz_end, '+' );
801                 i_crop_top = strtol( psz_end, &psz_end, 10 );
802                 if( psz_end != psz_parser ) goto crop_end;
803
804                 psz_parser = strchr( ++psz_end, '+' );
805                 i_crop_right = strtol( psz_end, &psz_end, 10 );
806                 if( psz_end != psz_parser ) goto crop_end;
807
808                 psz_end++;
809                 i_crop_bottom = strtol( psz_end, &psz_end, 10 );
810                 if( *psz_end != '\0' ) goto crop_end;
811
812                 if( i_crop_top + i_crop_bottom >= p_vout->fmt_render.i_visible_height ||
813                     i_crop_right + i_crop_left >= p_vout->fmt_render.i_visible_width )
814                 {
815                     msg_Err( p_vout, "Unable to crop over picture boundaries" );
816                     return VLC_EGENERIC;
817                 }
818
819                 i_width = p_vout->fmt_render.i_visible_width
820                           - i_crop_left - i_crop_right;
821                 p_vout->fmt_in.i_visible_width = i_width;
822
823                 i_height = p_vout->fmt_render.i_visible_height
824                            - i_crop_top - i_crop_bottom;
825                 p_vout->fmt_in.i_visible_height = i_height;
826
827                 p_vout->fmt_in.i_x_offset = i_crop_left;
828                 p_vout->fmt_in.i_y_offset = i_crop_top;
829             }
830         }
831     }
832     else if( !strcmp( psz_cmd, "crop-top" )
833           || !strcmp( psz_cmd, "crop-left" )
834           || !strcmp( psz_cmd, "crop-bottom" )
835           || !strcmp( psz_cmd, "crop-right" ) )
836     {
837         unsigned int i_crop_top, i_crop_left, i_crop_bottom, i_crop_right;
838
839         i_crop_top = var_GetInteger( p_vout, "crop-top" );
840         i_crop_left = var_GetInteger( p_vout, "crop-left" );
841         i_crop_right = var_GetInteger( p_vout, "crop-right" );
842         i_crop_bottom = var_GetInteger( p_vout, "crop-bottom" );
843
844         if( i_crop_top + i_crop_bottom >= p_vout->fmt_render.i_visible_height ||
845             i_crop_right + i_crop_left >= p_vout->fmt_render.i_visible_width )
846         {
847             msg_Err( p_vout, "Unable to crop over picture boundaries" );
848             return VLC_EGENERIC;
849         }
850
851         i_width = p_vout->fmt_render.i_visible_width
852                   - i_crop_left - i_crop_right;
853         p_vout->fmt_in.i_visible_width = i_width;
854
855         i_height = p_vout->fmt_render.i_visible_height
856                    - i_crop_top - i_crop_bottom;
857         p_vout->fmt_in.i_visible_height = i_height;
858
859         p_vout->fmt_in.i_x_offset = i_crop_left;
860         p_vout->fmt_in.i_y_offset = i_crop_top;
861     }
862
863  crop_end:
864     InitWindowSize( p_vout, &p_vout->i_window_width,
865                     &p_vout->i_window_height );
866
867     p_vout->i_changes |= VOUT_CROP_CHANGE;
868
869     msg_Dbg( p_vout, "cropping picture %ix%i to %i,%i,%ix%i",
870              p_vout->fmt_in.i_width, p_vout->fmt_in.i_height,
871              p_vout->fmt_in.i_x_offset, p_vout->fmt_in.i_y_offset,
872              p_vout->fmt_in.i_visible_width,
873              p_vout->fmt_in.i_visible_height );
874
875     var_TriggerCallback( p_vout, "crop-update" );
876
877     return VLC_SUCCESS;
878 }
879
880 static int AspectCallback( vlc_object_t *p_this, char const *psz_cmd,
881                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
882 {
883     vout_thread_t *p_vout = (vout_thread_t *)p_this;
884     unsigned int i_aspect_num, i_aspect_den, i_sar_num, i_sar_den;
885     vlc_value_t val;
886
887     char *psz_end, *psz_parser = strchr( newval.psz_string, ':' );
888     (void)psz_cmd; (void)oldval; (void)p_data;
889
890     /* Restore defaults */
891     p_vout->fmt_in.i_sar_num = p_vout->fmt_render.i_sar_num;
892     p_vout->fmt_in.i_sar_den = p_vout->fmt_render.i_sar_den;
893     p_vout->fmt_in.i_aspect = p_vout->fmt_render.i_aspect;
894     p_vout->render.i_aspect = p_vout->fmt_render.i_aspect;
895
896     if( !psz_parser ) goto aspect_end;
897
898     i_aspect_num = strtol( newval.psz_string, &psz_end, 10 );
899     if( psz_end == newval.psz_string || !i_aspect_num ) goto aspect_end;
900
901     i_aspect_den = strtol( ++psz_parser, &psz_end, 10 );
902     if( psz_end == psz_parser || !i_aspect_den ) goto aspect_end;
903
904     i_sar_num = i_aspect_num * p_vout->fmt_render.i_visible_height;
905     i_sar_den = i_aspect_den * p_vout->fmt_render.i_visible_width;
906     vlc_ureduce( &i_sar_num, &i_sar_den, i_sar_num, i_sar_den, 0 );
907     p_vout->fmt_in.i_sar_num = i_sar_num;
908     p_vout->fmt_in.i_sar_den = i_sar_den;
909     p_vout->fmt_in.i_aspect = i_aspect_num * VOUT_ASPECT_FACTOR / i_aspect_den;
910     p_vout->render.i_aspect = p_vout->fmt_in.i_aspect;
911
912  aspect_end:
913     if( p_vout->p->i_par_num && p_vout->p->i_par_den )
914     {
915         p_vout->fmt_in.i_sar_num *= p_vout->p->i_par_den;
916         p_vout->fmt_in.i_sar_den *= p_vout->p->i_par_num;
917         p_vout->fmt_in.i_aspect = p_vout->fmt_in.i_aspect *
918             p_vout->p->i_par_den / p_vout->p->i_par_num;
919         p_vout->render.i_aspect = p_vout->fmt_in.i_aspect;
920     }
921
922     p_vout->i_changes |= VOUT_ASPECT_CHANGE;
923
924     vlc_ureduce( &i_aspect_num, &i_aspect_den,
925                  p_vout->fmt_in.i_aspect, VOUT_ASPECT_FACTOR, 0 );
926     msg_Dbg( p_vout, "new aspect-ratio %i:%i, sample aspect-ratio %i:%i",
927              i_aspect_num, i_aspect_den,
928              p_vout->fmt_in.i_sar_num, p_vout->fmt_in.i_sar_den );
929
930     if( var_Get( p_vout, "crop", &val ) )
931         return VLC_EGENERIC;
932
933     int i_ret = CropCallback( p_this, "crop", val, val, 0 );
934     free( val.psz_string );
935     return i_ret;
936 }
937
938 static int ScalingCallback( vlc_object_t *p_this, char const *psz_cmd,
939                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
940 {
941     vout_thread_t *p_vout = (vout_thread_t *)p_this;
942     (void)oldval; (void)newval; (void)p_data;
943
944     vlc_mutex_lock( &p_vout->change_lock );
945
946     if( !strcmp( psz_cmd, "autoscale" ) )
947     {
948         p_vout->i_changes |= VOUT_SCALE_CHANGE;
949     }
950     else if( !strcmp( psz_cmd, "scale" ) )
951     {
952         p_vout->i_changes |= VOUT_ZOOM_CHANGE;
953     }
954
955     vlc_mutex_unlock( &p_vout->change_lock );
956
957     return VLC_SUCCESS;
958 }
959
960 static int OnTopCallback( vlc_object_t *p_this, char const *psz_cmd,
961                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
962 {
963     vout_thread_t *p_vout = (vout_thread_t *)p_this;
964
965     vlc_mutex_lock( &p_vout->change_lock );
966     p_vout->i_changes |= VOUT_ON_TOP_CHANGE;
967     p_vout->b_on_top = newval.b_bool;
968     vlc_mutex_unlock( &p_vout->change_lock );
969
970     /* Modify libvlc as well because the vout might have to be restarted */
971     var_Create( p_vout->p_libvlc, "video-on-top", VLC_VAR_BOOL );
972     var_Set( p_vout->p_libvlc, "video-on-top", newval );
973
974     (void)psz_cmd; (void)oldval; (void)p_data;
975     return VLC_SUCCESS;
976 }
977
978 static int FullscreenCallback( vlc_object_t *p_this, char const *psz_cmd,
979                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
980 {
981     vout_thread_t *p_vout = (vout_thread_t *)p_this;
982     vlc_value_t val;
983     (void)psz_cmd; (void)oldval; (void)p_data;
984
985     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
986
987     /* Modify libvlc as well because the vout might have to be restarted */
988     var_Create( p_vout->p_libvlc, "fullscreen", VLC_VAR_BOOL );
989     var_Set( p_vout->p_libvlc, "fullscreen", newval );
990
991     val.b_bool = true;
992     var_Set( p_vout, "intf-change", val );
993     return VLC_SUCCESS;
994 }
995
996 static int SnapshotCallback( vlc_object_t *p_this, char const *psz_cmd,
997                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
998 {
999     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1000     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
1001     VLC_UNUSED(newval); VLC_UNUSED(p_data);
1002
1003     VoutSaveSnapshot( p_vout );
1004     return VLC_SUCCESS;
1005 }
1006
1007 static int TitleShowCallback( vlc_object_t *p_this, char const *psz_cmd,
1008                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1009 {
1010     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
1011     VLC_UNUSED(p_data);
1012     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1013     p_vout->p->b_title_show = newval.b_bool;
1014     return VLC_SUCCESS;
1015 }
1016
1017 static int TitleTimeoutCallback( vlc_object_t *p_this, char const *psz_cmd,
1018                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1019 {
1020     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
1021     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1022     p_vout->p->i_title_timeout = (mtime_t) newval.i_int;
1023     return VLC_SUCCESS;
1024 }
1025
1026 static int TitlePositionCallback( vlc_object_t *p_this, char const *psz_cmd,
1027                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1028 {
1029     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval);
1030     VLC_UNUSED(p_data);
1031     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1032     p_vout->p->i_title_position = newval.i_int;
1033     return VLC_SUCCESS;
1034 }