video_output.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:48k
源码类别:

多媒体

开发平台:

MultiPlatform

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