]> git.sesse.net Git - vlc/blob - src/video_output/vout_subpictures.c
Remove excess whitespace.
[vlc] / src / video_output / vout_subpictures.c
1 /*****************************************************************************
2  * vout_subpictures.c : subpicture management functions
3  *****************************************************************************
4  * Copyright (C) 2000-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <vlc/vlc.h>
30 #include <vlc_vout.h>
31 #include <vlc_block.h>
32 #include <vlc_filter.h>
33 #include <vlc_osd.h>
34
35 /*****************************************************************************
36  * Local prototypes
37  *****************************************************************************/
38 static void UpdateSPU   ( spu_t *, vlc_object_t * );
39 static int  CropCallback( vlc_object_t *, char const *,
40                           vlc_value_t, vlc_value_t, void * );
41
42 static int spu_vaControlDefault( spu_t *, int, va_list );
43
44 static subpicture_t *sub_new_buffer( filter_t * );
45 static void sub_del_buffer( filter_t *, subpicture_t * );
46 static subpicture_t *spu_new_buffer( filter_t * );
47 static void spu_del_buffer( filter_t *, subpicture_t * );
48 static picture_t *spu_new_video_buffer( filter_t * );
49 static void spu_del_video_buffer( filter_t *, picture_t * );
50
51 static int spu_ParseChain( spu_t * );
52 static void spu_DeleteChain( spu_t * );
53 static int SubFilterCallback( vlc_object_t *, char const *,
54                               vlc_value_t, vlc_value_t, void * );
55
56 struct filter_owner_sys_t
57 {
58     spu_t *p_spu;
59     int i_channel;
60 };
61
62 enum {
63     SCALE_DEFAULT,
64     SCALE_TEXT,
65     SCALE_SIZE
66 };
67 /**
68  * Creates the subpicture unit
69  *
70  * \param p_this the parent object which creates the subpicture unit
71  */
72 spu_t *__spu_Create( vlc_object_t *p_this )
73 {
74     int i_index;
75     spu_t *p_spu = vlc_object_create( p_this, VLC_OBJECT_SPU );
76
77     for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++)
78     {
79         p_spu->p_subpicture[i_index].i_status = FREE_SUBPICTURE;
80     }
81
82     p_spu->p_blend = NULL;
83     p_spu->p_text = NULL;
84     p_spu->p_scale = NULL;
85     p_spu->i_filter = 0;
86     p_spu->pf_control = spu_vaControlDefault;
87
88     /* Register the default subpicture channel */
89     p_spu->i_channel = 2;
90
91     vlc_mutex_init( p_this, &p_spu->subpicture_lock );
92
93     vlc_object_attach( p_spu, p_this );
94
95     return p_spu;
96 }
97
98 /**
99  * Initialise the subpicture unit
100  *
101  * \param p_spu the subpicture unit object
102  */
103 int spu_Init( spu_t *p_spu )
104 {
105     vlc_value_t val;
106
107     /* If the user requested a sub margin, we force the position. */
108     var_Create( p_spu, "sub-margin", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
109     var_Get( p_spu, "sub-margin", &val );
110     p_spu->i_margin = val.i_int;
111
112     var_Create( p_spu, "sub-filter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
113     var_AddCallback( p_spu, "sub-filter", SubFilterCallback, p_spu );
114
115     spu_ParseChain( p_spu );
116
117     return VLC_SUCCESS;
118 }
119
120 int spu_ParseChain( spu_t *p_spu )
121 {
122     char *psz_parser;
123     vlc_value_t val;
124     var_Get( p_spu, "sub-filter", &val );
125     psz_parser = val.psz_string;
126
127     while( psz_parser && *psz_parser )
128     {
129         config_chain_t *p_cfg;
130         char *psz_name;
131
132         psz_parser = config_ChainCreate( &psz_name, &p_cfg, psz_parser );
133
134         msg_Dbg( p_spu, "adding sub-filter: %s", psz_name );
135
136         p_spu->pp_filter[p_spu->i_filter] =
137             vlc_object_create( p_spu, VLC_OBJECT_FILTER );
138         vlc_object_attach( p_spu->pp_filter[p_spu->i_filter], p_spu );
139         p_spu->pp_filter[p_spu->i_filter]->pf_sub_buffer_new = sub_new_buffer;
140         p_spu->pp_filter[p_spu->i_filter]->pf_sub_buffer_del = sub_del_buffer;
141         p_spu->pp_filter[p_spu->i_filter]->p_cfg = p_cfg;
142         p_spu->pp_filter[p_spu->i_filter]->p_module =
143             module_Need( p_spu->pp_filter[p_spu->i_filter],
144                          "sub filter", psz_name, VLC_TRUE );
145         if( p_spu->pp_filter[p_spu->i_filter]->p_module )
146         {
147             filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) );
148             if( p_sys )
149             {
150                 p_spu->pp_filter[p_spu->i_filter]->p_owner = p_sys;
151                 spu_Control( p_spu, SPU_CHANNEL_REGISTER, &p_sys->i_channel );
152                 p_sys->p_spu = p_spu;
153                 p_spu->i_filter++;
154             }
155         }
156         else
157         {
158             msg_Dbg( p_spu, "no sub filter found" );
159             config_ChainDestroy( p_spu->pp_filter[p_spu->i_filter]->p_cfg );
160             vlc_object_detach( p_spu->pp_filter[p_spu->i_filter] );
161             vlc_object_destroy( p_spu->pp_filter[p_spu->i_filter] );
162         }
163
164         if( p_spu->i_filter >= 10 )
165         {
166             msg_Dbg( p_spu, "can't add anymore filters" );
167         }
168
169         free( psz_name );
170     }
171     if( val.psz_string ) free( val.psz_string );
172
173     return VLC_SUCCESS;
174 }
175
176 /**
177  * Destroy the subpicture unit
178  *
179  * \param p_this the parent object which destroys the subpicture unit
180  */
181 void spu_Destroy( spu_t *p_spu )
182 {
183     int i_index;
184
185     vlc_object_detach( p_spu );
186
187     /* Destroy all remaining subpictures */
188     for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++ )
189     {
190         if( p_spu->p_subpicture[i_index].i_status != FREE_SUBPICTURE )
191         {
192             spu_DestroySubpicture( p_spu, &p_spu->p_subpicture[i_index] );
193         }
194     }
195
196     if( p_spu->p_blend )
197     {
198         if( p_spu->p_blend->p_module )
199             module_Unneed( p_spu->p_blend, p_spu->p_blend->p_module );
200
201         vlc_object_detach( p_spu->p_blend );
202         vlc_object_destroy( p_spu->p_blend );
203     }
204
205     if( p_spu->p_text )
206     {
207         if( p_spu->p_text->p_module )
208             module_Unneed( p_spu->p_text, p_spu->p_text->p_module );
209
210         vlc_object_detach( p_spu->p_text );
211         vlc_object_destroy( p_spu->p_text );
212     }
213
214     if( p_spu->p_scale )
215     {
216         if( p_spu->p_scale->p_module )
217             module_Unneed( p_spu->p_scale, p_spu->p_scale->p_module );
218
219         vlc_object_detach( p_spu->p_scale );
220         vlc_object_destroy( p_spu->p_scale );
221     }
222
223     spu_DeleteChain( p_spu );
224
225     vlc_mutex_destroy( &p_spu->subpicture_lock );
226     vlc_object_destroy( p_spu );
227 }
228
229 static void spu_DeleteChain( spu_t *p_spu )
230 {
231     if( p_spu->i_filter )
232     while( p_spu->i_filter )
233     {
234         p_spu->i_filter--;
235         module_Unneed( p_spu->pp_filter[p_spu->i_filter],
236                        p_spu->pp_filter[p_spu->i_filter]->p_module );
237         free( p_spu->pp_filter[p_spu->i_filter]->p_owner );
238         config_ChainDestroy( p_spu->pp_filter[p_spu->i_filter]->p_cfg );
239         vlc_object_detach( p_spu->pp_filter[p_spu->i_filter] );
240         vlc_object_destroy( p_spu->pp_filter[p_spu->i_filter] );
241     }
242 }
243
244 /**
245  * Attach/Detach the SPU from any input
246  *
247  * \param p_this the object in which to destroy the subpicture unit
248  * \param b_attach to select attach or detach
249  */
250 void spu_Attach( spu_t *p_spu, vlc_object_t *p_this, vlc_bool_t b_attach )
251 {
252     vlc_object_t *p_input;
253
254     p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_PARENT );
255     if( !p_input ) return;
256
257     if( b_attach )
258     {
259         UpdateSPU( p_spu, VLC_OBJECT(p_input) );
260         var_AddCallback( p_input, "highlight", CropCallback, p_spu );
261         vlc_object_release( p_input );
262     }
263     else
264     {
265         /* Delete callback */
266         var_DelCallback( p_input, "highlight", CropCallback, p_spu );
267         vlc_object_release( p_input );
268     }
269 }
270
271 /**
272  * Create a subpicture region
273  *
274  * \param p_this vlc_object_t
275  * \param p_fmt the format that this subpicture region should have
276  */
277 static void RegionPictureRelease( picture_t *p_pic )
278 {
279     if( p_pic->p_data_orig ) free( p_pic->p_data_orig );
280 }
281 subpicture_region_t *__spu_CreateRegion( vlc_object_t *p_this,
282                                          video_format_t *p_fmt )
283 {
284     subpicture_region_t *p_region = malloc( sizeof(subpicture_region_t) );
285     if( !p_region ) return NULL;
286
287     memset( p_region, 0, sizeof(subpicture_region_t) );
288     p_region->p_next = NULL;
289     p_region->p_cache = NULL;
290     p_region->fmt = *p_fmt;
291     p_region->psz_text = NULL;
292     p_region->p_style = NULL;
293
294     if( p_fmt->i_chroma == VLC_FOURCC('Y','U','V','P') )
295         p_fmt->p_palette = p_region->fmt.p_palette =
296             malloc( sizeof(video_palette_t) );
297     else p_fmt->p_palette = p_region->fmt.p_palette = NULL;
298
299     p_region->picture.p_data_orig = NULL;
300
301     if( p_fmt->i_chroma == VLC_FOURCC('T','E','X','T') ) return p_region;
302
303     vout_AllocatePicture( p_this, &p_region->picture, p_fmt->i_chroma,
304                           p_fmt->i_width, p_fmt->i_height, p_fmt->i_aspect );
305
306     if( !p_region->picture.i_planes )
307     {
308         free( p_region );
309         if( p_fmt->p_palette ) free( p_fmt->p_palette );
310         return NULL;
311     }
312
313     p_region->picture.pf_release = RegionPictureRelease;
314
315     return p_region;
316 }
317
318 /**
319  * Make a subpicture region from an existing picture_t
320  *
321  * \param p_this vlc_object_t
322  * \param p_fmt the format that this subpicture region should have
323  * \param p_pic a pointer to the picture creating the region (not freed)
324  */
325 subpicture_region_t *__spu_MakeRegion( vlc_object_t *p_this,
326                                        video_format_t *p_fmt,
327                                        picture_t *p_pic )
328 {
329     subpicture_region_t *p_region = malloc( sizeof(subpicture_region_t) );
330     (void)p_this;
331     if( !p_region ) return NULL;
332     memset( p_region, 0, sizeof(subpicture_region_t) );
333     p_region->p_next = 0;
334     p_region->p_cache = 0;
335     p_region->fmt = *p_fmt;
336     p_region->psz_text = 0;
337     p_region->p_style = NULL;
338
339     if( p_fmt->i_chroma == VLC_FOURCC('Y','U','V','P') )
340         p_fmt->p_palette = p_region->fmt.p_palette =
341             malloc( sizeof(video_palette_t) );
342     else p_fmt->p_palette = p_region->fmt.p_palette = NULL;
343
344     memcpy( &p_region->picture, p_pic, sizeof(picture_t) );
345     p_region->picture.pf_release = RegionPictureRelease;
346
347     return p_region;
348 }
349
350 /**
351  * Destroy a subpicture region
352  *
353  * \param p_this vlc_object_t
354  * \param p_region the subpicture region to destroy
355  */
356 void __spu_DestroyRegion( vlc_object_t *p_this, subpicture_region_t *p_region )
357 {
358     if( !p_region ) return;
359     if( p_region->picture.pf_release )
360         p_region->picture.pf_release( &p_region->picture );
361     if( p_region->fmt.p_palette ) free( p_region->fmt.p_palette );
362     if( p_region->p_cache ) __spu_DestroyRegion( p_this, p_region->p_cache );
363
364     if( p_region->psz_text )
365         free( p_region->psz_text );
366     if( p_region->psz_html )
367         free( p_region->psz_html );
368     //free( p_region->p_style ); FIXME --fenrir plugin does not allocate the memory for it. I think it might lead to segfault, video renderer can live longer than the decoder
369     free( p_region );
370 }
371
372 /**
373  * Display a subpicture
374  *
375  * Remove the reservation flag of a subpicture, which will cause it to be
376  * ready for display.
377  * \param p_spu the subpicture unit object
378  * \param p_subpic the subpicture to display
379  */
380 void spu_DisplaySubpicture( spu_t *p_spu, subpicture_t *p_subpic )
381 {
382     /* Check if status is valid */
383     if( p_subpic->i_status != RESERVED_SUBPICTURE )
384     {
385         msg_Err( p_spu, "subpicture %p has invalid status #%d",
386                  p_subpic, p_subpic->i_status );
387     }
388
389     /* Remove reservation flag */
390     p_subpic->i_status = READY_SUBPICTURE;
391
392     if( p_subpic->i_channel == DEFAULT_CHAN )
393     {
394         p_subpic->i_channel = 0xFFFF;
395         spu_Control( p_spu, SPU_CHANNEL_CLEAR, DEFAULT_CHAN );
396         p_subpic->i_channel = DEFAULT_CHAN;
397     }
398 }
399
400 /**
401  * Allocate a subpicture in the spu heap.
402  *
403  * This function create a reserved subpicture in the spu heap.
404  * A null pointer is returned if the function fails. This method provides an
405  * already allocated zone of memory in the spu data fields. It needs locking
406  * since several pictures can be created by several producers threads.
407  * \param p_spu the subpicture unit in which to create the subpicture
408  * \return NULL on error, a reserved subpicture otherwise
409  */
410 subpicture_t *spu_CreateSubpicture( spu_t *p_spu )
411 {
412     int                 i_subpic;                        /* subpicture index */
413     subpicture_t *      p_subpic = NULL;            /* first free subpicture */
414
415     /* Get lock */
416     vlc_mutex_lock( &p_spu->subpicture_lock );
417
418     /*
419      * Look for an empty place
420      */
421     p_subpic = NULL;
422     for( i_subpic = 0; i_subpic < VOUT_MAX_SUBPICTURES; i_subpic++ )
423     {
424         if( p_spu->p_subpicture[i_subpic].i_status == FREE_SUBPICTURE )
425         {
426             /* Subpicture is empty and ready for allocation */
427             p_subpic = &p_spu->p_subpicture[i_subpic];
428             p_spu->p_subpicture[i_subpic].i_status = RESERVED_SUBPICTURE;
429             break;
430         }
431     }
432
433     /* If no free subpicture could be found */
434     if( p_subpic == NULL )
435     {
436         msg_Err( p_spu, "subpicture heap is full" );
437         vlc_mutex_unlock( &p_spu->subpicture_lock );
438         return NULL;
439     }
440
441     /* Copy subpicture information, set some default values */
442     memset( p_subpic, 0, sizeof(subpicture_t) );
443     p_subpic->i_status   = RESERVED_SUBPICTURE;
444     p_subpic->b_absolute = VLC_TRUE;
445     p_subpic->b_pausable = VLC_FALSE;
446     p_subpic->b_fade     = VLC_FALSE;
447     p_subpic->i_alpha    = 0xFF;
448     p_subpic->p_region   = NULL;
449     p_subpic->pf_render  = NULL;
450     p_subpic->pf_destroy = NULL;
451     p_subpic->p_sys      = NULL;
452     vlc_mutex_unlock( &p_spu->subpicture_lock );
453
454     p_subpic->pf_create_region = __spu_CreateRegion;
455     p_subpic->pf_make_region = __spu_MakeRegion;
456     p_subpic->pf_destroy_region = __spu_DestroyRegion;
457
458     return p_subpic;
459 }
460
461 /**
462  * Remove a subpicture from the heap
463  *
464  * This function frees a previously reserved subpicture.
465  * It is meant to be used when the construction of a picture aborted.
466  * This function does not need locking since reserved subpictures are ignored
467  * by the spu.
468  */
469 void spu_DestroySubpicture( spu_t *p_spu, subpicture_t *p_subpic )
470 {
471     /* Get lock */
472     vlc_mutex_lock( &p_spu->subpicture_lock );
473
474     /* There can be race conditions so we need to check the status */
475     if( p_subpic->i_status == FREE_SUBPICTURE )
476     {
477         vlc_mutex_unlock( &p_spu->subpicture_lock );
478         return;
479     }
480
481     /* Check if status is valid */
482     if( ( p_subpic->i_status != RESERVED_SUBPICTURE )
483            && ( p_subpic->i_status != READY_SUBPICTURE ) )
484     {
485         msg_Err( p_spu, "subpicture %p has invalid status %d",
486                          p_subpic, p_subpic->i_status );
487     }
488
489     while( p_subpic->p_region )
490     {
491         subpicture_region_t *p_region = p_subpic->p_region;
492         p_subpic->p_region = p_region->p_next;
493         spu_DestroyRegion( p_spu, p_region );
494     }
495
496     if( p_subpic->pf_destroy )
497     {
498         p_subpic->pf_destroy( p_subpic );
499     }
500
501     p_subpic->i_status = FREE_SUBPICTURE;
502
503     vlc_mutex_unlock( &p_spu->subpicture_lock );
504 }
505
506 /*****************************************************************************
507  * spu_RenderSubpictures: render a subpicture list
508  *****************************************************************************
509  * This function renders all sub picture units in the list.
510  *****************************************************************************/
511 void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
512                             picture_t *p_pic_dst, picture_t *p_pic_src,
513                             subpicture_t *p_subpic,
514                             int i_scale_width_orig, int i_scale_height_orig )
515 {
516     int i_source_video_width  = p_fmt->i_width  * 1000 / i_scale_width_orig;
517     int i_source_video_height = p_fmt->i_height * 1000 / i_scale_height_orig;
518
519     /* Get lock */
520     vlc_mutex_lock( &p_spu->subpicture_lock );
521
522     /* Check i_status again to make sure spudec hasn't destroyed the subpic */
523     while( ( p_subpic != NULL ) && ( p_subpic->i_status != FREE_SUBPICTURE ) )
524     {
525         subpicture_region_t *p_region = p_subpic->p_region;
526         int pi_scale_width[ SCALE_SIZE ];
527         int pi_scale_height[ SCALE_SIZE ];
528         int pi_subpic_x[ SCALE_SIZE ];
529         int k;
530
531         /* If the source video and subtitles stream agree on the size of
532          * the video then disregard all further references to the subtitle
533          * stream.
534          */
535         if( ( i_source_video_height == p_subpic->i_original_picture_height ) &&
536             ( i_source_video_width  == p_subpic->i_original_picture_width ) )
537         {
538             p_subpic->i_original_picture_height = 0;
539             p_subpic->i_original_picture_width = 0;
540         }
541
542         for( k = 0; k < SCALE_SIZE ; k++ )
543             pi_subpic_x[ k ] = p_subpic->i_x;
544
545         /* Load the blending module */
546         if( !p_spu->p_blend && p_region )
547         {
548             p_spu->p_blend = vlc_object_create( p_spu, VLC_OBJECT_FILTER );
549             vlc_object_attach( p_spu->p_blend, p_spu );
550             p_spu->p_blend->fmt_out.video.i_x_offset =
551                 p_spu->p_blend->fmt_out.video.i_y_offset = 0;
552             p_spu->p_blend->fmt_out.video.i_aspect = p_fmt->i_aspect;
553             p_spu->p_blend->fmt_out.video.i_chroma = p_fmt->i_chroma;
554
555             /* The blend module will be loaded when needed with the real input format */
556             memset( &p_spu->p_blend->fmt_in, 0, sizeof(p_spu->p_blend->fmt_in) );
557             p_spu->p_blend->p_module = NULL;
558         }
559
560         /* Load the text rendering module; it is possible there is a
561          * text region somewhere in the subpicture other than the first
562          * element in the region list, so just load it anyway as we'll
563          * probably want it sooner or later. */
564         if( !p_spu->p_text && p_region )
565         {
566             char *psz_modulename = NULL;
567
568             p_spu->p_text = vlc_object_create( p_spu, VLC_OBJECT_FILTER );
569             vlc_object_attach( p_spu->p_text, p_spu );
570
571             p_spu->p_text->fmt_out.video.i_width =
572                 p_spu->p_text->fmt_out.video.i_visible_width =
573                 p_fmt->i_width;
574             p_spu->p_text->fmt_out.video.i_height =
575                 p_spu->p_text->fmt_out.video.i_visible_height =
576                 p_fmt->i_height;
577
578             p_spu->p_text->pf_sub_buffer_new = spu_new_buffer;
579             p_spu->p_text->pf_sub_buffer_del = spu_del_buffer;
580
581             psz_modulename = var_CreateGetString( p_spu, "text-renderer" );
582             if( psz_modulename && *psz_modulename )
583             {
584                 p_spu->p_text->p_module =
585                     module_Need( p_spu->p_text, "text renderer",
586                                  psz_modulename, VLC_TRUE );
587             }
588             if( !p_spu->p_text->p_module )
589             {
590                 p_spu->p_text->p_module =
591                     module_Need( p_spu->p_text, "text renderer", 0, 0 );
592             }
593             if( psz_modulename ) free( psz_modulename );
594         }
595
596         if( p_spu->p_text )
597         {
598             subpicture_region_t *p_text_region = p_subpic->p_region;
599
600             /* Only overwrite the size fields if the region is still in pre-rendered
601              * TEXT format. We have to traverse the subregion list because if more
602              * than one subregion is present, the text region isn't guarentteed to
603              * be the first in the list, and only text regions use this flag.
604              * All of this effort assists with the rescaling of text that has been
605              * rendered at native resolution, rather than video resolution.
606              */
607             while( p_text_region &&
608                    ( p_text_region->fmt.i_chroma != VLC_FOURCC('T','E','X','T') ) )
609             {
610                 p_text_region = p_text_region->p_next;
611             }
612
613             if( p_text_region && 
614                 ( ( p_text_region->i_align & SUBPICTURE_RENDERED ) == 0 ) )
615             {
616                 if( (p_subpic->i_original_picture_height > 0) &&
617                     (p_subpic->i_original_picture_width  > 0) )
618                 {
619                     p_spu->p_text->fmt_out.video.i_width =
620                         p_spu->p_text->fmt_out.video.i_visible_width =
621                         p_subpic->i_original_picture_width;
622                     p_spu->p_text->fmt_out.video.i_height =
623                         p_spu->p_text->fmt_out.video.i_visible_height =
624                         p_subpic->i_original_picture_height;
625                 }
626                 else
627                 {
628                     p_spu->p_text->fmt_out.video.i_width =
629                         p_spu->p_text->fmt_out.video.i_visible_width =
630                         p_fmt->i_width;
631                     p_spu->p_text->fmt_out.video.i_height =
632                         p_spu->p_text->fmt_out.video.i_visible_height =
633                         p_fmt->i_height;
634                 }
635             }
636         }
637
638         pi_scale_width[ SCALE_DEFAULT ]  = i_scale_width_orig;
639         pi_scale_height[ SCALE_DEFAULT ] = i_scale_height_orig;
640
641         if( p_spu->p_text )
642         {
643             pi_scale_width[ SCALE_TEXT ]     = ( p_fmt->i_width * 1000 ) /
644                                           p_spu->p_text->fmt_out.video.i_width;
645             pi_scale_height[ SCALE_TEXT ]    = ( p_fmt->i_height * 1000 ) /
646                                           p_spu->p_text->fmt_out.video.i_height;
647         }
648         /* If we have an explicit size plane to render to, then turn off
649          * the fontsize rescaling.
650          */
651         if( (p_subpic->i_original_picture_height > 0) &&
652             (p_subpic->i_original_picture_width  > 0) )
653         {
654             i_scale_width_orig  = 1000;
655             i_scale_height_orig = 1000;
656         }
657
658         for( k = 0; k < SCALE_SIZE ; k++ )
659         {
660             /* Case of both width and height being specified has been dealt with
661              * above by instead rendering to an output pane of the explicit
662              * dimensions specified - we don't need to scale it.
663              */
664             if( (p_subpic->i_original_picture_height > 0) &&
665                 (p_subpic->i_original_picture_width <= 0) )
666             {
667                 pi_scale_height[ k ] = pi_scale_height[ k ] * i_source_video_height /
668                                  p_subpic->i_original_picture_height;
669                 pi_scale_width[ k ]  = pi_scale_width[ k ]  * i_source_video_height /
670                                  p_subpic->i_original_picture_height;
671             }
672         }
673
674         /* Set default subpicture aspect ratio */
675         if( p_region && p_region->fmt.i_aspect &&
676             ( !p_region->fmt.i_sar_num || !p_region->fmt.i_sar_den ) )
677         {
678             p_region->fmt.i_sar_den = p_region->fmt.i_aspect;
679             p_region->fmt.i_sar_num = VOUT_ASPECT_FACTOR;
680         }
681         if( p_region &&
682             ( !p_region->fmt.i_sar_num || !p_region->fmt.i_sar_den ) )
683         {
684             p_region->fmt.i_sar_den = p_fmt->i_sar_den;
685             p_region->fmt.i_sar_num = p_fmt->i_sar_num;
686         }
687
688         /* Take care of the aspect ratio */
689         if( p_region && 
690             ( ( p_region->fmt.i_sar_num * p_fmt->i_sar_den ) !=
691               ( p_region->fmt.i_sar_den * p_fmt->i_sar_num ) ) )
692         {
693             for( k = 0; k < SCALE_SIZE ; k++ )
694             {
695                 pi_scale_width[ k ] = pi_scale_width[ k ] *
696                     (int64_t)p_region->fmt.i_sar_num * p_fmt->i_sar_den /
697                     p_region->fmt.i_sar_den / p_fmt->i_sar_num;
698                 pi_subpic_x[ k ] = p_subpic->i_x * pi_scale_width[ k ] / 1000;
699             }
700         }
701
702         /* Load the scaling module */
703         if( !p_spu->p_scale &&
704            ((((pi_scale_width[ SCALE_TEXT ]    > 0)     || (pi_scale_height[ SCALE_TEXT ]    > 0)) &&
705              ((pi_scale_width[ SCALE_TEXT ]    != 1000) || (pi_scale_height[ SCALE_TEXT ]    != 1000))) ||
706             (((pi_scale_width[ SCALE_DEFAULT ] > 0)     || (pi_scale_height[ SCALE_DEFAULT ] > 0)) &&
707              ((pi_scale_width[ SCALE_DEFAULT ] != 1000) || (pi_scale_height[ SCALE_DEFAULT ] != 1000)))) )
708         {
709             p_spu->p_scale = vlc_object_create( p_spu, VLC_OBJECT_FILTER );
710             vlc_object_attach( p_spu->p_scale, p_spu );
711             p_spu->p_scale->fmt_out.video.i_chroma =
712                 p_spu->p_scale->fmt_in.video.i_chroma =
713                     VLC_FOURCC('Y','U','V','P');
714             /* FIXME: We'll also be using it for YUVA and RGBA blending ... */
715
716             p_spu->p_scale->fmt_in.video.i_width =
717                 p_spu->p_scale->fmt_in.video.i_height = 32;
718             p_spu->p_scale->fmt_out.video.i_width =
719                 p_spu->p_scale->fmt_out.video.i_height = 16;
720
721             p_spu->p_scale->pf_vout_buffer_new = spu_new_video_buffer;
722             p_spu->p_scale->pf_vout_buffer_del = spu_del_video_buffer;
723             p_spu->p_scale->p_module =
724                 module_Need( p_spu->p_scale, "video filter2", 0, 0 );
725         }
726
727         while( p_region )
728         {
729             video_format_t orig_fmt = p_region->fmt;
730             vlc_bool_t b_rerender_text = VLC_FALSE;
731             int i_fade_alpha = 255;
732             int i_x_offset;
733             int i_y_offset;
734             int i_scale_idx   = SCALE_DEFAULT;
735             int i_inv_scale_x = 1000;
736             int i_inv_scale_y = 1000;
737
738             if( p_region->fmt.i_chroma == VLC_FOURCC('T','E','X','T') )
739             {
740                 if( p_spu->p_text && p_spu->p_text->p_module )
741                 {
742                     vlc_value_t  val;
743
744                     /* Setup 3 variables which can be used to render
745                      * time-dependent text (and effects). The first indicates
746                      * the total amount of time the text will be on screen,
747                      * the second the amount of time it has already been on
748                      * screen (can be a negative value as text is layed out
749                      * before it is rendered) and the third is a feedback
750                      * variable from the renderer - if the renderer sets it
751                      * then this particular text is time-dependent, eg. the
752                      * visual progress bar inside the text in karaoke and the
753                      * text needs to be rendered multiple times in order for
754                      * the effect to work - we therefore need to return the
755                      * region to its original state at the end of the loop,
756                      * instead of leaving it in YUVA or YUVP.
757                      * Any renderer which is unaware of how to render
758                      * time-dependent text can happily ignore the variables
759                      * and render the text the same as usual - it should at
760                      * least show up on screen, but the effect won't change
761                      * the text over time.
762                      */
763
764                     var_Create( p_spu->p_text, "spu-duration", VLC_VAR_TIME );
765                     val.i_time = p_subpic->i_stop - p_subpic->i_start;
766                     var_Set( p_spu->p_text, "spu-duration", val );
767
768                     var_Create( p_spu->p_text, "spu-elapsed", VLC_VAR_TIME );
769                     val.i_time = mdate() - p_subpic->i_start;
770                     var_Set( p_spu->p_text, "spu-elapsed", val );
771
772                     var_Create( p_spu->p_text, "text-rerender", VLC_VAR_BOOL );
773                     var_SetBool( p_spu->p_text, "text-rerender", VLC_FALSE );
774
775                     var_Create( p_spu->p_text, "scale", VLC_VAR_INTEGER );
776                     var_SetInteger( p_spu->p_text, "scale",
777                               __MIN(i_scale_width_orig, i_scale_height_orig) );
778
779                     if( p_spu->p_text->pf_render_html && p_region->psz_html )
780                     {
781                         p_spu->p_text->pf_render_html( p_spu->p_text,
782                                                        p_region, p_region );
783                     }
784                     else if( p_spu->p_text->pf_render_text )
785                     {
786                         p_spu->p_text->pf_render_text( p_spu->p_text,
787                                                        p_region, p_region );
788                     }
789                     b_rerender_text = var_GetBool( p_spu->p_text, "text-rerender" );
790
791                     var_Destroy( p_spu->p_text, "spu-duration" );
792                     var_Destroy( p_spu->p_text, "spu-elapsed" );
793                     var_Destroy( p_spu->p_text, "text-rerender" );
794                     var_Destroy( p_spu->p_text, "scale" );
795                 }
796                 p_region->i_align |= SUBPICTURE_RENDERED;
797             }
798
799             if( p_region->i_align & SUBPICTURE_RENDERED )
800             {
801                 i_scale_idx   = SCALE_TEXT;
802                 i_inv_scale_x = i_scale_width_orig;
803                 i_inv_scale_y = i_scale_height_orig;
804             }
805
806             i_x_offset = (p_region->i_x + pi_subpic_x[ i_scale_idx ]) * i_inv_scale_x / 1000;
807             i_y_offset = (p_region->i_y + p_subpic->i_y) * i_inv_scale_y / 1000;
808
809             /* Force palette if requested */
810             if( p_spu->b_force_palette &&
811                 ( VLC_FOURCC('Y','U','V','P') == p_region->fmt.i_chroma ) )
812             {
813                 memcpy( p_region->fmt.p_palette->palette,
814                         p_spu->palette, 16 );
815             }
816
817             /* Scale SPU if necessary */
818             if( p_region->p_cache && 
819                 ( p_region->fmt.i_chroma != VLC_FOURCC('T','E','X','T') ) )
820             {
821                 if( pi_scale_width[ i_scale_idx ] * p_region->fmt.i_width / 1000 !=
822                     p_region->p_cache->fmt.i_width ||
823                     pi_scale_height[ i_scale_idx ] * p_region->fmt.i_height / 1000 !=
824                     p_region->p_cache->fmt.i_height )
825                 {
826                     p_subpic->pf_destroy_region( VLC_OBJECT(p_spu),
827                                                  p_region->p_cache );
828                     p_region->p_cache = 0;
829                 }
830             }
831
832             if( ( ( pi_scale_width[ i_scale_idx ] != 1000 ) || 
833                   ( pi_scale_height[ i_scale_idx ] != 1000 ) ) &&
834                 ( ( pi_scale_width[ i_scale_idx ] > 0 ) || 
835                   ( pi_scale_height[ i_scale_idx ] > 0 ) ) &&
836                 p_spu->p_scale && !p_region->p_cache &&
837                 ( p_region->fmt.i_chroma != VLC_FOURCC('T','E','X','T') ) )
838             {
839                 picture_t *p_pic;
840
841                 p_spu->p_scale->fmt_in.video = p_region->fmt;
842                 p_spu->p_scale->fmt_out.video = p_region->fmt;
843
844                 p_region->p_cache =
845                     p_subpic->pf_create_region( VLC_OBJECT(p_spu),
846                         &p_spu->p_scale->fmt_out.video );
847                 if( p_spu->p_scale->fmt_out.video.p_palette )
848                     *p_spu->p_scale->fmt_out.video.p_palette =
849                         *p_region->fmt.p_palette;
850                 p_region->p_cache->p_next = p_region->p_next;
851
852                 vout_CopyPicture( p_spu, &p_region->p_cache->picture,
853                                   &p_region->picture );
854
855                 p_spu->p_scale->fmt_out.video.i_width =
856                     p_region->fmt.i_width * pi_scale_width[ i_scale_idx ] / 1000;
857                 p_spu->p_scale->fmt_out.video.i_visible_width =
858                     p_region->fmt.i_visible_width * pi_scale_width[ i_scale_idx ] / 1000;
859                 p_spu->p_scale->fmt_out.video.i_height =
860                     p_region->fmt.i_height * pi_scale_height[ i_scale_idx ] / 1000;
861                 p_spu->p_scale->fmt_out.video.i_visible_height =
862                     p_region->fmt.i_visible_height * pi_scale_height[ i_scale_idx ] / 1000;
863                 p_region->p_cache->fmt = p_spu->p_scale->fmt_out.video;
864                 p_region->p_cache->i_x = p_region->i_x * pi_scale_width[ i_scale_idx ] / 1000;
865                 p_region->p_cache->i_y = p_region->i_y * pi_scale_height[ i_scale_idx ] / 1000;
866                 p_region->p_cache->i_align = p_region->i_align;
867
868                 p_pic = p_spu->p_scale->pf_video_filter(
869                                  p_spu->p_scale, &p_region->p_cache->picture );
870                 if( p_pic )
871                 {
872                     picture_t p_pic_tmp = p_region->p_cache->picture;
873                     p_region->p_cache->picture = *p_pic;
874                     *p_pic = p_pic_tmp;
875                     free( p_pic );
876                 }
877             }
878
879             if( ( ( pi_scale_width[ i_scale_idx ] != 1000 ) ||
880                   ( pi_scale_height[ i_scale_idx ] != 1000 ) ) &&
881                 ( ( pi_scale_width[ i_scale_idx ] > 0 ) ||
882                   ( pi_scale_height[ i_scale_idx ] > 0 ) ) &&
883                 p_spu->p_scale && p_region->p_cache &&
884                 ( p_region->fmt.i_chroma != VLC_FOURCC('T','E','X','T') )  )
885             {
886                 p_region = p_region->p_cache;
887             }
888
889             if( p_region->i_align & SUBPICTURE_ALIGN_BOTTOM )
890             {
891                 i_y_offset = p_fmt->i_height - p_region->fmt.i_height -
892                     (p_subpic->i_y + p_region->i_y) * i_inv_scale_y / 1000;
893             }
894             else if ( !(p_region->i_align & SUBPICTURE_ALIGN_TOP) )
895             {
896                 i_y_offset = p_fmt->i_height / 2 - p_region->fmt.i_height / 2;
897             }
898
899             if( p_region->i_align & SUBPICTURE_ALIGN_RIGHT )
900             {
901                 i_x_offset = p_fmt->i_width - p_region->fmt.i_width -
902                     (pi_subpic_x[ i_scale_idx ] + p_region->i_x)
903                     * i_inv_scale_x / 1000;
904             }
905             else if ( !(p_region->i_align & SUBPICTURE_ALIGN_LEFT) )
906             {
907                 i_x_offset = p_fmt->i_width / 2 - p_region->fmt.i_width / 2;
908             }
909
910             if( p_subpic->b_absolute )
911             {
912                 i_x_offset = (p_region->i_x +
913                     pi_subpic_x[ i_scale_idx ] *
914                                      pi_scale_width[ i_scale_idx ] / 1000)
915                     * i_inv_scale_x / 1000;
916                 i_y_offset = (p_region->i_y +
917                     p_subpic->i_y * pi_scale_height[ i_scale_idx ] / 1000)
918                     * i_inv_scale_y / 1000;
919
920             }
921
922             i_x_offset = __MAX( i_x_offset, 0 );
923             i_y_offset = __MAX( i_y_offset, 0 );
924
925             if( ( p_spu->i_margin != 0 ) &&
926                 ( p_spu->b_force_crop == VLC_FALSE ) )
927             {
928                 int i_diff = 0;
929                 int i_low = (i_y_offset - p_spu->i_margin) * i_inv_scale_y / 1000;
930                 int i_high = i_low + p_region->fmt.i_height;
931
932                 /* crop extra margin to keep within bounds */
933                 if( i_low < 0 )
934                     i_diff = i_low;
935                 if( i_high > (int)p_fmt->i_height )
936                     i_diff = i_high - p_fmt->i_height;
937                 i_y_offset -= ( p_spu->i_margin * i_inv_scale_y / 1000 + i_diff );
938             }
939
940             if( p_subpic->b_fade )
941             {
942                 mtime_t i_fade_start = ( p_subpic->i_stop +
943                                          p_subpic->i_start ) / 2;
944                 mtime_t i_now = mdate();
945                 if( i_now >= i_fade_start && p_subpic->i_stop > i_fade_start )
946                 {
947                     i_fade_alpha = 255 * ( p_subpic->i_stop - i_now ) /
948                                    ( p_subpic->i_stop - i_fade_start );
949                 }
950             }
951
952             if( p_region->fmt.i_chroma != VLC_FOURCC('T','E','X','T') )
953             {
954                 if( p_spu->p_blend->fmt_in.video.i_chroma != p_region->fmt.i_chroma )
955                 {
956                     /* The chroma is not the same, we need to reload the blend module
957                      * XXX to match the old behaviour just test !p_spu->p_blend->fmt_in.video.i_chroma */
958                     if( p_spu->p_blend->p_module )
959                         module_Unneed( p_spu->p_blend, p_spu->p_blend->p_module );
960
961                     p_spu->p_blend->fmt_in.video = p_region->fmt;
962                     p_spu->p_blend->p_module = module_Need( p_spu->p_blend, "video blending", 0, 0 );
963                 }
964                 else
965                 {
966                     p_spu->p_blend->fmt_in.video = p_region->fmt;
967                 }
968
969                 /* Force cropping if requested */
970                 if( p_spu->b_force_crop )
971                 {
972                     video_format_t *p_fmt = &p_spu->p_blend->fmt_in.video;
973                     int i_crop_x = p_spu->i_crop_x * pi_scale_width[ i_scale_idx ] / 1000
974                                         * i_inv_scale_x / 1000;
975                     int i_crop_y = p_spu->i_crop_y * pi_scale_height[ i_scale_idx ] / 1000
976                                         * i_inv_scale_y / 1000;
977                     int i_crop_width = p_spu->i_crop_width * pi_scale_width[ i_scale_idx ] / 1000
978                                         * i_inv_scale_x / 1000;
979                     int i_crop_height = p_spu->i_crop_height * pi_scale_height[ i_scale_idx ] / 1000
980                                         * i_inv_scale_y / 1000;
981
982                     /* Find the intersection */
983                     if( i_crop_x + i_crop_width <= i_x_offset ||
984                         i_x_offset + (int)p_fmt->i_visible_width < i_crop_x ||
985                         i_crop_y + i_crop_height <= i_y_offset ||
986                         i_y_offset + (int)p_fmt->i_visible_height < i_crop_y )
987                     {
988                         /* No intersection */
989                         p_fmt->i_visible_width = p_fmt->i_visible_height = 0;
990                     }
991                     else
992                     {
993                         int i_x, i_y, i_x_end, i_y_end;
994                         i_x = __MAX( i_crop_x, i_x_offset );
995                         i_y = __MAX( i_crop_y, i_y_offset );
996                         i_x_end = __MIN( i_crop_x + i_crop_width,
997                                        i_x_offset + (int)p_fmt->i_visible_width );
998                         i_y_end = __MIN( i_crop_y + i_crop_height,
999                                        i_y_offset + (int)p_fmt->i_visible_height );
1000
1001                         p_fmt->i_x_offset = i_x - i_x_offset;
1002                         p_fmt->i_y_offset = i_y - i_y_offset;
1003                         p_fmt->i_visible_width = i_x_end - i_x;
1004                         p_fmt->i_visible_height = i_y_end - i_y;
1005
1006                         i_x_offset = i_x;
1007                         i_y_offset = i_y;
1008                     }
1009                 }
1010
1011                 i_x_offset = __MAX( i_x_offset, 0 );
1012                 i_y_offset = __MAX( i_y_offset, 0 );
1013
1014                 /* Update the output picture size */
1015                 p_spu->p_blend->fmt_out.video.i_width =
1016                     p_spu->p_blend->fmt_out.video.i_visible_width =
1017                         p_fmt->i_width;
1018                 p_spu->p_blend->fmt_out.video.i_height =
1019                     p_spu->p_blend->fmt_out.video.i_visible_height =
1020                         p_fmt->i_height;
1021
1022                 if( p_spu->p_blend->p_module )
1023                 {
1024                     p_spu->p_blend->pf_video_blend( p_spu->p_blend, p_pic_dst,
1025                         p_pic_src, &p_region->picture, i_x_offset, i_y_offset,
1026                         i_fade_alpha * p_subpic->i_alpha / 255 );
1027                 }
1028                 else
1029                 {
1030                     msg_Err( p_spu, "blending %4.4s to %4.4s failed",
1031                              (char *)&p_spu->p_blend->fmt_out.video.i_chroma,
1032                              (char *)&p_spu->p_blend->fmt_out.video.i_chroma );
1033                 }
1034             }
1035
1036             if( b_rerender_text )
1037             {
1038                 /* Some forms of subtitles need to be re-rendered more than
1039                  * once, eg. karaoke. We therefore restore the region to its
1040                  * pre-rendered state, so the next time through everything is
1041                  * calculated again.
1042                  */
1043                 p_region->picture.pf_release( &p_region->picture );
1044                 memset( &p_region->picture, 0, sizeof( picture_t ) );
1045                 p_region->fmt = orig_fmt;
1046                 p_region->i_align &= ~SUBPICTURE_RENDERED;
1047             }
1048             p_region = p_region->p_next;
1049         }
1050
1051         p_subpic = p_subpic->p_next;
1052     }
1053
1054     vlc_mutex_unlock( &p_spu->subpicture_lock );
1055 }
1056
1057 /*****************************************************************************
1058  * spu_SortSubpictures: find the subpictures to display
1059  *****************************************************************************
1060  * This function parses all subpictures and decides which ones need to be
1061  * displayed. This operation does not need lock, since only READY_SUBPICTURE
1062  * are handled. If no picture has been selected, display_date will depend on
1063  * the subpicture.
1064  * We also check for ephemer DVD subpictures (subpictures that have
1065  * to be removed if a newer one is available), which makes it a lot
1066  * more difficult to guess if a subpicture has to be rendered or not.
1067  *****************************************************************************/
1068 subpicture_t *spu_SortSubpictures( spu_t *p_spu, mtime_t display_date,
1069                                    vlc_bool_t b_paused )
1070 {
1071     int i_index, i_channel;
1072     subpicture_t *p_subpic = NULL;
1073     subpicture_t *p_ephemer;
1074     mtime_t      ephemer_date;
1075
1076     /* Run subpicture filters */
1077     for( i_index = 0; i_index < p_spu->i_filter; i_index++ )
1078     {
1079         subpicture_t *p_subpic_filter;
1080         p_subpic_filter = p_spu->pp_filter[i_index]->
1081             pf_sub_filter( p_spu->pp_filter[i_index], display_date );
1082         if( p_subpic_filter )
1083         {
1084             spu_DisplaySubpicture( p_spu, p_subpic_filter );
1085         }
1086     }
1087
1088     /* We get an easily parsable chained list of subpictures which
1089      * ends with NULL since p_subpic was initialized to NULL. */
1090     for( i_channel = 0; i_channel < p_spu->i_channel; i_channel++ )
1091     {
1092         p_ephemer = 0;
1093         ephemer_date = 0;
1094
1095         for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++ )
1096         {
1097             if( p_spu->p_subpicture[i_index].i_channel != i_channel ||
1098                 p_spu->p_subpicture[i_index].i_status != READY_SUBPICTURE )
1099             {
1100                 continue;
1101             }
1102             if( display_date &&
1103                 display_date < p_spu->p_subpicture[i_index].i_start )
1104             {
1105                 /* Too early, come back next monday */
1106                 continue;
1107             }
1108
1109             if( p_spu->p_subpicture[i_index].i_start > ephemer_date )
1110                 ephemer_date = p_spu->p_subpicture[i_index].i_start;
1111
1112             if( display_date > p_spu->p_subpicture[i_index].i_stop &&
1113                 ( !p_spu->p_subpicture[i_index].b_ephemer ||
1114                   p_spu->p_subpicture[i_index].i_stop >
1115                   p_spu->p_subpicture[i_index].i_start ) &&
1116                 !( p_spu->p_subpicture[i_index].b_pausable &&
1117                    b_paused ) )
1118             {
1119                 /* Too late, destroy the subpic */
1120                 spu_DestroySubpicture( p_spu, &p_spu->p_subpicture[i_index] );
1121                 continue;
1122             }
1123
1124             /* If this is an ephemer subpic, add it to our list */
1125             if( p_spu->p_subpicture[i_index].b_ephemer )
1126             {
1127                 p_spu->p_subpicture[i_index].p_next = p_ephemer;
1128                 p_ephemer = &p_spu->p_subpicture[i_index];
1129
1130                 continue;
1131             }
1132
1133             p_spu->p_subpicture[i_index].p_next = p_subpic;
1134             p_subpic = &p_spu->p_subpicture[i_index];
1135         }
1136
1137         /* If we found ephemer subpictures, check if they have to be
1138          * displayed or destroyed */
1139         while( p_ephemer != NULL )
1140         {
1141             subpicture_t *p_tmp = p_ephemer;
1142             p_ephemer = p_ephemer->p_next;
1143
1144             if( p_tmp->i_start < ephemer_date )
1145             {
1146                 /* Ephemer subpicture has lived too long */
1147                 spu_DestroySubpicture( p_spu, p_tmp );
1148             }
1149             else
1150             {
1151                 /* Ephemer subpicture can still live a bit */
1152                 p_tmp->p_next = p_subpic;
1153                 p_subpic = p_tmp;
1154             }
1155         }
1156     }
1157
1158     return p_subpic;
1159 }
1160
1161 /*****************************************************************************
1162  * SpuClearChannel: clear an spu channel
1163  *****************************************************************************
1164  * This function destroys the subpictures which belong to the spu channel
1165  * corresponding to i_channel_id.
1166  *****************************************************************************/
1167 static void SpuClearChannel( spu_t *p_spu, int i_channel )
1168 {
1169     int          i_subpic;                               /* subpicture index */
1170     subpicture_t *p_subpic = NULL;                  /* first free subpicture */
1171
1172     vlc_mutex_lock( &p_spu->subpicture_lock );
1173
1174     for( i_subpic = 0; i_subpic < VOUT_MAX_SUBPICTURES; i_subpic++ )
1175     {
1176         p_subpic = &p_spu->p_subpicture[i_subpic];
1177         if( p_subpic->i_status == FREE_SUBPICTURE
1178             || ( p_subpic->i_status != RESERVED_SUBPICTURE
1179                  && p_subpic->i_status != READY_SUBPICTURE ) )
1180         {
1181             continue;
1182         }
1183
1184         if( p_subpic->i_channel == i_channel )
1185         {
1186             while( p_subpic->p_region )
1187             {
1188                 subpicture_region_t *p_region = p_subpic->p_region;
1189                 p_subpic->p_region = p_region->p_next;
1190                 spu_DestroyRegion( p_spu, p_region );
1191             }
1192
1193             if( p_subpic->pf_destroy ) p_subpic->pf_destroy( p_subpic );
1194             p_subpic->i_status = FREE_SUBPICTURE;
1195         }
1196     }
1197
1198     vlc_mutex_unlock( &p_spu->subpicture_lock );
1199 }
1200
1201 /*****************************************************************************
1202  * spu_ControlDefault: default methods for the subpicture unit control.
1203  *****************************************************************************/
1204 static int spu_vaControlDefault( spu_t *p_spu, int i_query, va_list args )
1205 {
1206     int *pi, i;
1207
1208     switch( i_query )
1209     {
1210     case SPU_CHANNEL_REGISTER:
1211         pi = (int *)va_arg( args, int * );
1212         if( pi ) *pi = p_spu->i_channel++;
1213         break;
1214
1215     case SPU_CHANNEL_CLEAR:
1216         i = (int)va_arg( args, int );
1217         SpuClearChannel( p_spu, i );
1218         break;
1219
1220     default:
1221         msg_Dbg( p_spu, "control query not supported" );
1222         return VLC_EGENERIC;
1223     }
1224
1225     return VLC_SUCCESS;
1226 }
1227
1228 /*****************************************************************************
1229  * Object variables callbacks
1230  *****************************************************************************/
1231
1232 /*****************************************************************************
1233  * UpdateSPU: update subpicture settings
1234  *****************************************************************************
1235  * This function is called from CropCallback and at initialization time, to
1236  * retrieve crop information from the input.
1237  *****************************************************************************/
1238 static void UpdateSPU( spu_t *p_spu, vlc_object_t *p_object )
1239 {
1240     vlc_value_t val;
1241
1242     p_spu->b_force_palette = VLC_FALSE;
1243     p_spu->b_force_crop = VLC_FALSE;
1244
1245     if( var_Get( p_object, "highlight", &val ) || !val.b_bool ) return;
1246
1247     p_spu->b_force_crop = VLC_TRUE;
1248     var_Get( p_object, "x-start", &val );
1249     p_spu->i_crop_x = val.i_int;
1250     var_Get( p_object, "y-start", &val );
1251     p_spu->i_crop_y = val.i_int;
1252     var_Get( p_object, "x-end", &val );
1253     p_spu->i_crop_width = val.i_int - p_spu->i_crop_x;
1254     var_Get( p_object, "y-end", &val );
1255     p_spu->i_crop_height = val.i_int - p_spu->i_crop_y;
1256
1257     if( var_Get( p_object, "menu-palette", &val ) == VLC_SUCCESS )
1258     {
1259         memcpy( p_spu->palette, val.p_address, 16 );
1260         p_spu->b_force_palette = VLC_TRUE;
1261     }
1262
1263     msg_Dbg( p_object, "crop: %i,%i,%i,%i, palette forced: %i",
1264              p_spu->i_crop_x, p_spu->i_crop_y,
1265              p_spu->i_crop_width, p_spu->i_crop_height,
1266              p_spu->b_force_palette );
1267 }
1268
1269 /*****************************************************************************
1270  * CropCallback: called when the highlight properties are changed
1271  *****************************************************************************
1272  * This callback is called from the input thread when we need cropping
1273  *****************************************************************************/
1274 static int CropCallback( vlc_object_t *p_object, char const *psz_var,
1275                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
1276 {
1277     (void)psz_var; (void)oldval; (void)newval;
1278     UpdateSPU( (spu_t *)p_data, p_object );
1279     return VLC_SUCCESS;
1280 }
1281
1282 /*****************************************************************************
1283  * Buffers allocation callbacks for the filters
1284  *****************************************************************************/
1285 static subpicture_t *sub_new_buffer( filter_t *p_filter )
1286 {
1287     filter_owner_sys_t *p_sys = p_filter->p_owner;
1288     subpicture_t *p_subpicture = spu_CreateSubpicture( p_sys->p_spu );
1289     if( p_subpicture ) p_subpicture->i_channel = p_sys->i_channel;
1290     return p_subpicture;
1291 }
1292
1293 static void sub_del_buffer( filter_t *p_filter, subpicture_t *p_subpic )
1294 {
1295     filter_owner_sys_t *p_sys = p_filter->p_owner;
1296     spu_DestroySubpicture( p_sys->p_spu, p_subpic );
1297 }
1298
1299 static subpicture_t *spu_new_buffer( filter_t *p_filter )
1300 {
1301     subpicture_t *p_subpic = (subpicture_t *)malloc(sizeof(subpicture_t));
1302     (void)p_filter;
1303     if( !p_subpic ) return NULL;
1304     memset( p_subpic, 0, sizeof(subpicture_t) );
1305     p_subpic->b_absolute = VLC_TRUE;
1306
1307     p_subpic->pf_create_region = __spu_CreateRegion;
1308     p_subpic->pf_make_region = __spu_MakeRegion;
1309     p_subpic->pf_destroy_region = __spu_DestroyRegion;
1310
1311     return p_subpic;
1312 }
1313
1314 static void spu_del_buffer( filter_t *p_filter, subpicture_t *p_subpic )
1315 {
1316     while( p_subpic->p_region )
1317     {
1318         subpicture_region_t *p_region = p_subpic->p_region;
1319         p_subpic->p_region = p_region->p_next;
1320         p_subpic->pf_destroy_region( VLC_OBJECT(p_filter), p_region );
1321     }
1322
1323     free( p_subpic );
1324 }
1325
1326 static picture_t *spu_new_video_buffer( filter_t *p_filter )
1327 {
1328     picture_t *p_picture = malloc( sizeof(picture_t) );
1329     if( !p_picture ) return NULL;
1330     if( vout_AllocatePicture( p_filter, p_picture,
1331                               p_filter->fmt_out.video.i_chroma,
1332                               p_filter->fmt_out.video.i_width,
1333                               p_filter->fmt_out.video.i_height,
1334                               p_filter->fmt_out.video.i_aspect )
1335         != VLC_SUCCESS )
1336     {
1337         free( p_picture );
1338         return NULL;
1339     }
1340
1341     p_picture->pf_release = RegionPictureRelease;
1342
1343     return p_picture;
1344 }
1345
1346 static void spu_del_video_buffer( filter_t *p_filter, picture_t *p_pic )
1347 {
1348     (void)p_filter;
1349     if( p_pic && p_pic->p_data_orig ) free( p_pic->p_data_orig );
1350     if( p_pic ) free( p_pic );
1351 }
1352
1353 static int SubFilterCallback( vlc_object_t *p_object, char const *psz_var,
1354                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
1355 {
1356     (void)p_object; (void)oldval; (void)newval;
1357
1358     if( !strcmp( psz_var, "sub-filter" ) )
1359     {
1360         spu_t *p_spu = (spu_t *)p_data;
1361         vlc_mutex_lock( &p_spu->subpicture_lock );
1362         spu_DeleteChain( p_spu );
1363         spu_ParseChain( p_spu );
1364         vlc_mutex_unlock( &p_spu->subpicture_lock );
1365     }
1366     return VLC_SUCCESS;
1367 }