]> git.sesse.net Git - vlc/blob - modules/video_filter/osdmenu.c
small cleanup
[vlc] / modules / video_filter / osdmenu.c
1 /*****************************************************************************
2  * osdmenu.c: osd filter module
3  *****************************************************************************
4  * Copyright (C) 2004-2007 M2X
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
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 implid 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 #include <stdlib.h>
28 #include <string.h>
29 #include <vlc/vlc.h>
30 #include <vlc_vout.h>
31 #include <vlc_filter.h>
32
33 #include <vlc_osd.h>
34
35 /*****************************************************************************
36  * Module descriptor
37  *****************************************************************************/
38
39 /* FIXME: Future extension make the definition file in XML format. */
40 #define OSD_FILE_TEXT N_("Configuration file")
41 #define OSD_FILE_LONGTEXT N_( \
42     "Configuration file for the OSD Menu." )
43 #define OSD_PATH_TEXT N_("Path to OSD menu images")
44 #define OSD_PATH_LONGTEXT N_( \
45     "Path to the OSD menu images. This will override the path defined in the " \
46     "OSD configuration file." )
47
48 #define POSX_TEXT N_("X coordinate")
49 #define POSX_LONGTEXT N_("You can move the OSD menu by left-clicking on it." )
50
51 #define POSY_TEXT N_("Y coordinate")
52 #define POSY_LONGTEXT N_("You can move the OSD menu by left-clicking on it." )
53
54 #define POS_TEXT N_("Menu position")
55 #define POS_LONGTEXT N_( \
56   "You can enforce the OSD menu position on the video " \
57   "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
58   "also use combinations of these values, eg. 6 = top-right).")
59
60 #define TIMEOUT_TEXT N_("Menu timeout")
61 #define TIMEOUT_LONGTEXT N_( \
62     "OSD menu pictures get a default timeout of 15 seconds added to their " \
63     "remaining time. This will ensure that they are at least the specified " \
64     "time visible.")
65
66 #define OSD_UPDATE_TEXT N_("Menu update interval" )
67 #define OSD_UPDATE_LONGTEXT N_( \
68     "The default is to update the OSD menu picture every 200 ms. Shorten the" \
69     " update time for environments that experience transmissions errors. " \
70     "Be careful with this option as encoding OSD menu pictures is very " \
71     "computing intensive. The range is 0 - 1000 ms." )
72
73 #define OSD_ALPHA_TEXT N_("Alpha transparency value (default 255)")
74 #define OSD_ALPHA_LONGTEXT N_( \
75     "The transparency of the OSD menu can be changed by giving a value " \
76     "between 0 and 255. A lower value specifies more transparency a higher " \
77     "means less transparency. The default is being not transparent " \
78     "(value 255) the minimum is fully transparent (value 0)." )
79
80 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
81 static const char *ppsz_pos_descriptions[] =
82 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
83   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
84
85 /* subfilter functions */
86 static int  CreateFilter ( vlc_object_t * );
87 static void DestroyFilter( vlc_object_t * );
88 static subpicture_t *Filter( filter_t *, mtime_t );
89 static int OSDMenuUpdateEvent( vlc_object_t *, char const *,
90                     vlc_value_t, vlc_value_t, void * );
91 static int OSDMenuVisibleEvent( vlc_object_t *, char const *,
92                     vlc_value_t, vlc_value_t, void * );
93 static int OSDMenuCallback( vlc_object_t *, char const *,
94                             vlc_value_t, vlc_value_t, void * );
95
96 #define OSD_CFG "osdmenu-"
97
98 #if defined( WIN32 ) || defined( UNDER_CE )
99 #define OSD_DEFAULT_CFG "osdmenu/default.cfg"
100 #else
101 #define OSD_DEFAULT_CFG "share/osdmenu/default.cfg"
102 #endif
103
104 #define OSD_UPDATE_MIN     0
105 #define OSD_UPDATE_DEFAULT 300
106 #define OSD_UPDATE_MAX     1000
107
108 vlc_module_begin();
109     add_integer( OSD_CFG "x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE );
110     add_integer( OSD_CFG "y", -1, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE );
111     add_integer( OSD_CFG "position", 8, NULL, POS_TEXT, POS_LONGTEXT,
112                  VLC_FALSE );
113         change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );
114     add_string( OSD_CFG "file", OSD_DEFAULT_CFG, NULL, OSD_FILE_TEXT,
115         OSD_FILE_LONGTEXT, VLC_FALSE );
116     add_string( OSD_CFG "file-path", NULL, NULL, OSD_PATH_TEXT,
117         OSD_PATH_LONGTEXT, VLC_FALSE );
118     add_integer( OSD_CFG "timeout", 15, NULL, TIMEOUT_TEXT,
119         TIMEOUT_LONGTEXT, VLC_FALSE );
120     add_integer_with_range( OSD_CFG "update", OSD_UPDATE_DEFAULT,
121         OSD_UPDATE_MIN, OSD_UPDATE_MAX, NULL, OSD_UPDATE_TEXT,
122         OSD_UPDATE_LONGTEXT, VLC_TRUE );
123
124     add_integer_with_range( OSD_CFG "alpha", 255, 0, 255, NULL,
125         OSD_ALPHA_TEXT, OSD_ALPHA_LONGTEXT, VLC_TRUE );
126
127     set_capability( "sub filter", 100 );
128     set_description( _("On Screen Display menu") );
129     set_shortname( _("OSD menu") );
130     add_shortcut( "osdmenu" );
131 /*
132     set_category( CAT_VIDEO );
133     set_subcategory( SUBCAT_VIDEO_SUBPIC );
134 */
135     set_callbacks( CreateFilter, DestroyFilter );
136 vlc_module_end();
137
138 /*****************************************************************************
139  * Sub filter code
140  *****************************************************************************/
141
142 /*****************************************************************************
143  * Local prototypes
144  *****************************************************************************/
145 struct filter_sys_t
146 {
147     int          position;      /* relative positioning of SPU images */
148     int          i_x;           /* absolute positioning of SPU images */
149     int          i_y;           /* absolute positioning of SPU images */
150     mtime_t      i_last_date;   /* last mdate SPU object has been sent to SPU subsytem */
151     mtime_t      i_timeout;     /* duration SPU object is valid on the video output in seconds */
152
153     vlc_bool_t   b_absolute;    /* do we use absolute positioning or relative? */
154     vlc_bool_t   b_update;      /* Update OSD Menu by sending SPU objects */
155     vlc_bool_t   b_visible;     /* OSD Menu is visible */
156     mtime_t      i_update;      /* Update the OSD menu every n ms */
157     mtime_t      i_end_date;    /* End data of display OSD menu */
158     int          i_alpha;       /* alpha transparency value */
159
160     char        *psz_file;      /* OSD Menu configuration file */
161     osd_menu_t  *p_menu;        /* pointer to OSD Menu object */
162 };
163
164 /*****************************************************************************
165  * CreateFilter: Create the filter and open the definition file
166  *****************************************************************************/
167 static int CreateFilter ( vlc_object_t *p_this )
168 {
169     filter_t *p_filter = (filter_t *)p_this;
170     filter_sys_t *p_sys = NULL;
171     vlc_value_t val;
172
173     p_filter->p_sys = p_sys = (filter_sys_t *) malloc( sizeof(filter_sys_t) );
174     if( !p_filter->p_sys )
175     {
176         msg_Err( p_filter, "out of memory" );
177         return VLC_ENOMEM;
178     }
179     memset( p_sys, 0, sizeof(filter_sys_t) );
180
181     /* Populating struct */
182     p_filter->p_sys->p_menu = NULL;
183     p_filter->p_sys->psz_file = NULL;
184
185     p_filter->p_sys->psz_file = config_GetPsz( p_filter, OSD_CFG "file" );
186     if( (p_filter->p_sys->psz_file == NULL) ||
187         (*p_filter->p_sys->psz_file == '\0') )
188     {
189         msg_Err( p_filter, "unable to get filename" );
190         goto error;
191     }
192
193     p_sys->i_x = var_CreateGetIntegerCommand( p_this, OSD_CFG "x" );
194     p_sys->i_y = var_CreateGetIntegerCommand( p_this, OSD_CFG "y" );
195     p_sys->position = var_CreateGetIntegerCommand( p_this, OSD_CFG "position" );
196     p_sys->i_alpha = var_CreateGetIntegerCommand( p_this, OSD_CFG "alpha" );
197
198     /* in micro seconds - divide by 2 to match user expectations */
199     var_Create( p_this, OSD_CFG "timeout",
200                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
201     var_Get( p_this, OSD_CFG "timeout", &val );
202     p_sys->i_timeout = (mtime_t)(val.i_int * 1000000) >> 2;
203     var_Create( p_this, OSD_CFG "update",
204                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
205     var_Get( p_this, OSD_CFG "update", &val );
206     p_sys->i_update = (mtime_t)(val.i_int * 1000); /* in micro seconds */
207
208     var_AddCallback( p_filter, OSD_CFG "position", OSDMenuCallback, p_sys );
209     var_AddCallback( p_filter, OSD_CFG "timeout", OSDMenuCallback, p_sys );
210     var_AddCallback( p_filter, OSD_CFG "update", OSDMenuCallback, p_sys );
211     var_AddCallback( p_filter, OSD_CFG "alpha", OSDMenuCallback, p_sys );
212
213     /* Load the osd menu subsystem */
214     p_sys->p_menu = osd_MenuCreate( p_this, p_sys->psz_file );
215     if( p_sys->p_menu == NULL )
216         goto error;
217
218     /* Check if menu position was overridden */
219     p_sys->b_absolute = VLC_TRUE;
220     if( (p_sys->i_x < 0) || (p_sys->i_y < 0) )
221     {
222         p_sys->b_absolute = VLC_FALSE;
223         p_sys->p_menu->i_x = 0;
224         p_sys->p_menu->i_y = 0;
225     }
226     else if( (p_sys->i_x >= 0) || (p_sys->i_y >= 0) )
227     {
228         p_sys->p_menu->i_x = p_sys->i_x;
229         p_sys->p_menu->i_y = p_sys->i_y;
230     }
231     else if( (p_sys->p_menu->i_x < 0) ||
232              (p_sys->p_menu->i_y < 0) )
233     {
234         p_sys->b_absolute = VLC_FALSE;
235         p_sys->p_menu->i_x = 0;
236         p_sys->p_menu->i_y = 0;
237     }
238
239     /* Set up p_filter */
240     p_sys->i_last_date = mdate();
241
242     /* Keep track of OSD Events */
243     p_sys->b_update  = VLC_FALSE;
244     p_sys->b_visible = VLC_FALSE;
245
246     /* Listen to osd menu core updates/visible settings. */
247     var_AddCallback( p_sys->p_menu, "osd-menu-update",
248                      OSDMenuUpdateEvent, p_filter );
249     var_AddCallback( p_sys->p_menu, "osd-menu-visible",
250                      OSDMenuVisibleEvent, p_filter );
251
252     /* Attach subpicture filter callback */
253     p_filter->pf_sub_filter = Filter;
254
255     es_format_Init( &p_filter->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) );
256     p_filter->fmt_out.i_priority = 0;
257
258     msg_Dbg( p_filter, "successfully loaded osdmenu filter" );
259     return VLC_SUCCESS;
260
261 error:
262     msg_Err( p_filter, "osdmenu filter discarded" );
263     if( p_filter->p_sys->p_menu )
264     {
265         osd_MenuDelete( p_this, p_filter->p_sys->p_menu );
266         p_filter->p_sys->p_menu = NULL;
267     }
268     if( p_filter->p_sys->psz_file ) free( p_filter->p_sys->psz_file );
269     if( p_filter->p_sys ) free( p_filter->p_sys );
270     return VLC_EGENERIC;
271 }
272
273 /*****************************************************************************
274  * DestroyFilter: Make a clean exit of this plugin
275  *****************************************************************************/
276 static void DestroyFilter( vlc_object_t *p_this )
277 {
278     filter_t     *p_filter = (filter_t*)p_this;
279     filter_sys_t *p_sys = p_filter->p_sys;
280
281     var_DelCallback( p_filter, OSD_CFG "position", OSDMenuCallback, p_sys );
282     var_DelCallback( p_filter, OSD_CFG "timeout", OSDMenuCallback, p_sys );
283     var_DelCallback( p_filter, OSD_CFG "update", OSDMenuCallback, p_sys );
284     var_DelCallback( p_filter, OSD_CFG "alpha", OSDMenuCallback, p_sys );
285
286     var_DelCallback( p_sys->p_menu, "osd-menu-update",
287                      OSDMenuUpdateEvent, p_filter );
288     var_DelCallback( p_sys->p_menu, "osd-menu-visible",
289                      OSDMenuVisibleEvent, p_filter );
290
291     var_Destroy( p_this, OSD_CFG "file" );
292     var_Destroy( p_this, OSD_CFG "x" );
293     var_Destroy( p_this, OSD_CFG "y" );
294     var_Destroy( p_this, OSD_CFG "position" );
295     var_Destroy( p_this, OSD_CFG "timeout" );
296     var_Destroy( p_this, OSD_CFG "update" );
297     var_Destroy( p_this, OSD_CFG "alpha" );
298
299     osd_MenuDelete( p_filter, p_sys->p_menu );
300
301     if( p_sys->psz_file) free( p_sys->psz_file );
302     if( p_sys ) free( p_sys );
303
304     msg_Dbg( p_filter, "osdmenu filter destroyed" );
305 }
306
307 /*****************************************************************************
308  * OSDMenuEvent: callback for OSD Menu events
309  *****************************************************************************/
310 static int OSDMenuVisibleEvent( vlc_object_t *p_this, char const *psz_var,
311                     vlc_value_t oldval, vlc_value_t newval, void *p_data )
312 {
313     filter_t *p_filter = (filter_t *) p_data;
314
315     p_filter->p_sys->b_visible = VLC_TRUE;
316     p_filter->p_sys->b_update = VLC_TRUE;
317     return VLC_SUCCESS;
318 }
319
320 static int OSDMenuUpdateEvent( vlc_object_t *p_this, char const *psz_var,
321                     vlc_value_t oldval, vlc_value_t newval, void *p_data )
322 {
323     filter_t *p_filter = (filter_t *) p_data;
324     filter_sys_t *p_sys = p_filter->p_sys;
325
326     p_sys->b_update = p_sys->b_visible ? VLC_TRUE : VLC_FALSE;
327     p_sys->i_end_date = (mtime_t) 0;
328     return VLC_SUCCESS;
329 }
330
331 #if 0
332 /*****************************************************************************
333  * create_text_region : compose a text region SPU
334  *****************************************************************************/
335 static subpicture_region_t *create_text_region( filter_t *p_filter, subpicture_t *p_spu, 
336     int i_width, int i_height, const char *psz_text )
337 {
338     subpicture_region_t *p_region;
339     video_format_t       fmt;
340
341     /* Create new SPU region */
342     memset( &fmt, 0, sizeof(video_format_t) );
343     fmt.i_chroma = VLC_FOURCC( 'T','E','X','T' );
344     fmt.i_aspect = VOUT_ASPECT_FACTOR;
345     fmt.i_sar_num = fmt.i_sar_den = 1;
346     fmt.i_width = fmt.i_visible_width = i_width;
347     fmt.i_height = fmt.i_visible_height = i_height;
348     fmt.i_x_offset = fmt.i_y_offset = 0;
349     p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
350     if( !p_region )
351     {
352         msg_Err( p_filter, "cannot allocate another SPU region" );
353         return NULL;
354     }
355     p_region->psz_text = strdup( psz_text );
356     p_region->i_x = 0;
357     p_region->i_y = 40;
358 #if 0
359     msg_Dbg( p_filter, "SPU text region position (%d,%d) (%d,%d) [%s]",
360         p_region->i_x, p_region->i_y,
361         p_region->fmt.i_width, p_region->fmt.i_height, p_region->psz_text );
362 #endif
363     return p_region;
364 }
365 #endif
366
367 /*****************************************************************************
368  * create_picture_region : compose a picture region SPU
369  *****************************************************************************/
370 static subpicture_region_t *create_picture_region( filter_t *p_filter, subpicture_t *p_spu,
371     int i_width, int i_height, picture_t *p_pic )
372 {
373     subpicture_region_t *p_region = NULL;
374     video_format_t       fmt;
375
376     if( !p_spu ) return NULL;
377
378     /* Create new SPU region */
379     memset( &fmt, 0, sizeof(video_format_t) );
380     fmt.i_chroma = (p_pic == NULL) ? VLC_FOURCC('Y','U','V','P') : VLC_FOURCC('Y','U','V','A');
381     fmt.i_aspect = VOUT_ASPECT_FACTOR;
382     fmt.i_sar_num = fmt.i_sar_den = 1;
383     fmt.i_width = fmt.i_visible_width = i_width;
384     fmt.i_height = fmt.i_visible_height = i_height;
385     fmt.i_x_offset = fmt.i_y_offset = 0;
386
387     p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
388     if( !p_region )
389     {
390         msg_Err( p_filter, "cannot allocate SPU region" );
391         p_filter->pf_sub_buffer_del( p_filter, p_spu );
392         return NULL;
393     }
394     if( !p_pic && ( fmt.i_chroma == VLC_FOURCC('Y','U','V','P') ) )
395     {
396         p_region->fmt.p_palette->i_entries = 0;
397         p_region->fmt.i_width = p_region->fmt.i_visible_width = 0;
398         p_region->fmt.i_height = p_region->fmt.i_visible_height = 0;
399     }
400     if( p_pic )
401         vout_CopyPicture( p_filter, &p_region->picture, p_pic );
402
403     p_region->i_x = 0;
404     p_region->i_y = 0;
405     p_region->i_align = SUBPICTURE_ALIGN_LEFT;
406 #if 0
407     msg_Dbg( p_filter, "SPU picture region position (%d,%d) (%d,%d) [%p]",
408         p_region->i_x, p_region->i_y,
409         p_region->fmt.i_width, p_region->fmt.i_height, p_pic );
410 #endif
411     return p_region;
412 }
413
414 /****************************************************************************
415  * Filter: the whole thing
416  ****************************************************************************
417  * This function outputs subpictures at regular time intervals.
418  ****************************************************************************/
419 static subpicture_t *Filter( filter_t *p_filter, mtime_t i_date )
420 {
421     filter_sys_t *p_sys = p_filter->p_sys;
422     subpicture_t *p_spu = NULL;
423     subpicture_region_t *p_region = NULL;
424
425     if( !p_sys->b_update || (p_sys->i_update <= 0) )
426             return NULL;
427
428     /* Am I too early?
429     */
430     if( ( ( p_sys->i_last_date + p_sys->i_update ) > i_date ) &&
431         ( p_sys->i_end_date > 0 ) )
432         return NULL; /* we are too early, so wait */
433
434     /* Allocate the subpicture internal data. */
435     p_spu = p_filter->pf_sub_buffer_new( p_filter );
436     if( !p_spu ) return NULL;
437
438     p_spu->b_ephemer = VLC_TRUE;
439     p_spu->b_fade = VLC_TRUE;
440     if( p_filter->p_sys->p_menu->i_style == OSD_MENU_STYLE_CONCAT )
441         p_spu->b_absolute = VLC_TRUE;
442     else
443         p_spu->b_absolute = p_sys->b_absolute;
444     p_spu->i_flags = p_sys->position;
445
446     /* Determine the duration of the subpicture */
447     if( p_sys->i_end_date > 0 )
448     {
449         /* Display the subpicture again. */
450         p_spu->i_stop = p_sys->i_end_date - i_date;
451         if( ( i_date + p_sys->i_update ) >= p_sys->i_end_date )
452             p_sys->b_update = VLC_FALSE;
453     }
454     else
455     {
456         /* There is a new OSD picture to display */
457         p_spu->i_stop = i_date + p_sys->i_timeout;
458         p_sys->i_end_date = p_spu->i_stop;
459     }
460
461     p_sys->i_last_date = i_date;
462     p_spu->i_start = p_sys->i_last_date = i_date;
463
464     /* Send an empty subpicture to clear the display
465      * when OSD menu should be hidden and menu picture is not allocated.
466      */
467     if( !p_filter->p_sys->p_menu->p_state->p_pic ||
468         ( p_filter->p_sys->b_visible == VLC_FALSE ) )
469     {
470         /* Create new spu regions and allocate an empty picture in it. */
471         p_region = create_picture_region( p_filter, p_spu,
472             p_filter->p_sys->p_menu->p_state->i_width,
473             p_filter->p_sys->p_menu->p_state->i_height,
474             NULL );
475
476         /* proper positioning of OSD menu image */
477         p_spu->i_x = p_filter->p_sys->p_menu->p_state->i_x;
478         p_spu->i_y = p_filter->p_sys->p_menu->p_state->i_y;
479         p_spu->p_region = p_region;
480         p_spu->i_alpha = 0xFF; /* Picture is completely non transparent. */
481         return p_spu;
482     }
483
484     /* Create new spu regions
485     */
486     p_region = create_picture_region( p_filter, p_spu,
487         p_filter->p_sys->p_menu->p_state->i_width,
488         p_filter->p_sys->p_menu->p_state->i_height,
489         p_filter->p_sys->p_menu->p_state->p_pic );
490
491     if( !p_region )
492     {
493         p_filter->pf_sub_buffer_del( p_filter, p_spu );
494         return NULL;
495     }
496
497     p_spu->i_width = p_region->fmt.i_visible_width;
498     p_spu->i_height = p_region->fmt.i_visible_height;
499     p_spu->i_alpha = p_filter->p_sys->i_alpha;
500
501     /* proper positioning of OSD menu image */
502     if( p_filter->p_sys->p_menu->i_style == OSD_MENU_STYLE_CONCAT )
503     {
504         p_spu->i_x = p_filter->p_sys->p_menu->p_button->i_x;
505         p_spu->i_y = p_filter->p_sys->p_menu->p_button->i_y;
506     }
507     else
508     {
509         p_spu->i_x = p_filter->p_sys->p_menu->p_state->i_x;
510         p_spu->i_y = p_filter->p_sys->p_menu->p_state->i_y;
511     }
512
513     if( p_filter->p_sys->p_menu->i_style == OSD_MENU_STYLE_CONCAT )
514     {
515         subpicture_region_t *p_region_list = NULL;
516         subpicture_region_t *p_region_tail = NULL;
517         osd_menu_t *p_osd = p_filter->p_sys->p_menu;
518         osd_button_t *p_button = p_osd->p_button;
519
520         /* Construct the entire OSD from individual images */
521         while( p_button != NULL )
522         {
523             osd_button_t *p_tmp = NULL;
524             subpicture_region_t *p_new = NULL;
525
526             p_new = create_picture_region( p_filter, p_spu,
527                     p_button->p_current_state->p_pic->p[Y_PLANE].i_visible_pitch,
528                     p_button->p_current_state->p_pic->p[Y_PLANE].i_visible_lines,
529                     p_button->p_current_state->p_pic );
530             if( !p_new )
531             {
532                 /* Cleanup when bailing out */
533                 subpicture_region_t *p_tmp = NULL;
534                 while( p_region_list )
535                 {
536                     p_tmp = p_region_list->p_next;
537                     p_spu->pf_destroy_region( VLC_OBJECT(p_filter), p_region_list );
538                 };
539                 p_spu->pf_destroy_region( VLC_OBJECT(p_filter), p_region );
540                 p_filter->pf_sub_buffer_del( p_filter, p_spu );
541                 return NULL;
542             }
543
544             p_spu->i_width += p_new->fmt.i_visible_width;
545             p_spu->i_height += p_new->fmt.i_visible_height;
546
547             if( !p_region_list )
548             {
549                 p_region_list = p_new;
550                 p_region_tail = p_new;
551             }
552             else
553             {
554                 p_new->i_x = p_region_tail->fmt.i_visible_width;
555                 p_new->i_y = p_button->i_y;
556                 p_region_tail->p_next = p_new;
557                 p_region_tail = p_new;
558             }
559             p_tmp = p_button->p_next;
560             p_button = p_tmp;
561         };
562         p_region->p_next = p_region_list;
563     }
564 #if 0
565     p_region->p_next = create_text_region( p_filter, p_spu,
566         p_filter->p_sys->p_menu->p_state->i_width, p_filter->p_sys->p_menu->p_state->i_height,
567         p_filter->p_sys->p_menu->p_state->p_visible->psz_action );
568 #endif
569     p_spu->p_region = p_region;
570     return p_spu;
571 }
572
573 static int OSDMenuCallback( vlc_object_t *p_this, char const *psz_var,
574                             vlc_value_t oldval, vlc_value_t newval,
575                             void *p_data )
576 {
577     filter_sys_t *p_sys = (filter_sys_t *) p_data;
578
579     if( !p_sys )
580         return VLC_SUCCESS;
581
582     if( !strncmp( psz_var, OSD_CFG"position", 16) )
583     {
584 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
585         unsigned int i;
586         for( i=0; i < ARRAY_SIZE(pi_pos_values); i++ )
587         {
588             if( newval.i_int == pi_pos_values[i] )
589             {
590                 p_sys->position = newval.i_int % 11;
591                 break;
592             }
593         }
594 #undef ARRAY_SIZE
595     }
596     else if( !strncmp( psz_var, OSD_CFG"x", 9) ||
597              !strncmp( psz_var, OSD_CFG"y", 9))
598     {
599         p_sys->b_absolute = VLC_TRUE;
600         if( (p_sys->i_x < 0) || (p_sys->i_y < 0) )
601         {
602             p_sys->b_absolute = VLC_FALSE;
603             p_sys->p_menu->i_x = 0;
604             p_sys->p_menu->i_y = 0;
605         }
606         else if( (p_sys->i_x >= 0) || (p_sys->i_y >= 0) )
607         {
608             p_sys->p_menu->i_x = p_sys->i_x;
609             p_sys->p_menu->i_y = p_sys->i_y;
610         }
611     }
612     else if( !strncmp( psz_var, OSD_CFG"update", 14) )
613         p_sys->i_update =  (mtime_t)(newval.i_int * 1000);
614     else if( !strncmp( psz_var, OSD_CFG"timeout", 15) )
615         p_sys->i_update = newval.i_int % 1000;
616     else if( !strncmp( psz_var, OSD_CFG"alpha", 13) )
617         p_sys->i_alpha = newval.i_int % 256;
618
619     p_sys->b_update = p_sys->b_visible ? VLC_TRUE : VLC_FALSE;
620     return VLC_SUCCESS;
621 }