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