logo.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:32k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * logo.c : logo video plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2006 the VideoLAN team
  5.  * $Id: 92dd9c2ca8f08c4954cfcbb42c6d519c1afc8073 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *          Simon Latapie <garf@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_vout.h>
  33. #include <assert.h>
  34. #include "vlc_filter.h"
  35. #include "filter_common.h"
  36. #include "vlc_image.h"
  37. #include "vlc_osd.h"
  38. #ifdef LoadImage
  39. #   undef LoadImage
  40. #endif
  41. /*****************************************************************************
  42.  * Local prototypes
  43.  *****************************************************************************/
  44. static int  Create    ( vlc_object_t * );
  45. static void Destroy   ( vlc_object_t * );
  46. static int  Init      ( vout_thread_t * );
  47. static void End       ( vout_thread_t * );
  48. static void Render    ( vout_thread_t *, picture_t * );
  49. static int  MouseEvent( vlc_object_t *, char const *,
  50.                         vlc_value_t , vlc_value_t , void * );
  51. static int  Control   ( vout_thread_t *, int, va_list );
  52. static int  CreateFilter ( vlc_object_t * );
  53. static void DestroyFilter( vlc_object_t * );
  54. static int LogoCallback( vlc_object_t *, char const *,
  55.                          vlc_value_t, vlc_value_t, void * );
  56. /*****************************************************************************
  57.  * Module descriptor
  58.  *****************************************************************************/
  59. #define FILE_TEXT N_("Logo filenames")
  60. #define FILE_LONGTEXT N_("Full path of the image files to use. Format is " 
  61. "<image>[,<delay in ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. " 
  62. "If you only have one file, simply enter its filename.")
  63. #define REPEAT_TEXT N_("Logo animation # of loops")
  64. #define REPEAT_LONGTEXT N_("Number of loops for the logo animation." 
  65.         "-1 = continuous, 0 = disabled")
  66. #define DELAY_TEXT N_("Logo individual image time in ms")
  67. #define DELAY_LONGTEXT N_("Individual image display time of 0 - 60000 ms.")
  68. #define POSX_TEXT N_("X coordinate")
  69. #define POSX_LONGTEXT N_("X coordinate of the logo. You can move the logo " 
  70.                 "by left-clicking it." )
  71. #define POSY_TEXT N_("Y coordinate")
  72. #define POSY_LONGTEXT N_("Y coordinate of the logo. You can move the logo " 
  73.                 "by left-clicking it." )
  74. #define TRANS_TEXT N_("Transparency of the logo")
  75. #define TRANS_LONGTEXT N_("Logo transparency value " 
  76.   "(from 0 for full transparency to 255 for full opacity)." )
  77. #define POS_TEXT N_("Logo position")
  78. #define POS_LONGTEXT N_( 
  79.   "Enforce the logo position on the video " 
  80.   "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " 
  81.   "also use combinations of these values, eg 6 = top-right).")
  82. #define CFG_PREFIX "logo-"
  83. static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
  84. static const char *const ppsz_pos_descriptions[] =
  85. { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
  86.   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
  87. vlc_module_begin ()
  88.     set_capability( "sub filter", 0 )
  89.     set_callbacks( CreateFilter, DestroyFilter )
  90.     set_description( N_("Logo sub filter") )
  91.     set_shortname( N_("Logo overlay") )
  92.     set_category( CAT_VIDEO )
  93.     set_subcategory( SUBCAT_VIDEO_SUBPIC )
  94.     add_shortcut( "logo" )
  95.     add_file( CFG_PREFIX "file", NULL, NULL, FILE_TEXT, FILE_LONGTEXT, false )
  96.     add_integer( CFG_PREFIX "x", 0, NULL, POSX_TEXT, POSX_LONGTEXT, true )
  97.     add_integer( CFG_PREFIX "y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, true )
  98.     /* default to 1000 ms per image, continuously cycle through them */
  99.     add_integer( CFG_PREFIX "delay", 1000, NULL, DELAY_TEXT, DELAY_LONGTEXT, true )
  100.     add_integer( CFG_PREFIX "repeat", -1, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, true )
  101.     add_integer_with_range( CFG_PREFIX "transparency", 255, 0, 255, NULL,
  102.         TRANS_TEXT, TRANS_LONGTEXT, false )
  103.     add_integer( CFG_PREFIX "position", -1, NULL, POS_TEXT, POS_LONGTEXT, false )
  104.         change_integer_list( pi_pos_values, ppsz_pos_descriptions, NULL )
  105.     /* video output filter submodule */
  106.     add_submodule ()
  107.     set_capability( "video filter", 0 )
  108.     set_callbacks( Create, Destroy )
  109.     set_description( N_("Logo video filter") )
  110.     add_shortcut( "logo" )
  111. vlc_module_end ()
  112. static const char *const ppsz_filter_options[] = {
  113.     "file", "x", "y", "delay", "repeat", "transparency", "position", NULL
  114. };
  115. /*****************************************************************************
  116.  * Structure to hold the set of individual logo image names, times,
  117.  * transparencies
  118.  ****************************************************************************/
  119. typedef struct
  120. {
  121.     char *psz_file;    /* candidate for deletion -- not needed */
  122.     int i_delay;       /* -1 means use default delay */
  123.     int i_alpha;       /* -1 means use default alpha */
  124.     picture_t *p_pic;
  125. } logo_t;
  126. /*****************************************************************************
  127.  * Logo list structure. Common to both the vout and sub picture filter
  128.  ****************************************************************************/
  129. typedef struct
  130. {
  131.     logo_t *p_logo;         /* the parsing's result */
  132.     unsigned int i_count;   /* the number of logo images to be displayed */
  133.     int i_repeat;         /* how often to repeat the images, image time in ms */
  134.     mtime_t i_next_pic;     /* when to bring up a new logo image */
  135.     unsigned int i_counter; /* index into the list of logo images */
  136.     int i_delay;            /* default delay (0 - 60000 ms) */
  137.     int i_alpha;            /* default alpha */
  138.     char *psz_filename;     /* --logo-file string ( is it really useful
  139.                              * to store it ? ) */
  140.     vlc_mutex_t lock;
  141. } logo_list_t;
  142. /*****************************************************************************
  143.  * LoadImage: loads the logo image into memory
  144.  *****************************************************************************/
  145. static picture_t *LoadImage( vlc_object_t *p_this, char *psz_filename )
  146. {
  147.     picture_t *p_pic;
  148.     image_handler_t *p_image;
  149.     video_format_t fmt_in;
  150.     video_format_t fmt_out;
  151.     memset( &fmt_in, 0, sizeof(video_format_t) );
  152.     memset( &fmt_out, 0, sizeof(video_format_t) );
  153.     fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A');
  154.     p_image = image_HandlerCreate( p_this );
  155.     p_pic = image_ReadUrl( p_image, psz_filename, &fmt_in, &fmt_out );
  156.     image_HandlerDelete( p_image );
  157.     return p_pic;
  158. }
  159. /*****************************************************************************
  160.  * LoadLogoList: loads the logo images into memory
  161.  *****************************************************************************
  162.  * Read the logo-file input switch, obtaining a list of images and associated
  163.  * durations and transparencies.  Store the image(s), and times.  An image
  164.  * without a stated time or transparency will use the logo-delay and
  165.  * logo-transparency values.
  166.  *****************************************************************************/
  167. #define LoadLogoList( a, b ) __LoadLogoList( VLC_OBJECT( a ), b )
  168. static void __LoadLogoList( vlc_object_t *p_this, logo_list_t *p_logo_list )
  169. {
  170.     char *psz_list; /* the list: <logo>[,[<delay>[,[<alpha>]]]][;...] */
  171.     unsigned int i;
  172.     logo_t *p_logo;         /* the parsing's result */
  173.     p_logo_list->i_counter = 0;
  174.     p_logo_list->i_next_pic = 0;
  175.     psz_list = strdup( p_logo_list->psz_filename );
  176.     /* Count the number logos == number of ';' + 1 */
  177.     p_logo_list->i_count = 1;
  178.     for( i = 0; i < strlen( psz_list ); i++ )
  179.     {
  180.         if( psz_list[i] == ';' ) p_logo_list->i_count++;
  181.     }
  182.     p_logo_list->p_logo = p_logo =
  183.         (logo_t *)malloc( p_logo_list->i_count * sizeof(logo_t) );
  184.     /* Fill the data */
  185.     for( i = 0; i < p_logo_list->i_count; i++ )
  186.     {
  187.         char *p_c;
  188.         char *p_c2;
  189.         p_c = strchr( psz_list, ';' );
  190.         p_c2 = strchr( psz_list, ',' );
  191.         p_logo[i].i_alpha = -1; /* use default settings */
  192.         p_logo[i].i_delay = -1; /* use default settings */
  193.         if( p_c2 && ( p_c2 < p_c || !p_c ) )
  194.         {
  195.             /* <logo>,<delay>[,<alpha>] type */
  196.             if( p_c2[1] != ',' && p_c2[1] != ';' && p_c2[1] != '' )
  197.                 p_logo[i].i_delay = atoi( p_c2+1 );
  198.             *p_c2 = '';
  199.             if( ( p_c2 = strchr( p_c2+1, ',' ) )
  200.                 && ( p_c2 < p_c || !p_c ) && p_c2[1] != ';' && p_c2[1] != '' )
  201.                 p_logo[i].i_alpha = atoi( p_c2 + 1 );
  202.         }
  203.         else
  204.         {
  205.             /* <logo> type */
  206.             if( p_c ) *p_c = '';
  207.         }
  208.         p_logo[i].psz_file = strdup( psz_list );
  209.         p_logo[i].p_pic = LoadImage( p_this, p_logo[i].psz_file );
  210.         if( !p_logo[i].p_pic )
  211.         {
  212.             msg_Warn( p_this, "error while loading logo %s, will be skipped",
  213.                       p_logo[i].psz_file );
  214.         }
  215.         if( p_c ) psz_list = p_c + 1;
  216.     }
  217.     for( i = 0; i < p_logo_list->i_count; i++ )
  218.     {
  219.        msg_Dbg( p_this, "logo file name %s, delay %d, alpha %d",
  220.                 p_logo[i].psz_file, p_logo[i].i_delay, p_logo[i].i_alpha );
  221.     }
  222.     /* initialize so that on the first update it will wrap back to 0 */
  223.     p_logo_list->i_counter = p_logo_list->i_count;
  224. }
  225. /*****************************************************************************
  226.  * FreeLogoList
  227.  *****************************************************************************/
  228. static void FreeLogoList( logo_list_t *p_logo_list )
  229. {
  230.     unsigned int i;
  231.     FREENULL( p_logo_list->psz_filename );
  232.     for( i = 0; i < p_logo_list->i_count; i++ )
  233.     {
  234.         logo_t *p_logo = &p_logo_list->p_logo[i];
  235.         FREENULL( p_logo->psz_file );
  236.         if( p_logo->p_pic )
  237.         {
  238.             picture_Release( p_logo->p_pic );
  239.             p_logo->p_pic = NULL;
  240.         }
  241.     }
  242. }
  243. /*****************************************************************************
  244.  * vout_sys_t: logo video output method descriptor
  245.  *****************************************************************************
  246.  * This structure is part of the video output thread descriptor.
  247.  * It describes the Invert specific properties of an output thread.
  248.  *****************************************************************************/
  249. struct vout_sys_t
  250. {
  251.     logo_list_t *p_logo_list;
  252.     vout_thread_t *p_vout;
  253.     filter_t *p_blend;
  254.     int i_width, i_height;
  255.     int pos, posx, posy;
  256. };
  257. /*****************************************************************************
  258.  * Create: allocates logo video thread output method
  259.  *****************************************************************************/
  260. static int Create( vlc_object_t *p_this )
  261. {
  262.     vout_thread_t *p_vout = (vout_thread_t *)p_this;
  263.     vout_sys_t *p_sys;
  264.     logo_list_t *p_logo_list;
  265.     /* Allocate structure */
  266.     p_sys = p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
  267.     if( p_sys == NULL )
  268.         return VLC_ENOMEM;
  269.     p_logo_list = p_sys->p_logo_list = malloc( sizeof( logo_list_t ) );
  270.     if( p_logo_list == NULL )
  271.     {
  272.         free( p_sys );
  273.         return VLC_ENOMEM;
  274.     }
  275.     config_ChainParse( p_vout, CFG_PREFIX, ppsz_filter_options,
  276.                        p_vout->p_cfg );
  277.     p_logo_list->psz_filename = var_CreateGetStringCommand( p_vout,
  278.                                                             "logo-file" );
  279.     if( !p_logo_list->psz_filename || !*p_logo_list->psz_filename )
  280.     {
  281.         msg_Err( p_vout, "logo file not specified" );
  282.         free( p_logo_list->psz_filename );
  283.         free( p_sys );
  284.         return VLC_EGENERIC;
  285.     }
  286.     p_vout->pf_init = Init;
  287.     p_vout->pf_end = End;
  288.     p_vout->pf_manage = NULL;
  289.     p_vout->pf_render = Render;
  290.     p_vout->pf_display = NULL;
  291.     p_vout->pf_control = Control;
  292.     p_sys->pos = var_CreateGetIntegerCommand( p_vout, "logo-position" );
  293.     p_sys->posx = var_CreateGetIntegerCommand( p_vout, "logo-x" );
  294.     p_sys->posy = var_CreateGetIntegerCommand( p_vout, "logo-y" );
  295.     p_logo_list->i_delay = var_CreateGetIntegerCommand( p_vout, "logo-delay" );
  296.     p_logo_list->i_delay = __MAX( __MIN( p_logo_list->i_delay, 60000 ), 0 );
  297.     p_logo_list->i_repeat = var_CreateGetIntegerCommand( p_vout, "logo-repeat");
  298.     p_logo_list->i_alpha = var_CreateGetIntegerCommand( p_vout,
  299.                                                         "logo-transparency" );
  300.     p_logo_list->i_alpha = __MAX( __MIN( p_logo_list->i_alpha, 255 ), 0 );
  301.     LoadLogoList( p_vout, p_logo_list );
  302.     return VLC_SUCCESS;
  303. }
  304. /*****************************************************************************
  305.  * Init: initialize logo video thread output method
  306.  *****************************************************************************/
  307. static int Init( vout_thread_t *p_vout )
  308. {
  309.     vout_sys_t *p_sys = p_vout->p_sys;
  310.     picture_t *p_pic;
  311.     video_format_t fmt;
  312.     logo_list_t *p_logo_list = p_sys->p_logo_list;
  313.     I_OUTPUTPICTURES = 0;
  314.     memset( &fmt, 0, sizeof(video_format_t) );
  315.     /* adjust index to the next logo */
  316.     p_logo_list->i_counter =
  317.                         ( p_logo_list->i_counter + 1 )%p_logo_list->i_count;
  318.     p_pic = p_logo_list->p_logo[p_logo_list->i_counter].p_pic;
  319.     /* Initialize the output structure */
  320.     p_vout->output.i_chroma = p_vout->render.i_chroma;
  321.     p_vout->output.i_width  = p_vout->render.i_width;
  322.     p_vout->output.i_height = p_vout->render.i_height;
  323.     p_vout->output.i_aspect = p_vout->render.i_aspect;
  324.     p_vout->fmt_out = p_vout->fmt_in;
  325.     fmt = p_vout->fmt_out;
  326.     /* Load the video blending filter */
  327.     p_sys->p_blend = vlc_object_create( p_vout, sizeof(filter_t) );
  328.     vlc_object_attach( p_sys->p_blend, p_vout );
  329.     p_sys->p_blend->fmt_out.video.i_x_offset =
  330.         p_sys->p_blend->fmt_out.video.i_y_offset = 0;
  331.     p_sys->p_blend->fmt_in.video.i_x_offset =
  332.         p_sys->p_blend->fmt_in.video.i_y_offset = 0;
  333.     p_sys->p_blend->fmt_out.video.i_aspect = p_vout->render.i_aspect;
  334.     p_sys->p_blend->fmt_out.video.i_chroma = p_vout->output.i_chroma;
  335.     p_sys->p_blend->fmt_out.video.i_chroma = p_vout->output.i_chroma;
  336.     p_sys->p_blend->fmt_out.video.i_rmask  = p_vout->output.i_rmask;
  337.     p_sys->p_blend->fmt_out.video.i_gmask  = p_vout->output.i_gmask;
  338.     p_sys->p_blend->fmt_out.video.i_bmask  = p_vout->output.i_bmask;
  339.     p_sys->p_blend->fmt_out.video.i_rrshift= p_vout->output.i_rrshift;
  340.     p_sys->p_blend->fmt_out.video.i_rgshift= p_vout->output.i_rgshift;
  341.     p_sys->p_blend->fmt_out.video.i_rbshift= p_vout->output.i_rbshift;
  342.     p_sys->p_blend->fmt_out.video.i_lrshift= p_vout->output.i_lrshift;
  343.     p_sys->p_blend->fmt_out.video.i_lgshift= p_vout->output.i_lgshift;
  344.     p_sys->p_blend->fmt_out.video.i_lbshift= p_vout->output.i_lbshift;
  345.     p_sys->p_blend->fmt_in.video.i_chroma = VLC_FOURCC('Y','U','V','A');
  346.     p_sys->p_blend->fmt_in.video.i_aspect = VOUT_ASPECT_FACTOR;
  347.     p_sys->i_width =
  348.         p_sys->p_blend->fmt_in.video.i_width =
  349.             p_sys->p_blend->fmt_in.video.i_visible_width =
  350.                 p_pic ? p_pic->p[Y_PLANE].i_visible_pitch : 0;
  351.     p_sys->i_height =
  352.         p_sys->p_blend->fmt_in.video.i_height =
  353.             p_sys->p_blend->fmt_in.video.i_visible_height =
  354.                 p_pic ? p_pic->p[Y_PLANE].i_visible_lines : 0;
  355.     p_sys->p_blend->fmt_out.video.i_width =
  356.         p_sys->p_blend->fmt_out.video.i_visible_width =
  357.            p_vout->output.i_width;
  358.     p_sys->p_blend->fmt_out.video.i_height =
  359.         p_sys->p_blend->fmt_out.video.i_visible_height =
  360.             p_vout->output.i_height;
  361.     p_sys->p_blend->p_module =
  362.         module_need( p_sys->p_blend, "video blending", NULL, false );
  363.     if( !p_sys->p_blend->p_module )
  364.     {
  365.         msg_Err( p_vout, "can't open blending filter, aborting" );
  366.         vlc_object_detach( p_sys->p_blend );
  367.         vlc_object_release( p_sys->p_blend );
  368.         return VLC_EGENERIC;
  369.     }
  370.     if( p_sys->posx < 0 || p_sys->posy < 0 )
  371.     {
  372.         p_sys->posx = 0; p_sys->posy = 0;
  373.         if( p_sys->pos & SUBPICTURE_ALIGN_BOTTOM )
  374.         {
  375.             p_sys->posy = p_vout->render.i_height - p_sys->i_height;
  376.         }
  377.         else if ( !(p_sys->pos & SUBPICTURE_ALIGN_TOP) )
  378.         {
  379.             p_sys->posy = p_vout->render.i_height / 2 - p_sys->i_height / 2;
  380.         }
  381.         if( p_sys->pos & SUBPICTURE_ALIGN_RIGHT )
  382.         {
  383.             p_sys->posx = p_vout->render.i_width - p_sys->i_width;
  384.         }
  385.         else if ( !(p_sys->pos & SUBPICTURE_ALIGN_LEFT) )
  386.         {
  387.             p_sys->posx = p_vout->render.i_width / 2 - p_sys->i_width / 2;
  388.         }
  389.     }
  390.     else
  391.     {
  392.         p_sys->pos = 0;
  393.     }
  394.     /* Try to open the real video output */
  395.     msg_Dbg( p_vout, "spawning the real video output" );
  396.     p_sys->p_vout = vout_Create( p_vout, &fmt );
  397.     /* Everything failed */
  398.     if( p_sys->p_vout == NULL )
  399.     {
  400.         msg_Err( p_vout, "can't open vout, aborting" );
  401.         return VLC_EGENERIC;
  402.     }
  403.     vout_filter_AllocateDirectBuffers( p_vout, VOUT_MAX_PICTURES );
  404.     vout_filter_AddChild( p_vout, p_sys->p_vout, MouseEvent );
  405.     return VLC_SUCCESS;
  406. }
  407. /*****************************************************************************
  408.  * End: terminate logo video thread output method
  409.  *****************************************************************************/
  410. static void End( vout_thread_t *p_vout )
  411. {
  412.     vout_sys_t *p_sys = p_vout->p_sys;
  413.     vout_filter_DelChild( p_vout, p_sys->p_vout, MouseEvent );
  414.     vout_CloseAndRelease( p_sys->p_vout );
  415.     vout_filter_ReleaseDirectBuffers( p_vout );
  416.     if( p_sys->p_blend->p_module )
  417.         module_unneed( p_sys->p_blend, p_sys->p_blend->p_module );
  418.     vlc_object_detach( p_sys->p_blend );
  419.     vlc_object_release( p_sys->p_blend );
  420. }
  421. /*****************************************************************************
  422.  * Destroy: destroy logo video thread output method
  423.  *****************************************************************************/
  424. static void Destroy( vlc_object_t *p_this )
  425. {
  426.     vout_thread_t *p_vout = (vout_thread_t *)p_this;
  427.     vout_sys_t *p_sys = p_vout->p_sys;
  428.     FreeLogoList( p_sys->p_logo_list );
  429.     free( p_sys->p_logo_list );
  430.     free( p_sys );
  431. }
  432. /*****************************************************************************
  433.  * Render: render the logo onto the video
  434.  *****************************************************************************/
  435. static void Render( vout_thread_t *p_vout, picture_t *p_inpic )
  436. {
  437.     vout_sys_t *p_sys = p_vout->p_sys;
  438.     picture_t *p_outpic;
  439.     picture_t *p_pic;
  440.     logo_list_t *p_logo_list;
  441.     logo_t * p_logo;
  442.     p_logo_list = p_sys->p_logo_list;
  443.     if( p_logo_list->i_next_pic < p_inpic->date )
  444.     {
  445.         /* It's time to use a new logo */
  446.         p_logo_list->i_counter =
  447.                         ( p_logo_list->i_counter + 1 )%p_logo_list->i_count;
  448.         p_logo = &p_logo_list->p_logo[p_sys->p_logo_list->i_counter];
  449.         p_pic = p_logo->p_pic;
  450.         p_logo_list->i_next_pic = p_inpic->date + ( p_logo->i_delay != -1 ?
  451.                               p_logo->i_delay : p_logo_list->i_delay ) * 1000;
  452.         if( p_pic )
  453.         {
  454.             p_sys->i_width =
  455.                 p_sys->p_blend->fmt_in.video.i_width =
  456.                     p_sys->p_blend->fmt_in.video.i_visible_width =
  457.                         p_pic->p[Y_PLANE].i_visible_pitch;
  458.             p_sys->i_height =
  459.                 p_sys->p_blend->fmt_in.video.i_height =
  460.                     p_sys->p_blend->fmt_in.video.i_visible_height =
  461.                         p_pic->p[Y_PLANE].i_visible_lines;
  462.             if( p_sys->pos )
  463.             {
  464.                 if( p_sys->pos & SUBPICTURE_ALIGN_BOTTOM )
  465.                 {
  466.                     p_sys->posy = p_vout->render.i_height - p_sys->i_height;
  467.                 }
  468.                 else if ( !(p_sys->pos & SUBPICTURE_ALIGN_TOP) )
  469.                 {
  470.                     p_sys->posy = p_vout->render.i_height/2 - p_sys->i_height/2;
  471.                 }
  472.                 if( p_sys->pos & SUBPICTURE_ALIGN_RIGHT )
  473.                 {
  474.                     p_sys->posx = p_vout->render.i_width - p_sys->i_width;
  475.                 }
  476.                 else if ( !(p_sys->pos & SUBPICTURE_ALIGN_LEFT) )
  477.                 {
  478.                     p_sys->posx = p_vout->render.i_width/2 - p_sys->i_width/2;
  479.                 }
  480.             }
  481.         }
  482.     }
  483.     else
  484.     {
  485.         p_logo = &p_logo_list->p_logo[p_sys->p_logo_list->i_counter];
  486.         p_pic = p_logo->p_pic;
  487.     }
  488.     /* This is a new frame. Get a structure from the video_output. */
  489.     while( !(p_outpic = vout_CreatePicture( p_sys->p_vout, 0, 0, 0 )) )
  490.     {
  491.         if( !vlc_object_alive (p_vout) || p_vout->b_error ) return;
  492.         msleep( VOUT_OUTMEM_SLEEP );
  493.     }
  494.     picture_Copy( p_outpic, p_inpic );
  495.     if( p_pic )
  496.         p_sys->p_blend->pf_video_blend( p_sys->p_blend, p_outpic,
  497.                                         p_pic, p_sys->posx, p_sys->posy,
  498.                                         p_logo->i_alpha != -1 ? p_logo->i_alpha
  499.                                         : p_logo_list->i_alpha );
  500.     vout_DisplayPicture( p_sys->p_vout, p_outpic );
  501. }
  502. /*****************************************************************************
  503.  * MouseEvent: callback for mouse events
  504.  *****************************************************************************/
  505. static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
  506.                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
  507. {
  508.     vout_thread_t *p_vout = p_data;
  509.     assert( p_this == VLC_OBJECT(p_vout->p_sys->p_vout) );
  510.     VLC_UNUSED(oldval);
  511.     vout_sys_t *p_sys = p_vout->p_sys;
  512.     const int i_delta = newval.i_int - oldval.i_int;
  513.     const int i_bdown = var_GetInteger( p_sys->p_vout, "mouse-button-down" );
  514.     if( (i_bdown & 0x1) == 0 )
  515.         goto forward;
  516.     int i_x, i_y;
  517.     int i_dx = 0;
  518.     int i_dy = 0;
  519.     if( psz_var[6] == 'x' )
  520.     {
  521.         i_y = var_GetInteger( p_sys->p_vout, "mouse-y" );
  522.         i_x = newval.i_int;
  523.         i_dx = i_delta;
  524.     }
  525.     else if( psz_var[6] == 'y' )
  526.     {
  527.         i_y = newval.i_int;
  528.         i_x = var_GetInteger( p_sys->p_vout, "mouse-x" );
  529.         i_dy = i_delta;
  530.     }
  531.     else
  532.     {
  533.         goto forward;
  534.     }
  535.     /* FIXME missing lock */
  536.     if( i_x < (int)p_sys->posx ||
  537.         i_y < (int)p_sys->posy ||
  538.         i_x > (int)(p_sys->posx + p_sys->i_width) ||
  539.         i_y > (int)(p_sys->posy + p_sys->i_height) )
  540.         goto forward;
  541.     p_sys->posx = __MIN( __MAX( p_sys->posx + i_dx, 0 ),
  542.                          p_vout->output.i_width - p_sys->i_width );
  543.     p_sys->posy = __MIN( __MAX( p_sys->posy + i_dy, 0 ),
  544.                          p_vout->output.i_height - p_sys->i_height );
  545.     return VLC_SUCCESS;
  546. forward:
  547.     return var_Set( p_vout, psz_var, newval );
  548. }
  549. /*****************************************************************************
  550.  * Control: control facility for the vout (forwards to child vout)
  551.  *****************************************************************************/
  552. static int Control( vout_thread_t *p_vout, int i_query, va_list args )
  553. {
  554.     return vout_vaControl( p_vout->p_sys->p_vout, i_query, args );
  555. }
  556. /*****************************************************************************
  557.  * filter_sys_t: logo filter descriptor
  558.  *****************************************************************************/
  559. struct filter_sys_t
  560. {
  561.     logo_list_t *p_logo_list;
  562.     int pos, posx, posy;
  563.     bool b_absolute;
  564.     mtime_t i_last_date;
  565.     /* On the fly control variable */
  566.     bool b_need_update;
  567. };
  568. static subpicture_t *Filter( filter_t *, mtime_t );
  569. /*****************************************************************************
  570.  * CreateFilter: allocates logo video filter
  571.  *****************************************************************************/
  572. static int CreateFilter( vlc_object_t *p_this )
  573. {
  574.     filter_t *p_filter = (filter_t *)p_this;
  575.     filter_sys_t *p_sys;
  576.     logo_list_t *p_logo_list;
  577.     /* Allocate structure */
  578.     p_sys = p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  579.     if( p_sys == NULL )
  580.         return VLC_ENOMEM;
  581.     p_logo_list = p_sys->p_logo_list = malloc( sizeof( logo_list_t ) );
  582.     if( p_logo_list == NULL )
  583.     {
  584.         free( p_sys );
  585.         return VLC_ENOMEM;
  586.     }
  587.     config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,
  588.                        p_filter->p_cfg );
  589.     /* Hook used for callback variables */
  590.     p_logo_list->psz_filename =
  591.         var_CreateGetStringCommand( p_filter, "logo-file" );
  592.     if( !p_logo_list->psz_filename || !*p_logo_list->psz_filename )
  593.     {
  594.         msg_Err( p_this, "logo file not specified" );
  595.         free( p_sys );
  596.         free( p_logo_list );
  597.         return VLC_EGENERIC;
  598.     }
  599.     p_sys->posx = var_CreateGetIntegerCommand( p_filter, "logo-x" );
  600.     p_sys->posy = var_CreateGetIntegerCommand( p_filter, "logo-y" );
  601.     p_sys->pos = var_CreateGetIntegerCommand( p_filter, "logo-position" );
  602.     p_logo_list->i_alpha = var_CreateGetIntegerCommand( p_filter,
  603.                                                         "logo-transparency");
  604.     p_logo_list->i_alpha = __MAX( __MIN( p_logo_list->i_alpha, 255 ), 0 );
  605.     p_logo_list->i_delay =
  606.         var_CreateGetIntegerCommand( p_filter, "logo-delay" );
  607.     p_logo_list->i_repeat =
  608.         var_CreateGetIntegerCommand( p_filter, "logo-repeat" );
  609.     vlc_mutex_init( &p_logo_list->lock );
  610.     LoadLogoList( p_this, p_logo_list );
  611.     var_AddCallback( p_filter, "logo-file", LogoCallback, p_sys );
  612.     var_AddCallback( p_filter, "logo-x", LogoCallback, p_sys );
  613.     var_AddCallback( p_filter, "logo-y", LogoCallback, p_sys );
  614.     var_AddCallback( p_filter, "logo-position", LogoCallback, p_sys );
  615.     var_AddCallback( p_filter, "logo-transparency", LogoCallback, p_sys );
  616.     var_AddCallback( p_filter, "logo-repeat", LogoCallback, p_sys );
  617.     /* Misc init */
  618.     p_filter->pf_sub_filter = Filter;
  619.     p_sys->b_need_update = true;
  620.     p_sys->i_last_date = 0;
  621.     return VLC_SUCCESS;
  622. }
  623. /*****************************************************************************
  624.  * DestroyFilter: destroy logo video filter
  625.  *****************************************************************************/
  626. static void DestroyFilter( vlc_object_t *p_this )
  627. {
  628.     filter_t *p_filter = (filter_t *)p_this;
  629.     filter_sys_t *p_sys = p_filter->p_sys;
  630.     /* Delete the logo variables from INPUT */
  631.     var_Destroy( p_filter->p_libvlc, "logo-file" );
  632.     var_Destroy( p_filter->p_libvlc, "logo-x" );
  633.     var_Destroy( p_filter->p_libvlc, "logo-y" );
  634.     var_Destroy( p_filter->p_libvlc, "logo-delay" );
  635.     var_Destroy( p_filter->p_libvlc, "logo-repeat" );
  636.     var_Destroy( p_filter->p_libvlc, "logo-position" );
  637.     var_Destroy( p_filter->p_libvlc, "logo-transparency" );
  638.     vlc_mutex_destroy( &p_sys->p_logo_list->lock );
  639.     FreeLogoList( p_sys->p_logo_list );
  640.     free( p_sys->p_logo_list );
  641.     free( p_sys );
  642. }
  643. /*****************************************************************************
  644.  * Filter: the whole thing
  645.  *****************************************************************************
  646.  * This function outputs subpictures at regular time intervals.
  647.  *****************************************************************************/
  648. static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
  649. {
  650.     filter_sys_t *p_sys = p_filter->p_sys;
  651.     logo_list_t *p_logo_list = p_sys->p_logo_list;
  652.     subpicture_t *p_spu;
  653.     subpicture_region_t *p_region;
  654.     video_format_t fmt;
  655.     picture_t *p_pic;
  656.     logo_t *p_logo;
  657.     vlc_mutex_lock( &p_logo_list->lock );
  658.     /* Basic test:  b_need_update occurs on a dynamic change,
  659.                     & i_next_pic is the general timer, when to
  660.                     look at updating the logo image */
  661.     if( ( ( !p_sys->b_need_update ) && ( p_logo_list->i_next_pic > date ) )
  662.         || !p_logo_list->i_repeat )
  663.     {
  664.         vlc_mutex_unlock( &p_logo_list->lock );
  665.         return 0;
  666.     }
  667.     /* prior code tested on && p_sys->i_last_date +5000000 > date ) return 0; */
  668.     /* adjust index to the next logo */
  669.     p_logo_list->i_counter =
  670.                         ( p_logo_list->i_counter + 1 )%p_logo_list->i_count;
  671.     p_logo = &p_logo_list->p_logo[p_logo_list->i_counter];
  672.     p_pic = p_logo->p_pic;
  673.     /* Allocate the subpicture internal data. */
  674.     p_spu = filter_NewSubpicture( p_filter );
  675.     if( !p_spu )
  676.     {
  677.         vlc_mutex_unlock( &p_logo_list->lock );
  678.         return NULL;
  679.     }
  680.     p_spu->b_absolute = p_sys->b_absolute;
  681.     p_spu->i_start = p_sys->i_last_date = date;
  682.     p_spu->i_stop = 0;
  683.     p_spu->b_ephemer = true;
  684.     p_sys->b_need_update = false;
  685.     p_logo_list->i_next_pic = date +
  686.     ( p_logo->i_delay != -1 ? p_logo->i_delay : p_logo_list->i_delay ) * 1000;
  687.     if( p_logo_list->i_repeat != -1
  688.         && p_logo_list->i_counter == 0 )
  689.     {
  690.         p_logo_list->i_repeat--;
  691.         if( p_logo_list->i_repeat == 0 )
  692.         {
  693.             vlc_mutex_unlock( &p_logo_list->lock );
  694.             return p_spu;
  695.         }
  696.     }
  697.     if( !p_pic || !p_logo->i_alpha
  698.         || ( p_logo->i_alpha == -1 && !p_logo_list->i_alpha ) )
  699.     {
  700.         /* Send an empty subpicture to clear the display */
  701.         vlc_mutex_unlock( &p_logo_list->lock );
  702.         return p_spu;
  703.     }
  704.     /* Create new SPU region */
  705.     memset( &fmt, 0, sizeof(video_format_t) );
  706.     fmt.i_chroma = VLC_FOURCC('Y','U','V','A');
  707.     fmt.i_aspect = VOUT_ASPECT_FACTOR;
  708.     fmt.i_sar_num = fmt.i_sar_den = 1;
  709.     fmt.i_width = fmt.i_visible_width = p_pic->p[Y_PLANE].i_visible_pitch;
  710.     fmt.i_height = fmt.i_visible_height = p_pic->p[Y_PLANE].i_visible_lines;
  711.     fmt.i_x_offset = fmt.i_y_offset = 0;
  712.     p_region = subpicture_region_New( &fmt );
  713.     if( !p_region )
  714.     {
  715.         msg_Err( p_filter, "cannot allocate SPU region" );
  716.         p_filter->pf_sub_buffer_del( p_filter, p_spu );
  717.         vlc_mutex_unlock( &p_logo_list->lock );
  718.         return NULL;
  719.     }
  720.     /* FIXME the copy is probably not needed anymore */
  721.     picture_Copy( p_region->p_picture, p_pic );
  722.     vlc_mutex_unlock( &p_logo_list->lock );
  723.     /*  where to locate the logo: */
  724.     if( p_sys->pos < 0 )
  725.     {   /*  set to an absolute xy */
  726.         p_region->i_align = OSD_ALIGN_RIGHT | OSD_ALIGN_TOP;
  727.         p_spu->b_absolute = true;
  728.     }
  729.     else
  730.     {   /* set to one of the 9 relative locations */
  731.         p_region->i_align = p_sys->pos;
  732.         p_spu->b_absolute = false;
  733.     }
  734.     p_region->i_x = p_sys->posx;
  735.     p_region->i_y = p_sys->posy;
  736.     p_spu->p_region = p_region;
  737.     p_spu->i_alpha = ( p_logo->i_alpha != -1 ?
  738.                        p_logo->i_alpha : p_logo_list->i_alpha );
  739.     return p_spu;
  740. }
  741. /*****************************************************************************
  742.  * Callback to update params on the fly
  743.  *****************************************************************************/
  744. static int LogoCallback( vlc_object_t *p_this, char const *psz_var,
  745.                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
  746. {
  747.     VLC_UNUSED(oldval);
  748.     filter_sys_t *p_sys = (filter_sys_t *)p_data;
  749.     logo_list_t *p_logo_list = p_sys->p_logo_list;
  750.     if( !strcmp( psz_var, "logo-file" ) )
  751.     {
  752.         vlc_mutex_lock( &p_logo_list->lock );
  753.         FreeLogoList( p_logo_list );
  754.         p_logo_list->psz_filename = strdup( newval.psz_string );
  755.         LoadLogoList( p_this, p_logo_list );
  756.         vlc_mutex_unlock( &p_logo_list->lock );
  757.     }
  758.     else if ( !strcmp( psz_var, "logo-x" ) )
  759.     {
  760.         p_sys->posx = newval.i_int;
  761.     }
  762.     else if ( !strcmp( psz_var, "logo-y" ) )
  763.     {
  764.         p_sys->posy = newval.i_int;
  765.     }
  766.     else if ( !strcmp( psz_var, "logo-position" ) )
  767.     {
  768.         p_sys->pos = newval.i_int;
  769.     }
  770.     else if ( !strcmp( psz_var, "logo-transparency" ) )
  771.     {
  772.         vlc_mutex_lock( &p_logo_list->lock );
  773.         p_logo_list->i_alpha = __MAX( __MIN( newval.i_int, 255 ), 0 );
  774.         vlc_mutex_unlock( &p_logo_list->lock );
  775.     }
  776.     else if ( !strcmp( psz_var, "logo-repeat" ) )
  777.     {
  778.         vlc_mutex_lock( &p_logo_list->lock );
  779.         p_logo_list->i_repeat = newval.i_int;
  780.         vlc_mutex_unlock( &p_logo_list->lock );
  781.     }
  782.     p_sys->b_need_update = true;
  783.     return VLC_SUCCESS;
  784. }