⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osdmenu.c

📁 uclinux 下的vlc播放器源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * osdmenu.c: osd filter module ***************************************************************************** * Copyright (C) 2004-2005 M2X * $Id: osdmenu.c 17015 2006-10-10 08:38:37Z xtophe $ * * Authors: Jean-Paul Saman <jpsaman #_at_# m2x dot nl> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implid warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>#include <string.h>#include <vlc/vlc.h>#include <vlc/input.h>#include <vlc_filter.h>#include <vlc_video.h>#include <vlc_osd.h>/***************************************************************************** * Module descriptor *****************************************************************************//* FIXME: Future extension make the definition file in XML format. */#define OSD_FILE_TEXT N_("Configuration file")/// \bug [String] missing dot#define OSD_FILE_LONGTEXT N_( \    "Configuration file for the OSD Menu" )#define OSD_PATH_TEXT N_("Path to OSD menu images")#define OSD_PATH_LONGTEXT N_( \    "Path to the OSD menu images. This will override the path defined in the " \    "OSD configuration file." )#define POSX_TEXT N_("X coordinate")#define POSX_LONGTEXT N_("You can move the OSD menu by left-clicking on it." )#define POSY_TEXT N_("Y coordinate")#define POSY_LONGTEXT N_("You can move the OSD menu by left-clicking on it." )#define POS_TEXT N_("Menu position")#define POS_LONGTEXT N_( \  "You can enforce the OSD menu position on the video " \  "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \  "also use combinations of these values, eg. 6 = top-right).")#define TIMEOUT_TEXT N_("Menu timeout")#define TIMEOUT_LONGTEXT N_( \    "OSD menu pictures get a default timeout of 15 seconds added to their " \    "remaining time. This will ensure that they are at least the specified " \    "time visible.")#define OSD_UPDATE_TEXT N_("Menu update interval" )#define OSD_UPDATE_LONGTEXT N_( \    "The default is to update the OSD menu picture every 200 ms. Shorten the" \    " update time for environments that experience transmissions errors. " \    "Be careful with this option as encoding OSD menu pictures is very " \    "computing intensive. The range is 0 - 1000 ms." )static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };static char *ppsz_pos_descriptions[] ={ N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),  N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };/* subfilter functions */static int  CreateFilter ( vlc_object_t * );static void DestroyFilter( vlc_object_t * );static subpicture_t *Filter( filter_t *, mtime_t );static int OSDMenuUpdateEvent( vlc_object_t *, char const *,                    vlc_value_t, vlc_value_t, void * );                    static int OSDMenuVisibleEvent( vlc_object_t *, char const *,                    vlc_value_t, vlc_value_t, void * );#define OSD_CFG "osdmenu-"#if defined( WIN32 ) || defined( UNDER_CE )#define OSD_DEFAULT_CFG "osdmenu/default.cfg"#else#define OSD_DEFAULT_CFG "share/osdmenu/default.cfg"#endif#define OSD_UPDATE_MIN     0#define OSD_UPDATE_DEFAULT 0#define OSD_UPDATE_MAX     1000vlc_module_begin();    add_integer( OSD_CFG "x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE );    add_integer( OSD_CFG "y", -1, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE );    add_integer( OSD_CFG "position", 8, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE );        change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );    add_string( OSD_CFG "file", OSD_DEFAULT_CFG, NULL, OSD_FILE_TEXT,        OSD_FILE_LONGTEXT, VLC_FALSE );    add_string( OSD_CFG "file-path", NULL, NULL, OSD_PATH_TEXT,        OSD_PATH_LONGTEXT, VLC_FALSE );    add_integer( OSD_CFG "timeout", 15, NULL, TIMEOUT_TEXT,        TIMEOUT_LONGTEXT, VLC_FALSE );    add_integer_with_range( OSD_CFG "update", OSD_UPDATE_DEFAULT,        OSD_UPDATE_MIN, OSD_UPDATE_MAX, NULL, OSD_UPDATE_TEXT,        OSD_UPDATE_LONGTEXT, VLC_TRUE );    set_capability( "sub filter", 100 );    set_description( _("On Screen Display menu") );    set_shortname( _("OSD menu") );    add_shortcut( "osdmenu" );/*    set_category( CAT_VIDEO );    set_subcategory( SUBCAT_VIDEO_SUBPIC );*/    set_callbacks( CreateFilter, DestroyFilter );vlc_module_end();/***************************************************************************** * Sub filter code *****************************************************************************//***************************************************************************** * Local prototypes *****************************************************************************/struct filter_sys_t{    vlc_mutex_t  lock;    int          position;      /* relative positioning of SPU images */    mtime_t      i_last_date;   /* last mdate SPU object has been sent to SPU subsytem */    mtime_t      i_timeout;     /* duration SPU object is valid on the video output in seconds */    vlc_bool_t   b_absolute;    /* do we use absolute positioning or relative? */    vlc_bool_t   b_update;      /* Update OSD Menu by sending SPU objects */    vlc_bool_t   b_visible;     /* OSD Menu is visible */    mtime_t      i_update;      /* Update the OSD menu every n ms */    mtime_t      i_end_date;    /* End data of display OSD menu */    char        *psz_file;      /* OSD Menu configuration file */    osd_menu_t  *p_menu;        /* pointer to OSD Menu object */};/***************************************************************************** * CreateFilter: Create the filter and open the definition file *****************************************************************************/static int CreateFilter ( vlc_object_t *p_this ){    filter_t *p_filter = (filter_t *)p_this;    vlc_value_t val;    int i_posx, i_posy;    p_filter->p_sys = (filter_sys_t *) malloc( sizeof( filter_sys_t ) );    if( !p_filter->p_sys )    {        msg_Err( p_filter, "out of memory" );        return VLC_ENOMEM;    }    /* Populating struct */    p_filter->p_sys->p_menu = NULL;    p_filter->p_sys->psz_file = NULL;    vlc_mutex_init( p_filter, &p_filter->p_sys->lock );    p_filter->p_sys->psz_file = config_GetPsz( p_filter, OSD_CFG "file" );    if( p_filter->p_sys->psz_file == NULL || *p_filter->p_sys->psz_file == '\0' )     {        msg_Err( p_filter, "unable to get filename" );        goto error;    }    var_Create( p_this, OSD_CFG "position", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_this, OSD_CFG "position", &val );    p_filter->p_sys->position = val.i_int;    var_Create( p_this, OSD_CFG "x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_this, OSD_CFG "x", &val );    i_posx = val.i_int;    var_Create( p_this, OSD_CFG "y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_this, OSD_CFG "y", &val );    i_posy = val.i_int;    /* in micro seconds - divide by 2 to match user expectations */    var_Create( p_this, OSD_CFG "timeout", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_this, OSD_CFG "timeout", &val );    p_filter->p_sys->i_timeout = (mtime_t)(val.i_int * 1000000) >> 2;     var_Create( p_this, OSD_CFG "update", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );    var_Get( p_this, OSD_CFG "update", &val );    p_filter->p_sys->i_update = (mtime_t)(val.i_int * 1000); /* in micro seconds */    /* Load the osd menu subsystem */    p_filter->p_sys->p_menu = osd_MenuCreate( p_this, p_filter->p_sys->psz_file );    if( p_filter->p_sys->p_menu == NULL )        goto error;    /* Check if menu position was overridden */    p_filter->p_sys->b_absolute = VLC_TRUE;    if( i_posx < 0 || i_posy < 0)    {        p_filter->p_sys->b_absolute = VLC_FALSE;        p_filter->p_sys->p_menu->i_x = 0;        p_filter->p_sys->p_menu->i_y = 0;    }    else if( i_posx >= 0 || i_posy >= 0 )    {        p_filter->p_sys->p_menu->i_x = i_posx;        p_filter->p_sys->p_menu->i_y = i_posy;    }    else if( p_filter->p_sys->p_menu->i_x < 0 || p_filter->p_sys->p_menu->i_y < 0 )    {        p_filter->p_sys->b_absolute = VLC_FALSE;        p_filter->p_sys->p_menu->i_x = 0;        p_filter->p_sys->p_menu->i_y = 0;    }    /* Set up p_filter */    p_filter->p_sys->i_last_date = mdate();    /* Keep track of OSD Events */    p_filter->p_sys->b_update  = VLC_FALSE;    p_filter->p_sys->b_visible = VLC_FALSE;    var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-update", OSDMenuUpdateEvent, p_filter );            var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-visible", OSDMenuVisibleEvent, p_filter );            /* Attach subpicture filter callback */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -