]> git.sesse.net Git - vlc/blob - src/video_output/video_output.c
Partially fix data leaks when vout creation fails.
[vlc] / src / video_output / video_output.c
1 /*****************************************************************************
2  * video_output.c : video output thread
3  *
4  * This module describes the programming interface for video output threads.
5  * It includes functions allowing to open a new thread, send pictures to a
6  * thread, and destroy a previously oppened video output thread.
7  *****************************************************************************
8  * Copyright (C) 2000-2007 the VideoLAN team
9  * $Id$
10  *
11  * Authors: Vincent Seguin <seguin@via.ecp.fr>
12  *          Gildas Bazin <gbazin@videolan.org>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28
29 /*****************************************************************************
30  * Preamble
31  *****************************************************************************/
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37
38 #include <stdlib.h>                                                /* free() */
39 #include <string.h>
40
41
42 #ifdef HAVE_SYS_TIMES_H
43 #   include <sys/times.h>
44 #endif
45
46 #include <vlc_vout.h>
47
48 #include <vlc_filter.h>
49 #include <vlc_osd.h>
50
51 #if defined( __APPLE__ )
52 /* Include darwin_specific.h here if needed */
53 #endif
54
55 /** FIXME This is quite ugly but needed while we don't have counters
56  * helpers */
57 #include "input/input_internal.h"
58
59 #include "modules/modules.h"
60
61 /*****************************************************************************
62  * Local prototypes
63  *****************************************************************************/
64 static int      InitThread        ( vout_thread_t * );
65 static void     RunThread         ( vout_thread_t * );
66 static void     ErrorThread       ( vout_thread_t * );
67 static void     EndThread         ( vout_thread_t * );
68
69 static void     AspectRatio       ( int, int *, int * );
70 static int      BinaryLog         ( uint32_t );
71 static void     MaskToShift       ( int *, int *, uint32_t );
72
73 static void     vout_Destructor   ( vlc_object_t * p_this );
74
75 /* Object variables callbacks */
76 static int DeinterlaceCallback( vlc_object_t *, char const *,
77                                 vlc_value_t, vlc_value_t, void * );
78 static int FilterCallback( vlc_object_t *, char const *,
79                            vlc_value_t, vlc_value_t, void * );
80 static int VideoFilter2Callback( vlc_object_t *, char const *,
81                                  vlc_value_t, vlc_value_t, void * );
82
83 /* From vout_intf.c */
84 int vout_Snapshot( vout_thread_t *, picture_t * );
85
86 /* Display media title in OSD */
87 static void DisplayTitleOnOSD( vout_thread_t *p_vout );
88
89 /*****************************************************************************
90  * Video Filter2 functions
91  *****************************************************************************/
92 static picture_t *video_new_buffer_filter( filter_t *p_filter )
93 {
94     picture_t *p_picture;
95     vout_thread_t *p_vout = (vout_thread_t*)p_filter->p_owner;
96
97     p_picture = vout_CreatePicture( p_vout, 0, 0, 0 );
98
99     return p_picture;
100 }
101
102 static void video_del_buffer_filter( filter_t *p_filter, picture_t *p_pic )
103 {
104     vout_DestroyPicture( (vout_thread_t*)p_filter->p_owner, p_pic );
105 }
106
107 static int video_filter_buffer_allocation_init( filter_t *p_filter, void *p_data )
108 {
109     p_filter->pf_vout_buffer_new = video_new_buffer_filter;
110     p_filter->pf_vout_buffer_del = video_del_buffer_filter;
111     p_filter->p_owner = p_data; /* p_vout */
112     return VLC_SUCCESS;
113 }
114
115 /*****************************************************************************
116  * vout_Request: find a video output thread, create one, or destroy one.
117  *****************************************************************************
118  * This function looks for a video output thread matching the current
119  * properties. If not found, it spawns a new one.
120  *****************************************************************************/
121 vout_thread_t *__vout_Request( vlc_object_t *p_this, vout_thread_t *p_vout,
122                                video_format_t *p_fmt )
123 {
124     if( !p_fmt )
125     {
126         /* Reattach video output to the instance before bailing out */
127         if( p_vout )
128         {
129             spu_Attach( p_vout->p_spu, p_this, false );
130             vlc_object_detach( p_vout );
131             vlc_object_attach( p_vout, p_this->p_libvlc );
132         }
133         return NULL;
134     }
135
136     /* If a video output was provided, lock it, otherwise look for one. */
137     if( p_vout )
138     {
139         vlc_object_yield( p_vout );
140     }
141     else
142     {
143         p_vout = vlc_object_find( p_this, VLC_OBJECT_VOUT, FIND_CHILD );
144
145         if( !p_vout )
146         {
147             p_vout = vlc_object_find( p_this->p_libvlc,
148                                       VLC_OBJECT_VOUT, FIND_CHILD );
149             /* only first children of p_input for unused vout */
150             if( p_vout && p_vout->p_parent != VLC_OBJECT(p_this->p_libvlc) )
151             {
152                 vlc_object_release( p_vout );
153                 p_vout = NULL;
154             }
155             if( p_vout )
156                 vlc_object_detach( p_vout );    /* Remove it from the GC */
157         }
158     }
159
160     /* If we now have a video output, check it has the right properties */
161     if( p_vout )
162     {
163         char *psz_filter_chain;
164         vlc_value_t val;
165
166         /* We don't directly check for the "vout-filter" variable for obvious
167          * performance reasons. */
168         if( p_vout->b_filter_change )
169         {
170             var_Get( p_vout, "vout-filter", &val );
171             psz_filter_chain = val.psz_string;
172
173             if( psz_filter_chain && !*psz_filter_chain )
174             {
175                 free( psz_filter_chain );
176                 psz_filter_chain = NULL;
177             }
178             if( p_vout->psz_filter_chain && !*p_vout->psz_filter_chain )
179             {
180                 free( p_vout->psz_filter_chain );
181                 p_vout->psz_filter_chain = NULL;
182             }
183
184             if( !psz_filter_chain && !p_vout->psz_filter_chain )
185             {
186                 p_vout->b_filter_change = false;
187             }
188
189             free( psz_filter_chain );
190         }
191
192         if( ( p_vout->fmt_render.i_width != p_fmt->i_width ) ||
193             ( p_vout->fmt_render.i_height != p_fmt->i_height ) ||
194             ( p_vout->fmt_render.i_aspect != p_fmt->i_aspect ) ||
195             p_vout->b_filter_change )
196         {
197             /* We are not interested in this format, close this vout */
198             vlc_object_release( p_vout );
199             vlc_object_release( p_vout );
200             p_vout = NULL;
201         }
202         else
203         {
204             /* This video output is cool! Hijack it. */
205             spu_Attach( p_vout->p_spu, p_this, true );
206             vlc_object_attach( p_vout, p_this );
207             if( p_vout->b_title_show )
208                 DisplayTitleOnOSD( p_vout );
209             vlc_object_release( p_vout );
210         }
211     }
212
213     if( !p_vout )
214     {
215         msg_Dbg( p_this, "no usable vout present, spawning one" );
216
217         p_vout = vout_Create( p_this, p_fmt );
218     }
219
220     return p_vout;
221 }
222
223 /*****************************************************************************
224  * vout_Create: creates a new video output thread
225  *****************************************************************************
226  * This function creates a new video output thread, and returns a pointer
227  * to its description. On error, it returns NULL.
228  *****************************************************************************/
229 vout_thread_t * __vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
230 {
231     vout_thread_t  * p_vout;                            /* thread descriptor */
232     input_thread_t * p_input_thread;
233     int              i_index;                               /* loop variable */
234     vlc_value_t      val, text;
235
236     unsigned int i_width = p_fmt->i_width;
237     unsigned int i_height = p_fmt->i_height;
238     vlc_fourcc_t i_chroma = p_fmt->i_chroma;
239     unsigned int i_aspect = p_fmt->i_aspect;
240
241     config_chain_t *p_cfg;
242     char *psz_parser;
243     char *psz_name;
244
245     /* Allocate descriptor */
246     static const char typename[] = "video output";
247     p_vout = vlc_custom_create( p_parent, sizeof( *p_vout ), VLC_OBJECT_VOUT,
248                                 typename );
249     if( p_vout == NULL )
250         return NULL;
251
252     /* Initialize pictures - translation tables and functions
253      * will be initialized later in InitThread */
254     for( i_index = 0; i_index < 2 * VOUT_MAX_PICTURES + 1; i_index++)
255     {
256         p_vout->p_picture[i_index].pf_lock = NULL;
257         p_vout->p_picture[i_index].pf_unlock = NULL;
258         p_vout->p_picture[i_index].i_status = FREE_PICTURE;
259         p_vout->p_picture[i_index].i_type   = EMPTY_PICTURE;
260         p_vout->p_picture[i_index].b_slow   = 0;
261     }
262
263     /* No images in the heap */
264     p_vout->i_heap_size = 0;
265
266     /* Initialize the rendering heap */
267     I_RENDERPICTURES = 0;
268
269     vlc_ureduce( &p_fmt->i_sar_num, &p_fmt->i_sar_den,
270                  p_fmt->i_sar_num, p_fmt->i_sar_den, 50000 );
271     p_vout->fmt_render        = *p_fmt;   /* FIXME palette */
272     p_vout->fmt_in            = *p_fmt;   /* FIXME palette */
273
274     p_vout->render.i_width    = i_width;
275     p_vout->render.i_height   = i_height;
276     p_vout->render.i_chroma   = i_chroma;
277     p_vout->render.i_aspect   = i_aspect;
278
279     p_vout->render.i_rmask    = 0;
280     p_vout->render.i_gmask    = 0;
281     p_vout->render.i_bmask    = 0;
282
283     p_vout->render.i_last_used_pic = -1;
284     p_vout->render.b_allow_modify_pics = 1;
285
286     /* Zero the output heap */
287     I_OUTPUTPICTURES = 0;
288     p_vout->output.i_width    = 0;
289     p_vout->output.i_height   = 0;
290     p_vout->output.i_chroma   = 0;
291     p_vout->output.i_aspect   = 0;
292
293     p_vout->output.i_rmask    = 0;
294     p_vout->output.i_gmask    = 0;
295     p_vout->output.i_bmask    = 0;
296
297     /* Initialize misc stuff */
298     p_vout->i_changes    = 0;
299     p_vout->f_gamma      = 0;
300     p_vout->b_grayscale  = 0;
301     p_vout->b_info       = 0;
302     p_vout->b_interface  = 0;
303     p_vout->b_scale      = 1;
304     p_vout->b_fullscreen = 0;
305     p_vout->i_alignment  = 0;
306     p_vout->render_time  = 10;
307     p_vout->c_fps_samples = 0;
308     p_vout->b_filter_change = 0;
309     p_vout->pf_control = NULL;
310     p_vout->p_window = NULL;
311     p_vout->i_par_num = p_vout->i_par_den = 1;
312
313     /* Initialize locks */
314     vlc_mutex_init( &p_vout->picture_lock );
315     vlc_mutex_init( &p_vout->change_lock );
316     vlc_mutex_init( &p_vout->vfilter_lock );
317
318     /* Mouse coordinates */
319     var_Create( p_vout, "mouse-x", VLC_VAR_INTEGER );
320     var_Create( p_vout, "mouse-y", VLC_VAR_INTEGER );
321     var_Create( p_vout, "mouse-button-down", VLC_VAR_INTEGER );
322     var_Create( p_vout, "mouse-moved", VLC_VAR_BOOL );
323     var_Create( p_vout, "mouse-clicked", VLC_VAR_INTEGER );
324
325     /* Initialize subpicture unit */
326     p_vout->p_spu = spu_Create( p_vout );
327     spu_Attach( p_vout->p_spu, p_parent, true );
328
329     /* Attach the new object now so we can use var inheritance below */
330     vlc_object_attach( p_vout, p_parent );
331
332     spu_Init( p_vout->p_spu );
333
334     /* Take care of some "interface/control" related initialisations */
335     vout_IntfInit( p_vout );
336
337     /* If the parent is not a VOUT object, that means we are at the start of
338      * the video output pipe */
339     if( p_parent->i_object_type != VLC_OBJECT_VOUT )
340     {
341         /* Look for the default filter configuration */
342         p_vout->psz_filter_chain =
343             var_CreateGetStringCommand( p_vout, "vout-filter" );
344
345         /* Apply video filter2 objects on the first vout */
346         p_vout->psz_vf2 =
347             var_CreateGetStringCommand( p_vout, "video-filter" );
348     }
349     else
350     {
351         /* continue the parent's filter chain */
352         char *psz_tmp;
353
354         /* Ugly hack to jump to our configuration chain */
355         p_vout->psz_filter_chain
356             = ((vout_thread_t *)p_parent)->psz_filter_chain;
357         p_vout->psz_filter_chain
358             = config_ChainCreate( &psz_tmp, &p_cfg, p_vout->psz_filter_chain );
359         config_ChainDestroy( p_cfg );
360         free( psz_tmp );
361
362         /* Create a video filter2 var ... but don't inherit values */
363         var_Create( p_vout, "video-filter",
364                     VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
365         p_vout->psz_vf2 = var_GetString( p_vout, "video-filter" );
366     }
367
368     var_AddCallback( p_vout, "video-filter", VideoFilter2Callback, NULL );
369     p_vout->p_vf2_chain = filter_chain_New( p_vout, "video filter2",
370         false, video_filter_buffer_allocation_init, NULL, p_vout );
371
372     /* Choose the video output module */
373     if( !p_vout->psz_filter_chain || !*p_vout->psz_filter_chain )
374     {
375         var_Create( p_vout, "vout", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
376         var_Get( p_vout, "vout", &val );
377         psz_parser = val.psz_string;
378     }
379     else
380     {
381         psz_parser = strdup( p_vout->psz_filter_chain );
382     }
383
384     /* Create the vout thread */
385     config_ChainCreate( &psz_name, &p_cfg, psz_parser );
386     free( psz_parser );
387     p_vout->p_cfg = p_cfg;
388     p_vout->p_module = module_Need( p_vout,
389         ( p_vout->psz_filter_chain && *p_vout->psz_filter_chain ) ?
390         "video filter" : "video output", psz_name, p_vout->psz_filter_chain && *p_vout->psz_filter_chain );
391     free( psz_name );
392
393     if( p_vout->p_module == NULL )
394     {
395         msg_Err( p_vout, "no suitable vout module" );
396         vlc_object_detach( p_vout );
397         vlc_object_release( p_vout );
398         return NULL;
399     }
400
401     /* Create a few object variables for interface interaction */
402     var_Create( p_vout, "deinterlace", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
403     text.psz_string = _("Deinterlace");
404     var_Change( p_vout, "deinterlace", VLC_VAR_SETTEXT, &text, NULL );
405     val.psz_string = (char *)""; text.psz_string = _("Disable");
406     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
407     val.psz_string = (char *)"discard"; text.psz_string = _("Discard");
408     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
409     val.psz_string = (char *)"blend"; text.psz_string = _("Blend");
410     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
411     val.psz_string = (char *)"mean"; text.psz_string = _("Mean");
412     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
413     val.psz_string = (char *)"bob"; text.psz_string = _("Bob");
414     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
415     val.psz_string = (char *)"linear"; text.psz_string = _("Linear");
416     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
417     val.psz_string = (char *)"x"; text.psz_string = (char *)"X";
418     var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
419
420     if( var_Get( p_vout, "deinterlace-mode", &val ) == VLC_SUCCESS )
421     {
422         var_Set( p_vout, "deinterlace", val );
423         free( val.psz_string );
424     }
425     var_AddCallback( p_vout, "deinterlace", DeinterlaceCallback, NULL );
426
427     var_Create( p_vout, "vout-filter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
428     text.psz_string = _("Filters");
429     var_Change( p_vout, "vout-filter", VLC_VAR_SETTEXT, &text, NULL );
430     var_AddCallback( p_vout, "vout-filter", FilterCallback, NULL );
431
432     /* Calculate delay created by internal caching */
433     p_input_thread = (input_thread_t *)vlc_object_find( p_vout,
434                                            VLC_OBJECT_INPUT, FIND_ANYWHERE );
435     if( p_input_thread )
436     {
437         p_vout->i_pts_delay = p_input_thread->i_pts_delay;
438         vlc_object_release( p_input_thread );
439     }
440     else
441     {
442         p_vout->i_pts_delay = DEFAULT_PTS_DELAY;
443     }
444
445     if( vlc_thread_create( p_vout, "video output", RunThread,
446                            VLC_THREAD_PRIORITY_OUTPUT, true ) )
447     {
448         module_Unneed( p_vout, p_vout->p_module );
449         vlc_object_release( p_vout );
450         return NULL;
451     }
452
453     vlc_object_set_destructor( p_vout, vout_Destructor );
454
455     if( p_vout->b_error )
456     {
457         msg_Err( p_vout, "video output creation failed" );
458
459         /* Make sure the thread is destroyed and data released */
460         vlc_object_release( p_vout );
461         return NULL;
462     }
463
464     return p_vout;
465 }
466
467 static void vout_Destructor( vlc_object_t * p_this )
468 {
469     vout_thread_t *p_vout = (vout_thread_t *)p_this;
470
471     /* Destroy the locks */
472     vlc_mutex_destroy( &p_vout->picture_lock );
473     vlc_mutex_destroy( &p_vout->change_lock );
474     vlc_mutex_destroy( &p_vout->vfilter_lock );
475
476     /* Release the module */
477     if( p_vout->p_module )
478     {
479         module_Unneed( p_vout, p_vout->p_module );
480     }
481
482     free( p_vout->psz_filter_chain );
483
484     config_ChainDestroy( p_vout->p_cfg );
485
486 #ifndef __APPLE__
487     vout_thread_t *p_another_vout;
488
489     /* This is a dirty hack mostly for Linux, where there is no way to get the
490      * GUI back if you closed it while playing video. This is solved in
491      * Mac OS X, where we have this novelty called menubar, that will always
492      * allow you access to the applications main functionality. They should try
493      * that on linux sometime. */
494     p_another_vout = vlc_object_find( p_this->p_libvlc,
495                                       VLC_OBJECT_VOUT, FIND_ANYWHERE );
496     if( p_another_vout == NULL )
497         var_SetBool( p_this->p_libvlc, "intf-show", true );
498     else
499         vlc_object_release( p_another_vout );
500 #endif
501 }
502
503 /*****************************************************************************
504  * InitThread: initialize video output thread
505  *****************************************************************************
506  * This function is called from RunThread and performs the second step of the
507  * initialization. It returns 0 on success. Note that the thread's flag are not
508  * modified inside this function.
509  *****************************************************************************/
510 static picture_t *get_pic( filter_t *p_filter )
511 {
512     picture_t *p_pic = (picture_t *)p_filter->p_owner;
513     p_filter->p_owner = NULL;
514     return p_pic;
515 }
516
517 static int InitThread( vout_thread_t *p_vout )
518 {
519     int i, i_aspect_x, i_aspect_y;
520
521     vlc_mutex_lock( &p_vout->change_lock );
522
523 #ifdef STATS
524     p_vout->c_loops = 0;
525 #endif
526
527     /* Initialize output method, it allocates direct buffers for us */
528     if( p_vout->pf_init( p_vout ) )
529     {
530         vlc_mutex_unlock( &p_vout->change_lock );
531         return VLC_EGENERIC;
532     }
533
534     if( !I_OUTPUTPICTURES )
535     {
536         msg_Err( p_vout, "plugin was unable to allocate at least "
537                          "one direct buffer" );
538         p_vout->pf_end( p_vout );
539         vlc_mutex_unlock( &p_vout->change_lock );
540         return VLC_EGENERIC;
541     }
542
543     if( I_OUTPUTPICTURES > VOUT_MAX_PICTURES )
544     {
545         msg_Err( p_vout, "plugin allocated too many direct buffers, "
546                          "our internal buffers must have overflown." );
547         p_vout->pf_end( p_vout );
548         vlc_mutex_unlock( &p_vout->change_lock );
549         return VLC_EGENERIC;
550     }
551
552     msg_Dbg( p_vout, "got %i direct buffer(s)", I_OUTPUTPICTURES );
553
554     AspectRatio( p_vout->fmt_render.i_aspect, &i_aspect_x, &i_aspect_y );
555
556     msg_Dbg( p_vout, "picture in %ix%i (%i,%i,%ix%i), "
557              "chroma %4.4s, ar %i:%i, sar %i:%i",
558              p_vout->fmt_render.i_width, p_vout->fmt_render.i_height,
559              p_vout->fmt_render.i_x_offset, p_vout->fmt_render.i_y_offset,
560              p_vout->fmt_render.i_visible_width,
561              p_vout->fmt_render.i_visible_height,
562              (char*)&p_vout->fmt_render.i_chroma,
563              i_aspect_x, i_aspect_y,
564              p_vout->fmt_render.i_sar_num, p_vout->fmt_render.i_sar_den );
565
566     AspectRatio( p_vout->fmt_in.i_aspect, &i_aspect_x, &i_aspect_y );
567
568     msg_Dbg( p_vout, "picture user %ix%i (%i,%i,%ix%i), "
569              "chroma %4.4s, ar %i:%i, sar %i:%i",
570              p_vout->fmt_in.i_width, p_vout->fmt_in.i_height,
571              p_vout->fmt_in.i_x_offset, p_vout->fmt_in.i_y_offset,
572              p_vout->fmt_in.i_visible_width,
573              p_vout->fmt_in.i_visible_height,
574              (char*)&p_vout->fmt_in.i_chroma,
575              i_aspect_x, i_aspect_y,
576              p_vout->fmt_in.i_sar_num, p_vout->fmt_in.i_sar_den );
577
578     if( !p_vout->fmt_out.i_width || !p_vout->fmt_out.i_height )
579     {
580         p_vout->fmt_out.i_width = p_vout->fmt_out.i_visible_width =
581             p_vout->output.i_width;
582         p_vout->fmt_out.i_height = p_vout->fmt_out.i_visible_height =
583             p_vout->output.i_height;
584         p_vout->fmt_out.i_x_offset =  p_vout->fmt_out.i_y_offset = 0;
585
586         p_vout->fmt_out.i_aspect = p_vout->output.i_aspect;
587         p_vout->fmt_out.i_chroma = p_vout->output.i_chroma;
588     }
589     if( !p_vout->fmt_out.i_sar_num || !p_vout->fmt_out.i_sar_num )
590     {
591         p_vout->fmt_out.i_sar_num = p_vout->fmt_out.i_aspect *
592             p_vout->fmt_out.i_height;
593         p_vout->fmt_out.i_sar_den = VOUT_ASPECT_FACTOR *
594             p_vout->fmt_out.i_width;
595     }
596
597     vlc_ureduce( &p_vout->fmt_out.i_sar_num, &p_vout->fmt_out.i_sar_den,
598                  p_vout->fmt_out.i_sar_num, p_vout->fmt_out.i_sar_den, 0 );
599
600     AspectRatio( p_vout->fmt_out.i_aspect, &i_aspect_x, &i_aspect_y );
601
602     msg_Dbg( p_vout, "picture out %ix%i (%i,%i,%ix%i), "
603              "chroma %4.4s, ar %i:%i, sar %i:%i",
604              p_vout->fmt_out.i_width, p_vout->fmt_out.i_height,
605              p_vout->fmt_out.i_x_offset, p_vout->fmt_out.i_y_offset,
606              p_vout->fmt_out.i_visible_width,
607              p_vout->fmt_out.i_visible_height,
608              (char*)&p_vout->fmt_out.i_chroma,
609              i_aspect_x, i_aspect_y,
610              p_vout->fmt_out.i_sar_num, p_vout->fmt_out.i_sar_den );
611
612     /* Calculate shifts from system-updated masks */
613     MaskToShift( &p_vout->output.i_lrshift, &p_vout->output.i_rrshift,
614                  p_vout->output.i_rmask );
615     MaskToShift( &p_vout->output.i_lgshift, &p_vout->output.i_rgshift,
616                  p_vout->output.i_gmask );
617     MaskToShift( &p_vout->output.i_lbshift, &p_vout->output.i_rbshift,
618                  p_vout->output.i_bmask );
619
620     /* Check whether we managed to create direct buffers similar to
621      * the render buffers, ie same size and chroma */
622     if( ( p_vout->output.i_width == p_vout->render.i_width )
623      && ( p_vout->output.i_height == p_vout->render.i_height )
624      && ( vout_ChromaCmp( p_vout->output.i_chroma, p_vout->render.i_chroma ) ) )
625     {
626         /* Cool ! We have direct buffers, we can ask the decoder to
627          * directly decode into them ! Map the first render buffers to
628          * the first direct buffers, but keep the first direct buffer
629          * for memcpy operations */
630         p_vout->b_direct = 1;
631
632         for( i = 1; i < VOUT_MAX_PICTURES; i++ )
633         {
634             if( p_vout->p_picture[ i ].i_type != DIRECT_PICTURE &&
635                 I_RENDERPICTURES >= VOUT_MIN_DIRECT_PICTURES - 1 &&
636                 p_vout->p_picture[ i - 1 ].i_type == DIRECT_PICTURE )
637             {
638                 /* We have enough direct buffers so there's no need to
639                  * try to use system memory buffers. */
640                 break;
641             }
642             PP_RENDERPICTURE[ I_RENDERPICTURES ] = &p_vout->p_picture[ i ];
643             I_RENDERPICTURES++;
644         }
645
646         msg_Dbg( p_vout, "direct render, mapping "
647                  "render pictures 0-%i to system pictures 1-%i",
648                  VOUT_MAX_PICTURES - 2, VOUT_MAX_PICTURES - 1 );
649     }
650     else
651     {
652         /* Rats... Something is wrong here, we could not find an output
653          * plugin able to directly render what we decode. See if we can
654          * find a chroma plugin to do the conversion */
655         p_vout->b_direct = 0;
656
657         /* Choose the best module */
658         p_vout->p_chroma = vlc_object_create( p_vout, sizeof(filter_t) );
659         filter_t *p_chroma = p_vout->p_chroma;
660         vlc_object_attach( p_chroma, p_vout );
661         /* TODO: Set the fmt_in and fmt_out stuff here */
662         p_chroma->fmt_in.video = p_vout->fmt_render;
663         p_chroma->fmt_out.video = p_vout->fmt_out;
664
665         /* TODO: put in a function */
666         p_chroma->fmt_out.video.i_rmask = p_vout->output.i_rmask;
667         p_chroma->fmt_out.video.i_gmask = p_vout->output.i_gmask;
668         p_chroma->fmt_out.video.i_bmask = p_vout->output.i_bmask;
669         p_chroma->fmt_out.video.i_rrshift = p_vout->output.i_rrshift;
670         p_chroma->fmt_out.video.i_lrshift = p_vout->output.i_lrshift;
671         p_chroma->fmt_out.video.i_rgshift = p_vout->output.i_rgshift;
672         p_chroma->fmt_out.video.i_lgshift = p_vout->output.i_lgshift;
673         p_chroma->fmt_out.video.i_rbshift = p_vout->output.i_rbshift;
674         p_chroma->fmt_out.video.i_lbshift = p_vout->output.i_lbshift;
675         p_chroma->p_module = module_Need( p_chroma, "video filter2", NULL, 0 );
676
677         if( p_chroma->p_module == NULL )
678         {
679             msg_Err( p_vout, "no chroma module for %4.4s to %4.4s",
680                      (char*)&p_vout->render.i_chroma,
681                      (char*)&p_vout->output.i_chroma );
682
683             vlc_object_release( p_vout->p_chroma );
684             p_vout->p_chroma = NULL;
685             p_vout->pf_end( p_vout );
686             vlc_mutex_unlock( &p_vout->change_lock );
687             return VLC_EGENERIC;
688         }
689         p_chroma->pf_vout_buffer_new = get_pic;
690
691         msg_Dbg( p_vout, "indirect render, mapping "
692                  "render pictures 0-%i to system pictures %i-%i",
693                  VOUT_MAX_PICTURES - 1, I_OUTPUTPICTURES,
694                  I_OUTPUTPICTURES + VOUT_MAX_PICTURES - 1 );
695
696         /* Append render buffers after the direct buffers */
697         for( i = I_OUTPUTPICTURES; i < 2 * VOUT_MAX_PICTURES; i++ )
698         {
699             PP_RENDERPICTURE[ I_RENDERPICTURES ] = &p_vout->p_picture[ i ];
700             I_RENDERPICTURES++;
701
702             /* Check if we have enough render pictures */
703             if( I_RENDERPICTURES == VOUT_MAX_PICTURES )
704                 break;
705         }
706     }
707
708     /* Link pictures back to their heap */
709     for( i = 0 ; i < I_RENDERPICTURES ; i++ )
710     {
711         PP_RENDERPICTURE[ i ]->p_heap = &p_vout->render;
712     }
713
714     for( i = 0 ; i < I_OUTPUTPICTURES ; i++ )
715     {
716         PP_OUTPUTPICTURE[ i ]->p_heap = &p_vout->output;
717     }
718
719 /* XXX XXX mark thread ready */
720     return VLC_SUCCESS;
721 }
722
723 /*****************************************************************************
724  * RunThread: video output thread
725  *****************************************************************************
726  * Video output thread. This function does only returns when the thread is
727  * terminated. It handles the pictures arriving in the video heap and the
728  * display device events.
729  *****************************************************************************/
730 static void RunThread( vout_thread_t *p_vout)
731 {
732     int             i_index;                                /* index in heap */
733     int             i_idle_loops = 0;  /* loops without displaying a picture */
734     mtime_t         current_date;                            /* current date */
735     mtime_t         display_date;                            /* display date */
736
737     picture_t *     p_picture;                            /* picture pointer */
738     picture_t *     p_last_picture = NULL;                   /* last picture */
739     picture_t *     p_directbuffer;              /* direct buffer to display */
740
741     subpicture_t *  p_subpic = NULL;                   /* subpicture pointer */
742
743     input_thread_t *p_input = NULL ;           /* Parent input, if it exists */
744
745     vlc_value_t     val;
746     bool      b_drop_late;
747
748     int             i_displayed = 0, i_lost = 0, i_loops = 0;
749
750     /*
751      * Initialize thread
752      */
753     p_vout->b_error = InitThread( p_vout );
754
755     var_Create( p_vout, "drop-late-frames", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
756     var_Get( p_vout, "drop-late-frames", &val );
757     b_drop_late = val.b_bool;
758
759     /* signal the creation of the vout */
760     vlc_thread_ready( p_vout );
761
762     if( p_vout->b_error )
763         return;
764
765     vlc_object_lock( p_vout );
766
767     if( p_vout->b_title_show )
768         DisplayTitleOnOSD( p_vout );
769
770     /*
771      * Main loop - it is not executed if an error occurred during
772      * initialization
773      */
774     while( (vlc_object_alive( p_vout )) && (!p_vout->b_error) )
775     {
776         /* Initialize loop variables */
777         p_picture = NULL;
778         display_date = 0;
779         current_date = mdate();
780
781         i_loops++;
782             if( !p_input )
783             {
784                 p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT,
785                                            FIND_PARENT );
786             }
787             if( p_input )
788             {
789                 vlc_mutex_lock( &p_input->p->counters.counters_lock );
790                 stats_UpdateInteger( p_vout, p_input->p->counters.p_lost_pictures,
791                                      i_lost , NULL);
792                 stats_UpdateInteger( p_vout,
793                                      p_input->p->counters.p_displayed_pictures,
794                                      i_displayed , NULL);
795                 i_displayed = i_lost = 0;
796                 vlc_mutex_unlock( &p_input->p->counters.counters_lock );
797                 vlc_object_release( p_input );
798                 p_input = NULL;
799             }
800 #if 0
801         p_vout->c_loops++;
802         if( !(p_vout->c_loops % VOUT_STATS_NB_LOOPS) )
803         {
804             msg_Dbg( p_vout, "picture heap: %d/%d",
805                      I_RENDERPICTURES, p_vout->i_heap_size );
806         }
807 #endif
808
809         /*
810          * Find the picture to display (the one with the earliest date).
811          * This operation does not need lock, since only READY_PICTUREs
812          * are handled. */
813         for( i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
814         {
815             if( (PP_RENDERPICTURE[i_index]->i_status == READY_PICTURE)
816                 && ( (p_picture == NULL) ||
817                      (PP_RENDERPICTURE[i_index]->date < display_date) ) )
818             {
819                 p_picture = PP_RENDERPICTURE[i_index];
820                 display_date = p_picture->date;
821             }
822         }
823
824         if( p_picture )
825         {
826             /* If we met the last picture, parse again to see whether there is
827              * a more appropriate one. */
828             if( p_picture == p_last_picture )
829             {
830                 for( i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
831                 {
832                     if( (PP_RENDERPICTURE[i_index]->i_status == READY_PICTURE)
833                         && (PP_RENDERPICTURE[i_index] != p_last_picture)
834                         && ((p_picture == p_last_picture) ||
835                             (PP_RENDERPICTURE[i_index]->date < display_date)) )
836                     {
837                         p_picture = PP_RENDERPICTURE[i_index];
838                         display_date = p_picture->date;
839                     }
840                 }
841             }
842
843             /* If we found better than the last picture, destroy it */
844             if( p_last_picture && p_picture != p_last_picture )
845             {
846                 vlc_mutex_lock( &p_vout->picture_lock );
847                 if( p_last_picture->i_refcount )
848                 {
849                     p_last_picture->i_status = DISPLAYED_PICTURE;
850                 }
851                 else
852                 {
853                     p_last_picture->i_status = DESTROYED_PICTURE;
854                     p_vout->i_heap_size--;
855                 }
856                 vlc_mutex_unlock( &p_vout->picture_lock );
857                 p_last_picture = NULL;
858             }
859
860             /* Compute FPS rate */
861             p_vout->p_fps_sample[ p_vout->c_fps_samples++ % VOUT_FPS_SAMPLES ]
862                 = display_date;
863
864             if( !p_picture->b_force &&
865                 p_picture != p_last_picture &&
866                 display_date < current_date + p_vout->render_time &&
867                 b_drop_late )
868             {
869                 /* Picture is late: it will be destroyed and the thread
870                  * will directly choose the next picture */
871                 vlc_mutex_lock( &p_vout->picture_lock );
872                 if( p_picture->i_refcount )
873                 {
874                     /* Pretend we displayed the picture, but don't destroy
875                      * it since the decoder might still need it. */
876                     p_picture->i_status = DISPLAYED_PICTURE;
877                 }
878                 else
879                 {
880                     /* Destroy the picture without displaying it */
881                     p_picture->i_status = DESTROYED_PICTURE;
882                     p_vout->i_heap_size--;
883                 }
884                 msg_Warn( p_vout, "late picture skipped (%"PRId64")",
885                                   current_date - display_date );
886                 i_lost++;
887                 vlc_mutex_unlock( &p_vout->picture_lock );
888
889                 continue;
890             }
891
892             if( display_date >
893                 current_date + p_vout->i_pts_delay + VOUT_BOGUS_DELAY )
894             {
895                 /* Picture is waaay too early: it will be destroyed */
896                 vlc_mutex_lock( &p_vout->picture_lock );
897                 if( p_picture->i_refcount )
898                 {
899                     /* Pretend we displayed the picture, but don't destroy
900                      * it since the decoder might still need it. */
901                     p_picture->i_status = DISPLAYED_PICTURE;
902                 }
903                 else
904                 {
905                     /* Destroy the picture without displaying it */
906                     p_picture->i_status = DESTROYED_PICTURE;
907                     p_vout->i_heap_size--;
908                 }
909                 i_lost++;
910                 msg_Warn( p_vout, "vout warning: early picture skipped "
911                           "(%"PRId64")", display_date - current_date
912                           - p_vout->i_pts_delay );
913                 vlc_mutex_unlock( &p_vout->picture_lock );
914
915                 continue;
916             }
917
918             if( display_date > current_date + VOUT_DISPLAY_DELAY )
919             {
920                 /* A picture is ready to be rendered, but its rendering date
921                  * is far from the current one so the thread will perform an
922                  * empty loop as if no picture were found. The picture state
923                  * is unchanged */
924                 p_picture    = NULL;
925                 display_date = 0;
926             }
927             else if( p_picture == p_last_picture )
928             {
929                 /* We are asked to repeat the previous picture, but we first
930                  * wait for a couple of idle loops */
931                 if( i_idle_loops < 4 )
932                 {
933                     p_picture    = NULL;
934                     display_date = 0;
935                 }
936                 else
937                 {
938                     /* We set the display date to something high, otherwise
939                      * we'll have lots of problems with late pictures */
940                     display_date = current_date + p_vout->render_time;
941                 }
942             }
943         }
944
945         if( p_picture == NULL )
946         {
947             i_idle_loops++;
948         }
949
950         /* Video Filter2 stuff */
951         if( p_vout->psz_vf2 )
952         {
953             es_format_t fmt;
954
955             vlc_mutex_lock( &p_vout->vfilter_lock );
956
957             es_format_Init( &fmt, VIDEO_ES, p_vout->fmt_render.i_chroma );
958             fmt.video = p_vout->fmt_render;
959             filter_chain_Reset( p_vout->p_vf2_chain, &fmt, &fmt );
960
961             if( filter_chain_AppendFromString( p_vout->p_vf2_chain,
962                                                p_vout->psz_vf2 ) < 0 )
963                 msg_Err( p_vout, "Video filter chain creation failed" );
964
965             free( p_vout->psz_vf2 );
966             p_vout->psz_vf2 = NULL;
967             vlc_mutex_unlock( &p_vout->vfilter_lock );
968         }
969
970         if( p_picture )
971         {
972             p_picture = filter_chain_VideoFilter( p_vout->p_vf2_chain,
973                                                   p_picture );
974         }
975
976         if( p_picture && p_vout->b_snapshot )
977         {
978             p_vout->b_snapshot = false;
979             vout_Snapshot( p_vout, p_picture );
980         }
981
982         /*
983          * Check for subpictures to display
984          */
985         if( display_date > 0 )
986         {
987             if( !p_input )
988             {
989                 p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT,
990                                            FIND_PARENT );
991             }
992             p_subpic = spu_SortSubpictures( p_vout->p_spu, display_date,
993             p_input ? var_GetBool( p_input, "state" ) == PAUSE_S : false );
994             if( p_input )
995                 vlc_object_release( p_input );
996             p_input = NULL;
997         }
998
999         /*
1000          * Perform rendering
1001          */
1002         i_displayed++;
1003         p_directbuffer = vout_RenderPicture( p_vout, p_picture, p_subpic );
1004
1005         /*
1006          * Call the plugin-specific rendering method if there is one
1007          */
1008         if( p_picture != NULL && p_directbuffer != NULL && p_vout->pf_render )
1009         {
1010             /* Render the direct buffer returned by vout_RenderPicture */
1011             p_vout->pf_render( p_vout, p_directbuffer );
1012         }
1013
1014         /*
1015          * Sleep, wake up
1016          */
1017         if( display_date != 0 && p_directbuffer != NULL )
1018         {
1019             mtime_t current_render_time = mdate() - current_date;
1020             /* if render time is very large we don't include it in the mean */
1021             if( current_render_time < p_vout->render_time +
1022                 VOUT_DISPLAY_DELAY )
1023             {
1024                 /* Store render time using a sliding mean weighting to
1025                  * current value in a 3 to 1 ratio*/
1026                 p_vout->render_time *= 3;
1027                 p_vout->render_time += current_render_time;
1028                 p_vout->render_time >>= 2;
1029             }
1030         }
1031
1032         /* Give back change lock */
1033         vlc_mutex_unlock( &p_vout->change_lock );
1034
1035         vlc_object_unlock( p_vout );
1036
1037         /* Sleep a while or until a given date */
1038         if( display_date != 0 )
1039         {
1040             /* If there are filters in the chain, better give them the picture
1041              * in advance */
1042             if( !p_vout->psz_filter_chain || !*p_vout->psz_filter_chain )
1043             {
1044                 mwait( display_date - VOUT_MWAIT_TOLERANCE );
1045             }
1046         }
1047         else
1048         {
1049             msleep( VOUT_IDLE_SLEEP );
1050         }
1051
1052         /* On awakening, take back lock and send immediately picture
1053          * to display. */
1054         vlc_object_lock( p_vout );
1055         /* Note: vlc_object_alive() could be false here, and we
1056          * could be dead */
1057         vlc_mutex_lock( &p_vout->change_lock );
1058
1059         /*
1060          * Display the previously rendered picture
1061          */
1062         if( p_picture != NULL && p_directbuffer != NULL )
1063         {
1064             /* Display the direct buffer returned by vout_RenderPicture */
1065             if( p_vout->pf_display )
1066             {
1067                 p_vout->pf_display( p_vout, p_directbuffer );
1068             }
1069
1070             /* Tell the vout this was the last picture and that it does not
1071              * need to be forced anymore. */
1072             p_last_picture = p_picture;
1073             p_last_picture->b_force = 0;
1074         }
1075
1076         if( p_picture != NULL )
1077         {
1078             /* Reinitialize idle loop count */
1079             i_idle_loops = 0;
1080         }
1081
1082         /*
1083          * Check events and manage thread
1084          */
1085         if( p_vout->pf_manage && p_vout->pf_manage( p_vout ) )
1086         {
1087             /* A fatal error occurred, and the thread must terminate
1088              * immediately, without displaying anything - setting b_error to 1
1089              * causes the immediate end of the main while() loop. */
1090             // FIXME pf_end
1091             p_vout->b_error = 1;
1092         }
1093
1094         if( p_vout->i_changes & VOUT_SIZE_CHANGE )
1095         {
1096             /* this must only happen when the vout plugin is incapable of
1097              * rescaling the picture itself. In this case we need to destroy
1098              * the current picture buffers and recreate new ones with the right
1099              * dimensions */
1100             int i;
1101
1102             p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
1103
1104             p_vout->pf_end( p_vout );
1105             for( i = 0; i < I_OUTPUTPICTURES; i++ )
1106                  p_vout->p_picture[ i ].i_status = FREE_PICTURE;
1107
1108             I_OUTPUTPICTURES = 0;
1109             if( p_vout->pf_init( p_vout ) )
1110             {
1111                 msg_Err( p_vout, "cannot resize display" );
1112                 /* FIXME: pf_end will be called again in EndThread() */
1113                 p_vout->b_error = 1;
1114             }
1115
1116             /* Need to reinitialise the chroma plugin. Since we might need
1117              * resizing too and it's not sure that we already had it,
1118              * recreate the chroma plugin chain from scratch. */
1119             /* dionoea */
1120             if( p_vout->p_chroma->p_module )
1121             {
1122                 filter_t *p_chroma = p_vout->p_chroma;
1123                 module_Unneed( p_chroma, p_chroma->p_module );
1124                 p_chroma->fmt_out.video = p_vout->fmt_out;
1125                 p_chroma->fmt_out.video.i_rmask = p_vout->output.i_rmask;
1126                 p_chroma->fmt_out.video.i_gmask = p_vout->output.i_gmask;
1127                 p_chroma->fmt_out.video.i_bmask = p_vout->output.i_bmask;
1128                 p_chroma->fmt_out.video.i_rrshift = p_vout->output.i_rrshift;
1129                 p_chroma->fmt_out.video.i_lrshift = p_vout->output.i_lrshift;
1130                 p_chroma->fmt_out.video.i_rgshift = p_vout->output.i_rgshift;
1131                 p_chroma->fmt_out.video.i_lgshift = p_vout->output.i_lgshift;
1132                 p_chroma->fmt_out.video.i_rbshift = p_vout->output.i_rbshift;
1133                 p_chroma->fmt_out.video.i_lbshift = p_vout->output.i_lbshift;
1134                 p_chroma->p_module = module_Need( p_chroma, "video filter2", NULL, 0 );
1135                 if( !p_chroma->p_module )
1136                 {
1137                     msg_Err( p_vout, "WOW THIS SUCKS BIG TIME!!!!!" );
1138                 }
1139             }
1140         }
1141
1142         if( p_vout->i_changes & VOUT_PICTURE_BUFFERS_CHANGE )
1143         {
1144             /* This happens when the picture buffers need to be recreated.
1145              * This is useful on multimonitor displays for instance.
1146              *
1147              * Warning: This only works when the vout creates only 1 picture
1148              * buffer!! */
1149             p_vout->i_changes &= ~VOUT_PICTURE_BUFFERS_CHANGE;
1150
1151             if( !p_vout->b_direct )
1152             {
1153                 module_Unneed( p_vout->p_chroma, p_vout->p_chroma->p_module );
1154                 vlc_object_detach( p_vout->p_chroma );
1155                 vlc_object_release( p_vout->p_chroma );
1156                 p_vout->p_chroma = NULL;
1157             }
1158
1159             vlc_mutex_lock( &p_vout->picture_lock );
1160
1161             p_vout->pf_end( p_vout );
1162
1163             I_OUTPUTPICTURES = I_RENDERPICTURES = 0;
1164
1165             p_vout->b_error = InitThread( p_vout );
1166
1167             vlc_mutex_unlock( &p_vout->picture_lock );
1168         }
1169     }
1170
1171
1172     if( p_input )
1173     {
1174         vlc_object_release( p_input );
1175     }
1176
1177     /*
1178      * Error loop - wait until the thread destruction is requested
1179      */
1180     if( p_vout->b_error )
1181     {
1182         ErrorThread( p_vout );
1183     }
1184
1185     /* End of thread */
1186     EndThread( p_vout );
1187     vlc_object_unlock( p_vout );
1188 }
1189
1190 /*****************************************************************************
1191  * ErrorThread: RunThread() error loop
1192  *****************************************************************************
1193  * This function is called when an error occurred during thread main's loop.
1194  * The thread can still receive feed, but must be ready to terminate as soon
1195  * as possible.
1196  *****************************************************************************/
1197 static void ErrorThread( vout_thread_t *p_vout )
1198 {
1199     /* Wait until a `die' order */
1200     while( !p_vout->b_die )
1201     {
1202         /* Sleep a while */
1203         msleep( VOUT_IDLE_SLEEP );
1204     }
1205 }
1206
1207 /*****************************************************************************
1208  * EndThread: thread destruction
1209  *****************************************************************************
1210  * This function is called when the thread ends after a sucessful
1211  * initialization. It frees all resources allocated by InitThread.
1212  *****************************************************************************/
1213 static void EndThread( vout_thread_t *p_vout )
1214 {
1215     int     i_index;                                        /* index in heap */
1216
1217 #ifdef STATS
1218     {
1219         struct tms cpu_usage;
1220         times( &cpu_usage );
1221
1222         msg_Dbg( p_vout, "cpu usage (user: %d, system: %d)",
1223                  cpu_usage.tms_utime, cpu_usage.tms_stime );
1224     }
1225 #endif
1226
1227     if( !p_vout->b_direct )
1228     {
1229         module_Unneed( p_vout->p_chroma, p_vout->p_chroma->p_module );
1230         vlc_object_release( p_vout->p_chroma );
1231         p_vout->p_chroma = NULL;
1232     }
1233
1234     /* Destroy all remaining pictures */
1235     for( i_index = 0; i_index < 2 * VOUT_MAX_PICTURES + 1; i_index++ )
1236     {
1237         if ( p_vout->p_picture[i_index].i_type == MEMORY_PICTURE )
1238         {
1239             free( p_vout->p_picture[i_index].p_data_orig );
1240         }
1241     }
1242
1243     /* Destroy subpicture unit */
1244     spu_Attach( p_vout->p_spu, VLC_OBJECT(p_vout), false );
1245     spu_Destroy( p_vout->p_spu );
1246
1247     /* Destroy the video filters2 */
1248     filter_chain_Delete( p_vout->p_vf2_chain );
1249
1250     /* Destroy translation tables FIXME if b_error is set, it can already be done */
1251     p_vout->pf_end( p_vout );
1252
1253     /* Release the change lock */
1254     vlc_mutex_unlock( &p_vout->change_lock );
1255 }
1256
1257 /* following functions are local */
1258
1259 static int ReduceHeight( int i_ratio )
1260 {
1261     int i_dummy = VOUT_ASPECT_FACTOR;
1262     int i_pgcd  = 1;
1263
1264     if( !i_ratio )
1265     {
1266         return i_pgcd;
1267     }
1268
1269     /* VOUT_ASPECT_FACTOR is (2^7 * 3^3 * 5^3), we just check for 2, 3 and 5 */
1270     while( !(i_ratio & 1) && !(i_dummy & 1) )
1271     {
1272         i_ratio >>= 1;
1273         i_dummy >>= 1;
1274         i_pgcd  <<= 1;
1275     }
1276
1277     while( !(i_ratio % 3) && !(i_dummy % 3) )
1278     {
1279         i_ratio /= 3;
1280         i_dummy /= 3;
1281         i_pgcd  *= 3;
1282     }
1283
1284     while( !(i_ratio % 5) && !(i_dummy % 5) )
1285     {
1286         i_ratio /= 5;
1287         i_dummy /= 5;
1288         i_pgcd  *= 5;
1289     }
1290
1291     return i_pgcd;
1292 }
1293
1294 static void AspectRatio( int i_aspect, int *i_aspect_x, int *i_aspect_y )
1295 {
1296     unsigned int i_pgcd = ReduceHeight( i_aspect );
1297     *i_aspect_x = i_aspect / i_pgcd;
1298     *i_aspect_y = VOUT_ASPECT_FACTOR / i_pgcd;
1299 }
1300
1301 /*****************************************************************************
1302  * BinaryLog: computes the base 2 log of a binary value
1303  *****************************************************************************
1304  * This functions is used by MaskToShift, to get a bit index from a binary
1305  * value.
1306  *****************************************************************************/
1307 static int BinaryLog( uint32_t i )
1308 {
1309     int i_log = 0;
1310
1311     if( i == 0 ) return -31337;
1312
1313     if( i & 0xffff0000 ) i_log += 16;
1314     if( i & 0xff00ff00 ) i_log += 8;
1315     if( i & 0xf0f0f0f0 ) i_log += 4;
1316     if( i & 0xcccccccc ) i_log += 2;
1317     if( i & 0xaaaaaaaa ) i_log += 1;
1318
1319     return i_log;
1320 }
1321
1322 /*****************************************************************************
1323  * MaskToShift: transform a color mask into right and left shifts
1324  *****************************************************************************
1325  * This function is used for obtaining color shifts from masks.
1326  *****************************************************************************/
1327 static void MaskToShift( int *pi_left, int *pi_right, uint32_t i_mask )
1328 {
1329     uint32_t i_low, i_high;            /* lower hand higher bits of the mask */
1330
1331     if( !i_mask )
1332     {
1333         *pi_left = *pi_right = 0;
1334         return;
1335     }
1336
1337     /* Get bits */
1338     i_low = i_high = i_mask;
1339
1340     i_low &= - (int32_t)i_low;          /* lower bit of the mask */
1341     i_high += i_low;                    /* higher bit of the mask */
1342
1343     /* Transform bits into an index. Also deal with i_high overflow, which
1344      * is faster than changing the BinaryLog code to handle 64 bit integers. */
1345     i_low =  BinaryLog (i_low);
1346     i_high = i_high ? BinaryLog (i_high) : 32;
1347
1348     /* Update pointers and return */
1349     *pi_left =   i_low;
1350     *pi_right = (8 - i_high + i_low);
1351 }
1352
1353 /*****************************************************************************
1354  * vout_VarCallback: generic callback for intf variables
1355  *****************************************************************************/
1356 int vout_VarCallback( vlc_object_t * p_this, const char * psz_variable,
1357                       vlc_value_t oldval, vlc_value_t newval,
1358                       void *p_data )
1359 {
1360     vout_thread_t * p_vout = (vout_thread_t *)p_this;
1361     vlc_value_t val;
1362     (void)psz_variable; (void)newval; (void)oldval; (void)p_data;
1363     val.b_bool = true;
1364     var_Set( p_vout, "intf-change", val );
1365     return VLC_SUCCESS;
1366 }
1367
1368 /*****************************************************************************
1369  * Helper thread for object variables callbacks.
1370  * Only used to avoid deadlocks when using the video embedded mode.
1371  *****************************************************************************/
1372 typedef struct suxor_thread_t
1373 {
1374     VLC_COMMON_MEMBERS
1375     input_thread_t *p_input;
1376
1377 } suxor_thread_t;
1378
1379 static void SuxorRestartVideoES( suxor_thread_t *p_this )
1380 {
1381     vlc_value_t val;
1382
1383     vlc_thread_ready( p_this );
1384
1385     /* Now restart current video stream */
1386     var_Get( p_this->p_input, "video-es", &val );
1387     if( val.i_int >= 0 )
1388     {
1389         vlc_value_t val_es;
1390         val_es.i_int = -VIDEO_ES;
1391         var_Set( p_this->p_input, "video-es", val_es );
1392         var_Set( p_this->p_input, "video-es", val );
1393     }
1394
1395     vlc_object_release( p_this->p_input );
1396
1397     vlc_object_release( p_this );
1398 }
1399
1400 /*****************************************************************************
1401  * object variables callbacks: a bunch of object variables are used by the
1402  * interfaces to interact with the vout.
1403  *****************************************************************************/
1404 static int DeinterlaceCallback( vlc_object_t *p_this, char const *psz_cmd,
1405                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1406 {
1407     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1408     input_thread_t *p_input;
1409     vlc_value_t val;
1410
1411     char *psz_mode = newval.psz_string;
1412     char *psz_filter, *psz_deinterlace = NULL;
1413     (void)psz_cmd; (void)oldval; (void)p_data;
1414
1415     var_Get( p_vout, "vout-filter", &val );
1416     psz_filter = val.psz_string;
1417     if( psz_filter ) psz_deinterlace = strstr( psz_filter, "deinterlace" );
1418
1419     if( !psz_mode || !*psz_mode )
1420     {
1421         if( psz_deinterlace )
1422         {
1423             char *psz_src = psz_deinterlace + sizeof("deinterlace") - 1;
1424             if( psz_src[0] == ':' ) psz_src++;
1425             memmove( psz_deinterlace, psz_src, strlen(psz_src) + 1 );
1426         }
1427     }
1428     else if( !psz_deinterlace )
1429     {
1430         psz_filter = realloc( psz_filter, strlen( psz_filter ) +
1431                               sizeof(":deinterlace") );
1432         if( psz_filter && *psz_filter ) strcat( psz_filter, ":" );
1433         strcat( psz_filter, "deinterlace" );
1434     }
1435
1436     p_input = (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
1437                                                  FIND_PARENT );
1438     if( !p_input ) return VLC_EGENERIC;
1439
1440     if( psz_mode && *psz_mode )
1441     {
1442         /* Modify input as well because the vout might have to be restarted */
1443         val.psz_string = psz_mode;
1444         var_Create( p_input, "deinterlace-mode", VLC_VAR_STRING );
1445         var_Set( p_input, "deinterlace-mode", val );
1446     }
1447     vlc_object_release( p_input );
1448
1449     val.b_bool = true;
1450     var_Set( p_vout, "intf-change", val );
1451
1452     val.psz_string = psz_filter;
1453     var_Set( p_vout, "vout-filter", val );
1454     free( psz_filter );
1455
1456     return VLC_SUCCESS;
1457 }
1458
1459 static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd,
1460                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1461 {
1462     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1463     input_thread_t *p_input;
1464     vlc_value_t val;
1465     (void)psz_cmd; (void)oldval; (void)p_data;
1466
1467     p_input = (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
1468                                                  FIND_PARENT );
1469     if (!p_input)
1470     {
1471         msg_Err( p_vout, "Input not found" );
1472         return( VLC_EGENERIC );
1473     }
1474
1475     val.b_bool = true;
1476     var_Set( p_vout, "intf-change", val );
1477
1478     /* Modify input as well because the vout might have to be restarted */
1479     val.psz_string = newval.psz_string;
1480     var_Create( p_input, "vout-filter", VLC_VAR_STRING );
1481
1482     var_Set( p_input, "vout-filter", val );
1483
1484     /* Now restart current video stream */
1485     var_Get( p_input, "video-es", &val );
1486     if( val.i_int >= 0 )
1487     {
1488         suxor_thread_t *p_suxor =
1489             vlc_object_create( p_vout, sizeof(suxor_thread_t) );
1490         p_suxor->p_input = p_input;
1491         p_vout->b_filter_change = true;
1492         vlc_object_yield( p_input );
1493         vlc_thread_create( p_suxor, "suxor", SuxorRestartVideoES,
1494                            VLC_THREAD_PRIORITY_LOW, false );
1495     }
1496
1497     vlc_object_release( p_input );
1498
1499     return VLC_SUCCESS;
1500 }
1501
1502 /*****************************************************************************
1503  * Video Filter2 stuff
1504  *****************************************************************************/
1505 static int VideoFilter2Callback( vlc_object_t *p_this, char const *psz_cmd,
1506                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1507 {
1508     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1509     (void)psz_cmd; (void)oldval; (void)p_data;
1510
1511     vlc_mutex_lock( &p_vout->vfilter_lock );
1512     p_vout->psz_vf2 = strdup( newval.psz_string );
1513     vlc_mutex_unlock( &p_vout->vfilter_lock );
1514
1515     return VLC_SUCCESS;
1516 }
1517
1518 static void DisplayTitleOnOSD( vout_thread_t *p_vout )
1519 {
1520     input_thread_t *p_input;
1521     mtime_t i_now, i_stop;
1522
1523     p_input = (input_thread_t *)vlc_object_find( p_vout,
1524               VLC_OBJECT_INPUT, FIND_ANYWHERE );
1525     if( p_input )
1526     {
1527         i_now = mdate();
1528         i_stop = i_now + (mtime_t)(p_vout->i_title_timeout * 1000);
1529         char *psz_nowplaying =
1530             input_item_GetNowPlaying( input_GetItem( p_input ) );
1531         char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
1532         char *psz_name = input_item_GetTitle( input_GetItem( p_input ) );
1533         if( EMPTY_STR( psz_name ) )
1534         {
1535             free( psz_name );
1536             psz_name = input_item_GetName( input_GetItem( p_input ) );
1537         }
1538         if( !EMPTY_STR( psz_nowplaying ) )
1539         {
1540             vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1541                                    psz_nowplaying, NULL,
1542                                    p_vout->i_title_position,
1543                                    30 + p_vout->fmt_in.i_width
1544                                       - p_vout->fmt_in.i_visible_width
1545                                       - p_vout->fmt_in.i_x_offset,
1546                                    20 + p_vout->fmt_in.i_y_offset,
1547                                    i_now, i_stop );
1548         }
1549         else if( !EMPTY_STR( psz_artist ) )
1550         {
1551             char *psz_string = NULL;
1552             if( asprintf( &psz_string, "%s - %s", psz_name, psz_artist ) != -1 )
1553             {
1554                 vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1555                                        psz_string, NULL,
1556                                        p_vout->i_title_position,
1557                                        30 + p_vout->fmt_in.i_width
1558                                           - p_vout->fmt_in.i_visible_width
1559                                           - p_vout->fmt_in.i_x_offset,
1560                                        20 + p_vout->fmt_in.i_y_offset,
1561                                        i_now, i_stop );
1562                 free( psz_string );
1563             }
1564         }
1565         else
1566         {
1567             vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1568                                    psz_name, NULL,
1569                                    p_vout->i_title_position,
1570                                    30 + p_vout->fmt_in.i_width
1571                                       - p_vout->fmt_in.i_visible_width
1572                                       - p_vout->fmt_in.i_x_offset,
1573                                    20 + p_vout->fmt_in.i_y_offset,
1574                                    i_now, i_stop );
1575         }
1576         vlc_object_release( p_input );
1577         free( psz_artist );
1578         free( psz_name );
1579         free( psz_nowplaying );
1580     }
1581 }
1582