]> git.sesse.net Git - vlc/blob - modules/video_filter/logo.c
* modules/video_filter/logo.c: new --logo-position option (by default the logo is...
[vlc] / modules / video_filter / logo.c
1 /*****************************************************************************
2  * logo.c : logo video plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Simon Latapie <garf@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <string.h>
30
31 #include <png.h>
32
33 #include <vlc/vlc.h>
34 #include <vlc/vout.h>
35
36 #include "vlc_filter.h"
37 #include "filter_common.h"
38
39 /*****************************************************************************
40  * Local prototypes
41  *****************************************************************************/
42 static int  Create    ( vlc_object_t * );
43 static void Destroy   ( vlc_object_t * );
44
45 static int  Init      ( vout_thread_t * );
46 static void End       ( vout_thread_t * );
47 static void Render    ( vout_thread_t *, picture_t * );
48
49 static int  SendEvents( vlc_object_t *, char const *,
50                         vlc_value_t, vlc_value_t, void * );
51 static int MouseEvent ( vlc_object_t *, char const *,
52                         vlc_value_t , vlc_value_t , void * );
53 static int Control    ( vout_thread_t *, int, va_list );
54
55 static int  CreateFilter ( vlc_object_t * );
56 static void DestroyFilter( vlc_object_t * );
57
58 /*****************************************************************************
59  * Module descriptor
60  *****************************************************************************/
61 #define FILE_TEXT N_("Logo filename")
62 #define FILE_LONGTEXT N_("Full path of the PNG file to use.")
63 #define POSX_TEXT N_("X coordinate of the logo")
64 #define POSX_LONGTEXT N_("You can move the logo by left-clicking on it." )
65 #define POSY_TEXT N_("Y coordinate of the logo")
66 #define POSY_LONGTEXT N_("You can move the logo by left-clicking on it." )
67 #define TRANS_TEXT N_("Transparency of the logo")
68 #define TRANS_LONGTEXT N_("You can set the logo transparency value here " \
69   "(from 0 for full transparency to 255 for full opacity)." )
70 #define POS_TEXT N_("Logo position")
71 #define POS_LONGTEXT N_( \
72   "You can enforce the logo position on the video " \
73   "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
74   "also use combinations of these values).")
75
76 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
77 static char *ppsz_pos_descriptions[] =
78 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
79   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
80
81 vlc_module_begin();
82     set_description( _("Logo video filter") );
83     set_capability( "video filter", 0 );
84     add_shortcut( "logo" );
85     set_callbacks( Create, Destroy );
86
87     add_file( "logo-file", NULL, NULL, FILE_TEXT, FILE_LONGTEXT, VLC_FALSE );
88     add_integer( "logo-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE );
89     add_integer( "logo-y", -1, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE );
90     add_integer_with_range( "logo-transparency", 255, 0, 255, NULL,
91         TRANS_TEXT, TRANS_LONGTEXT, VLC_FALSE );
92     add_integer( "logo-position", 6, NULL, POS_TEXT, POS_LONGTEXT, VLC_TRUE );
93         change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );
94
95     /* subpicture filter submodule */
96     add_submodule();
97     set_capability( "sub filter", 0 );
98     set_callbacks( CreateFilter, DestroyFilter );
99     set_description( _("Logo sub filter") );
100     add_shortcut( "logo" );
101 vlc_module_end();
102
103 /*****************************************************************************
104  * LoadPNG: loads the PNG logo into memory
105  *****************************************************************************/
106 static picture_t *LoadPNG( vlc_object_t *p_this )
107 {
108     picture_t *p_pic;
109     char *psz_filename;
110     vlc_value_t val;
111     FILE *file;
112     int i, j, i_trans;
113     vlc_bool_t b_alpha = VLC_TRUE;
114
115     png_uint_32 i_width, i_height;
116     int i_color_type, i_interlace_type, i_compression_type, i_filter_type;
117     int i_bit_depth;
118     png_bytep *p_row_pointers;
119     png_structp p_png;
120     png_infop p_info, p_end_info;
121
122     var_Create( p_this, "logo-file", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
123     var_Get( p_this, "logo-file", &val );
124     psz_filename = val.psz_string;
125     if( !psz_filename || !*psz_filename )
126     {
127         msg_Err( p_this, "logo file not specified" );
128         return 0;
129     }
130
131     if( !(file = fopen( psz_filename , "rb" )) )
132     {
133         msg_Err( p_this, "logo file (%s) not found", psz_filename );
134         free( psz_filename );
135         return 0;
136     }
137     free( psz_filename );
138
139     p_png = png_create_read_struct( PNG_LIBPNG_VER_STRING, 0, 0, 0 );
140     p_info = png_create_info_struct( p_png );
141     p_end_info = png_create_info_struct( p_png );
142     png_init_io( p_png, file );
143     png_read_info( p_png, p_info );
144     png_get_IHDR( p_png, p_info, &i_width, &i_height,
145                   &i_bit_depth, &i_color_type, &i_interlace_type,
146                   &i_compression_type, &i_filter_type);
147
148     if( i_color_type == PNG_COLOR_TYPE_PALETTE )
149         png_set_palette_to_rgb( p_png );
150
151     if( i_color_type == PNG_COLOR_TYPE_GRAY ||
152         i_color_type == PNG_COLOR_TYPE_GRAY_ALPHA )
153           png_set_gray_to_rgb( p_png );
154
155     if( png_get_valid( p_png, p_info, PNG_INFO_tRNS ) )
156     {
157         png_set_tRNS_to_alpha( p_png );
158     }
159     else if( !(i_color_type & PNG_COLOR_MASK_ALPHA) )
160     {
161         b_alpha = VLC_FALSE;
162     }
163
164     p_row_pointers = malloc( sizeof(png_bytep) * i_height );
165     for( i = 0; i < (int)i_height; i++ )
166         p_row_pointers[i] = malloc( 4 * ( i_bit_depth + 7 ) / 8 * i_width );
167
168     png_read_image( p_png, p_row_pointers );
169     png_read_end( p_png, p_end_info );
170
171     fclose( file );
172     png_destroy_read_struct( &p_png, &p_info, &p_end_info );
173
174     /* Convert to YUVA */
175     p_pic = malloc( sizeof(picture_t) );
176     if( vout_AllocatePicture( p_this, p_pic, VLC_FOURCC('Y','U','V','A'),
177                               i_width, i_height, VOUT_ASPECT_FACTOR ) !=
178         VLC_SUCCESS )
179     {
180         for( i = 0; i < (int)i_height; i++ ) free( p_row_pointers[i] );
181         free( p_row_pointers );
182         return 0;
183     }
184
185     var_Create(p_this, "logo-transparency", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT);
186     var_Get( p_this, "logo-transparency", &val );
187     i_trans = __MAX( __MIN( val.i_int, 255 ), 0 );
188
189     for( j = 0; j < (int)i_height ; j++ )
190     {
191         uint8_t *p = (uint8_t *)p_row_pointers[j];
192
193         for( i = 0; i < (int)i_width ; i++ )
194         {
195             int i_offset = i + j * p_pic->p[Y_PLANE].i_pitch;
196
197             p_pic->p[Y_PLANE].p_pixels[i_offset] =
198                 (p[0] * 257L + p[1] * 504 + p[2] * 98)/1000 + 16;
199             p_pic->p[U_PLANE].p_pixels[i_offset] =
200                 (p[2] * 439L - p[0] * 148 - p[1] * 291)/1000 + 128;
201             p_pic->p[V_PLANE].p_pixels[i_offset] =
202                 (p[0] * 439L - p[1] * 368 - p[2] * 71)/1000 + 128;
203             p_pic->p[A_PLANE].p_pixels[i_offset] =
204                 b_alpha ? (p[3] * i_trans) / 255 : i_trans;
205
206             p += (b_alpha ? 4 : 3);
207         }
208     }
209
210     for( i = 0; i < (int)i_height; i++ ) free( p_row_pointers[i] );
211     free( p_row_pointers );
212     return p_pic;
213 }
214
215 /*****************************************************************************
216  * vout_sys_t: logo video output method descriptor
217  *****************************************************************************
218  * This structure is part of the video output thread descriptor.
219  * It describes the Invert specific properties of an output thread.
220  *****************************************************************************/
221 struct vout_sys_t
222 {
223     vout_thread_t *p_vout;
224
225     filter_t *p_blend;
226     picture_t *p_pic;
227
228     int i_width, i_height;
229     int posx, posy;
230 };
231
232 /*****************************************************************************
233  * Create: allocates logo video thread output method
234  *****************************************************************************/
235 static int Create( vlc_object_t *p_this )
236 {
237     vout_thread_t *p_vout = (vout_thread_t *)p_this;
238     vout_sys_t *p_sys;
239     vlc_value_t val;
240
241     /* Allocate structure */
242     p_sys = p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
243     if( p_sys == NULL )
244     {
245         msg_Err( p_vout, "out of memory" );
246         return VLC_ENOMEM;
247     }
248
249     p_vout->pf_init = Init;
250     p_vout->pf_end = End;
251     p_vout->pf_manage = NULL;
252     p_vout->pf_render = Render;
253     p_vout->pf_display = NULL;
254     p_vout->pf_control = Control;
255
256     var_Create( p_this, "logo-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
257     var_Get( p_this, "logo-x", &val );
258     p_sys->posx = val.i_int >= 0 ? val.i_int : 0;
259     var_Create( p_this, "logo-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
260     var_Get( p_this, "logo-y", &val );
261     p_sys->posy = val.i_int >= 0 ? val.i_int : 0;
262
263     p_sys->p_pic = LoadPNG( p_this );
264     if( !p_sys->p_pic )
265     {
266         free( p_sys );
267         return VLC_EGENERIC;
268     }
269
270     p_sys->i_width = p_sys->p_pic->p[Y_PLANE].i_visible_pitch;
271     p_sys->i_height = p_sys->p_pic->p[Y_PLANE].i_visible_lines;
272
273     return VLC_SUCCESS;
274 }
275
276 /*****************************************************************************
277  * Init: initialize logo video thread output method
278  *****************************************************************************/
279 static int Init( vout_thread_t *p_vout )
280 {
281     vout_sys_t *p_sys = p_vout->p_sys;
282     picture_t *p_pic;
283     int i_index;
284
285     I_OUTPUTPICTURES = 0;
286
287     /* Initialize the output structure */
288     p_vout->output.i_chroma = p_vout->render.i_chroma;
289     p_vout->output.i_width  = p_vout->render.i_width;
290     p_vout->output.i_height = p_vout->render.i_height;
291     p_vout->output.i_aspect = p_vout->render.i_aspect;
292
293     /* Load the video blending filter */
294     p_sys->p_blend = vlc_object_create( p_vout, sizeof(filter_t) );
295     vlc_object_attach( p_sys->p_blend, p_vout );
296     p_sys->p_blend->fmt_out.video.i_x_offset =
297         p_sys->p_blend->fmt_out.video.i_y_offset = 0;
298     p_sys->p_blend->fmt_in.video.i_x_offset =
299         p_sys->p_blend->fmt_in.video.i_y_offset = 0;
300     p_sys->p_blend->fmt_out.video.i_aspect = p_vout->render.i_aspect;
301     p_sys->p_blend->fmt_out.video.i_chroma = p_vout->output.i_chroma;
302     p_sys->p_blend->fmt_in.video.i_chroma = VLC_FOURCC('Y','U','V','A');
303     p_sys->p_blend->fmt_in.video.i_aspect = VOUT_ASPECT_FACTOR;
304     p_sys->p_blend->fmt_in.video.i_width =
305         p_sys->p_blend->fmt_in.video.i_visible_width =
306             p_sys->p_pic->p[Y_PLANE].i_visible_pitch;
307     p_sys->p_blend->fmt_in.video.i_height =
308         p_sys->p_blend->fmt_in.video.i_visible_height =
309             p_sys->p_pic->p[Y_PLANE].i_visible_lines;
310     p_sys->p_blend->fmt_out.video.i_width =
311         p_sys->p_blend->fmt_out.video.i_visible_width =
312            p_vout->output.i_width;
313     p_sys->p_blend->fmt_out.video.i_height =
314         p_sys->p_blend->fmt_out.video.i_visible_height =
315             p_vout->output.i_height;
316
317     p_sys->p_blend->p_module =
318         module_Need( p_sys->p_blend, "video blending", 0, 0 );
319     if( !p_sys->p_blend->p_module )
320     {
321         msg_Err( p_vout, "can't open blending filter, aborting" );
322         vlc_object_detach( p_sys->p_blend );
323         vlc_object_destroy( p_sys->p_blend );
324         return VLC_EGENERIC;
325     }
326
327     /* Try to open the real video output */
328     msg_Dbg( p_vout, "spawning the real video output" );
329
330     p_sys->p_vout =
331         vout_Create( p_vout, p_vout->render.i_width, p_vout->render.i_height,
332                      p_vout->render.i_chroma, p_vout->render.i_aspect );
333
334     /* Everything failed */
335     if( p_sys->p_vout == NULL )
336     {
337         msg_Err( p_vout, "can't open vout, aborting" );
338         return VLC_EGENERIC;
339     }
340
341     var_AddCallback( p_sys->p_vout, "mouse-x", MouseEvent, p_vout);
342     var_AddCallback( p_sys->p_vout, "mouse-y", MouseEvent, p_vout);
343
344     ALLOCATE_DIRECTBUFFERS( VOUT_MAX_PICTURES );
345     ADD_CALLBACKS( p_sys->p_vout, SendEvents );
346     ADD_PARENT_CALLBACKS( SendEventsToChild );
347
348     return VLC_SUCCESS;
349 }
350
351 /*****************************************************************************
352  * End: terminate logo video thread output method
353  *****************************************************************************/
354 static void End( vout_thread_t *p_vout )
355 {
356     vout_sys_t *p_sys = p_vout->p_sys;
357     int i_index;
358
359     /* Free the fake output buffers we allocated */
360     for( i_index = I_OUTPUTPICTURES ; i_index ; )
361     {
362         i_index--;
363         free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig );
364     }
365
366     var_DelCallback( p_sys->p_vout, "mouse-x", MouseEvent, p_vout);
367     var_DelCallback( p_sys->p_vout, "mouse-y", MouseEvent, p_vout);
368
369     if( p_sys->p_vout )
370     {
371         DEL_CALLBACKS( p_sys->p_vout, SendEvents );
372         vlc_object_detach( p_sys->p_vout );
373         vout_Destroy( p_sys->p_vout );
374     }
375
376     if( p_sys->p_blend->p_module )
377         module_Unneed( p_sys->p_blend, p_sys->p_blend->p_module );
378     vlc_object_detach( p_sys->p_blend );
379     vlc_object_destroy( p_sys->p_blend );
380 }
381
382 /*****************************************************************************
383  * Destroy: destroy logo video thread output method
384  *****************************************************************************/
385 static void Destroy( vlc_object_t *p_this )
386 {
387     vout_thread_t *p_vout = (vout_thread_t *)p_this;
388     vout_sys_t *p_sys = p_vout->p_sys;
389
390     DEL_PARENT_CALLBACKS( SendEventsToChild );
391
392     if( p_sys->p_pic && p_sys->p_pic->p_data_orig )
393         free( p_sys->p_pic->p_data_orig );
394     if( p_sys->p_pic ) free( p_sys->p_pic );
395
396     free( p_sys );
397 }
398
399 /*****************************************************************************
400  * Render: render the logo onto the video
401  *****************************************************************************/
402 static void Render( vout_thread_t *p_vout, picture_t *p_pic )
403 {
404     vout_sys_t *p_sys = p_vout->p_sys;
405     picture_t *p_outpic;
406
407     /* This is a new frame. Get a structure from the video_output. */
408     while( !(p_outpic = vout_CreatePicture( p_sys->p_vout, 0, 0, 0 )) )
409     {
410         if( p_vout->b_die || p_vout->b_error ) return;
411         msleep( VOUT_OUTMEM_SLEEP );
412     }
413
414     vout_CopyPicture( p_vout, p_outpic, p_pic );
415     vout_DatePicture( p_sys->p_vout, p_outpic, p_pic->date );
416
417     p_sys->p_blend->pf_video_blend( p_sys->p_blend, p_outpic, p_outpic,
418                                     p_sys->p_pic, p_sys->posx, p_sys->posy );
419
420     vout_DisplayPicture( p_sys->p_vout, p_outpic );
421 }
422
423 /*****************************************************************************
424  * SendEvents: forward mouse and keyboard events to the parent p_vout
425  *****************************************************************************/
426 static int SendEvents( vlc_object_t *p_this, char const *psz_var,
427                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
428 {
429     var_Set( (vlc_object_t *)p_data, psz_var, newval );
430     return VLC_SUCCESS;
431 }
432
433 /*****************************************************************************
434  * MouseEvent: callback for mouse events
435  *****************************************************************************/
436 static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
437                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
438 {
439     vout_thread_t *p_vout = (vout_thread_t*)p_data;
440     vout_sys_t *p_sys = p_vout->p_sys;
441     vlc_value_t valb;
442     int i_delta;
443
444     var_Get( p_vout->p_sys->p_vout, "mouse-button-down", &valb );
445
446     i_delta = newval.i_int - oldval.i_int;
447
448     if( (valb.i_int & 0x1) == 0 )
449     {
450         return VLC_SUCCESS;
451     }
452
453     if( psz_var[6] == 'x' )
454     {
455         vlc_value_t valy;
456         var_Get( p_vout->p_sys->p_vout, "mouse-y", &valy );
457         if( newval.i_int >= (int)p_sys->posx &&
458             valy.i_int >= (int)p_sys->posy &&
459             newval.i_int <= (int)(p_sys->posx + p_sys->i_width) &&
460             valy.i_int <= (int)(p_sys->posy + p_sys->i_height) )
461         {
462             p_sys->posx = __MIN( __MAX( p_sys->posx + i_delta, 0 ),
463                           p_vout->output.i_width - p_sys->i_width );
464         }
465     }
466     else if( psz_var[6] == 'y' )
467     {
468         vlc_value_t valx;
469         var_Get( p_vout->p_sys->p_vout, "mouse-x", &valx );
470         if( valx.i_int >= (int)p_sys->posx &&
471             newval.i_int >= (int)p_sys->posy &&
472             valx.i_int <= (int)(p_sys->posx + p_sys->i_width) &&
473             newval.i_int <= (int)(p_sys->posy + p_sys->i_height) )
474         {
475             p_sys->posy = __MIN( __MAX( p_sys->posy + i_delta, 0 ),
476                           p_vout->output.i_height - p_sys->i_height );
477         }
478     }
479
480     return VLC_SUCCESS;
481 }
482
483 /*****************************************************************************
484  * Control: control facility for the vout (forwards to child vout)
485  *****************************************************************************/
486 static int Control( vout_thread_t *p_vout, int i_query, va_list args )
487 {
488     return vout_vaControl( p_vout->p_sys->p_vout, i_query, args );
489 }
490
491 /*****************************************************************************
492  * SendEventsToChild: forward events to the child/children vout
493  *****************************************************************************/
494 static int SendEventsToChild( vlc_object_t *p_this, char const *psz_var,
495                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
496 {
497     vout_thread_t *p_vout = (vout_thread_t *)p_this;
498     var_Set( p_vout->p_sys->p_vout, psz_var, newval );
499     return VLC_SUCCESS;
500 }
501
502 /*****************************************************************************
503  * filter_sys_t: logo filter descriptor
504  *****************************************************************************/
505 struct filter_sys_t
506 {
507     picture_t *p_pic;
508
509     int i_width, i_height;
510     int pos, posx, posy;
511
512     vlc_bool_t b_absolute;
513
514     mtime_t i_last_date;
515 };
516
517 static subpicture_t *Filter( filter_t *, mtime_t );
518
519 /*****************************************************************************
520  * CreateFilter: allocates logo video filter
521  *****************************************************************************/
522 static int CreateFilter( vlc_object_t *p_this )
523 {
524     filter_t *p_filter = (filter_t *)p_this;
525     filter_sys_t *p_sys;
526     vlc_value_t val;
527
528     /* Allocate structure */
529     p_sys = p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
530     if( p_sys == NULL )
531     {
532         msg_Err( p_filter, "out of memory" );
533         return VLC_ENOMEM;
534     }
535
536     var_Create( p_this, "logo-position", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
537     var_Get( p_this, "logo-position", &val );
538     p_sys->pos = val.i_int;
539     var_Create( p_this, "logo-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
540     var_Get( p_this, "logo-x", &val );
541     p_sys->posx = val.i_int;
542     var_Create( p_this, "logo-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
543     var_Get( p_this, "logo-y", &val );
544     p_sys->posy = val.i_int;
545
546     p_sys->b_absolute = VLC_TRUE;
547     if( p_sys->posx < 0 || p_sys->posy < 0 )
548     {
549         p_sys->b_absolute = VLC_FALSE;
550         p_sys->posx = 0; p_sys->posy = 0;
551     }
552
553     p_sys->p_pic = LoadPNG( p_this );
554     if( !p_sys->p_pic )
555     {
556         free( p_sys );
557         return VLC_EGENERIC;
558     }
559
560     p_sys->i_width = p_sys->p_pic->p[Y_PLANE].i_visible_pitch;
561     p_sys->i_height = p_sys->p_pic->p[Y_PLANE].i_visible_lines;
562     p_sys->i_last_date = 0;
563
564     /* Misc init */
565     p_filter->pf_sub_filter = Filter;
566
567     return VLC_SUCCESS;
568 }
569
570 /*****************************************************************************
571  * DestroyFilter: destroy logo video filter
572  *****************************************************************************/
573 static void DestroyFilter( vlc_object_t *p_this )
574 {
575     filter_t *p_filter = (filter_t *)p_this;
576     filter_sys_t *p_sys = p_filter->p_sys;
577
578     if( p_sys->p_pic && p_sys->p_pic->p_data_orig )
579         free( p_sys->p_pic->p_data_orig );
580     if( p_sys->p_pic ) free( p_sys->p_pic );
581
582     free( p_sys );
583 }
584
585 /****************************************************************************
586  * Filter: the whole thing
587  ****************************************************************************
588  * This function outputs subpictures at regular time intervals.
589  ****************************************************************************/
590 static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
591 {
592     filter_sys_t *p_sys = p_filter->p_sys;
593     subpicture_t *p_spu;
594     subpicture_region_t *p_region;
595     video_format_t fmt;
596
597     if( p_sys->i_last_date && p_sys->i_last_date + 5000000 > date ) return 0;
598
599     /* Allocate the subpicture internal data. */
600     p_spu = p_filter->pf_sub_buffer_new( p_filter );
601     if( !p_spu ) return NULL;
602
603     /* Create new SPU region */
604     memset( &fmt, 0, sizeof(video_format_t) );
605     fmt.i_chroma = VLC_FOURCC('Y','U','V','A');
606     fmt.i_aspect = VOUT_ASPECT_FACTOR;
607     fmt.i_width = fmt.i_visible_width = p_sys->i_width;
608     fmt.i_height = fmt.i_visible_height = p_sys->i_height;
609     fmt.i_x_offset = fmt.i_y_offset = 0;
610     p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
611     if( !p_region )
612     {
613         msg_Err( p_filter, "cannot allocate SPU region" );
614         p_filter->pf_sub_buffer_del( p_filter, p_spu );
615         return NULL;
616     }
617
618     vout_CopyPicture( p_filter, &p_region->picture, p_sys->p_pic );
619     p_region->i_x = 0;
620     p_region->i_y = 0;
621     p_spu->i_x = p_sys->posx;
622     p_spu->i_y = p_sys->posy;
623     p_spu->i_flags = p_sys->pos;
624     p_spu->b_absolute = p_sys->b_absolute;
625
626     p_spu->p_region = p_region;
627
628     p_spu->i_start = p_sys->i_last_date = date;
629     p_spu->i_stop = 0;
630     p_spu->b_ephemer = VLC_TRUE;
631
632     return p_spu;
633 }