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