📄 osdmenu.c
字号:
/***************************************************************************** * osdmenu.c: osd filter module ***************************************************************************** * Copyright (C) 2004-2007 M2X * $Id$ * * 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 *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <vlc_plugin.h>#include <vlc_vout.h>#include <vlc_filter.h>#include <vlc_osd.h>/***************************************************************************** * Module descriptor *****************************************************************************//* FIXME: Future extension make the definition file in XML format. */#define OSD_FILE_TEXT N_("Configuration file")#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." )#define OSD_ALPHA_TEXT N_("Alpha transparency value (default 255)")#define OSD_ALPHA_LONGTEXT N_( \ "The transparency of the OSD menu can be changed by giving a value " \ "between 0 and 255. A lower value specifies more transparency a higher " \ "means less transparency. The default is being not transparent " \ "(value 255) the minimum is fully transparent (value 0)." )static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };static const char *const 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 * );static int OSDMenuCallback( vlc_object_t *, char const *, vlc_value_t, vlc_value_t, void * );static int MouseEvent( 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 300#define OSD_UPDATE_MAX 1000vlc_module_begin(); add_integer( OSD_CFG "x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, false ); add_integer( OSD_CFG "y", -1, NULL, POSY_TEXT, POSY_LONGTEXT, false ); add_integer( OSD_CFG "position", 8, NULL, POS_TEXT, POS_LONGTEXT, false ); change_integer_list( pi_pos_values, ppsz_pos_descriptions, NULL ); add_string( OSD_CFG "file", OSD_DEFAULT_CFG, NULL, OSD_FILE_TEXT, OSD_FILE_LONGTEXT, false ); add_string( OSD_CFG "file-path", NULL, NULL, OSD_PATH_TEXT, OSD_PATH_LONGTEXT, false ); add_integer( OSD_CFG "timeout", 15, NULL, TIMEOUT_TEXT, TIMEOUT_LONGTEXT, false ); add_integer_with_range( OSD_CFG "update", OSD_UPDATE_DEFAULT, OSD_UPDATE_MIN, OSD_UPDATE_MAX, NULL, OSD_UPDATE_TEXT, OSD_UPDATE_LONGTEXT, true ); add_integer_with_range( OSD_CFG "alpha", 255, 0, 255, NULL, OSD_ALPHA_TEXT, OSD_ALPHA_LONGTEXT, true ); set_capability( "sub filter", 100 ); set_description( N_("On Screen Display menu") ); set_shortname( N_("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{ int i_position; /* relative positioning of SPU images */ int i_x; /* absolute positioning of SPU images */ int i_y; /* absolute 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 */ bool b_absolute; /* do we use absolute positioning or relative? */ bool b_update; /* Update OSD Menu by sending SPU objects */ bool 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 */ int i_alpha; /* alpha transparency value */ char *psz_file; /* OSD Menu configuration file */ char *psz_path; /* Path to OSD Menu pictures */ osd_menu_t *p_menu; /* pointer to OSD Menu object */ /* menu interaction */ vout_thread_t *p_vout; bool b_clicked; uint32_t i_mouse_x; uint32_t i_mouse_y;};/***************************************************************************** * 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; filter_sys_t *p_sys = NULL; p_filter->p_sys = p_sys = (filter_sys_t *) malloc( sizeof(filter_sys_t) ); if( !p_filter->p_sys ) return VLC_ENOMEM; memset( p_sys, 0, sizeof(filter_sys_t) ); /* Populating struct */ p_sys->psz_path = var_CreateGetString( p_this, OSD_CFG "file-path" ); p_sys->psz_file = var_CreateGetString( p_this, OSD_CFG "file" ); if( (p_sys->psz_file == NULL) || (*p_sys->psz_file == '\0') ) { msg_Err( p_filter, "unable to get filename" ); goto error; } p_sys->i_x = var_CreateGetIntegerCommand( p_this, OSD_CFG "x" ); p_sys->i_y = var_CreateGetIntegerCommand( p_this, OSD_CFG "y" ); p_sys->i_position = var_CreateGetIntegerCommand( p_this, OSD_CFG "position" ); p_sys->i_alpha = var_CreateGetIntegerCommand( p_this, OSD_CFG "alpha" ); /* in micro seconds - divide by 2 to match user expectations */ p_sys->i_timeout = var_CreateGetIntegerCommand( p_this, OSD_CFG "timeout" ); p_sys->i_timeout = (mtime_t)(p_sys->i_timeout * 1000000) >> 2; p_sys->i_update = var_CreateGetIntegerCommand( p_this, OSD_CFG "update" ); p_sys->i_update = (mtime_t)(p_sys->i_update * 1000); /* in micro seconds */ var_AddCallback( p_filter, OSD_CFG "position", OSDMenuCallback, p_sys ); var_AddCallback( p_filter, OSD_CFG "timeout", OSDMenuCallback, p_sys ); var_AddCallback( p_filter, OSD_CFG "update", OSDMenuCallback, p_sys ); var_AddCallback( p_filter, OSD_CFG "alpha", OSDMenuCallback, p_sys ); /* Load the osd menu subsystem */ p_sys->p_menu = osd_MenuCreate( p_this, p_sys->psz_file ); if( p_sys->p_menu == NULL ) goto error; p_sys->p_menu->i_position = p_sys->i_position; /* Check if menu position was overridden */ p_sys->b_absolute = true; if( (p_sys->i_x < 0) || (p_sys->i_y < 0) ) { p_sys->b_absolute = false; p_sys->p_menu->i_x = 0; p_sys->p_menu->i_y = 0; } else { p_sys->p_menu->i_x = p_sys->i_x; p_sys->p_menu->i_y = p_sys->i_y; } /* Set up p_filter */ p_sys->i_last_date = mdate(); /* Keep track of OSD Events */ p_sys->b_update = false; p_sys->b_visible = false; p_sys->b_clicked = false; /* Listen to osd menu core updates/visible settings. */ var_AddCallback( p_sys->p_menu, "osd-menu-update", OSDMenuUpdateEvent, p_filter ); var_AddCallback( p_sys->p_menu, "osd-menu-visible", OSDMenuVisibleEvent, p_filter ); /* Attach subpicture filter callback */ p_filter->pf_sub_filter = Filter; p_sys->p_vout = vlc_object_find( p_this, VLC_OBJECT_VOUT, FIND_ANYWHERE ); if( p_sys->p_vout ) { var_AddCallback( p_sys->p_vout, "mouse-x", MouseEvent, p_sys ); var_AddCallback( p_sys->p_vout, "mouse-y", MouseEvent, p_sys ); var_AddCallback( p_sys->p_vout, "mouse-clicked", MouseEvent, p_sys ); } es_format_Init( &p_filter->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) ); p_filter->fmt_out.i_priority = 0; return VLC_SUCCESS;error: msg_Err( p_filter, "osdmenu filter discarded" ); free( p_sys->psz_path ); free( p_sys->psz_file ); free( p_sys ); return VLC_EGENERIC;}/***************************************************************************** * DestroyFilter: Make a clean exit of this plugin *****************************************************************************/static void DestroyFilter( vlc_object_t *p_this ){ filter_t *p_filter = (filter_t*)p_this; filter_sys_t *p_sys = p_filter->p_sys; var_DelCallback( p_filter, OSD_CFG "position", OSDMenuCallback, p_sys ); var_DelCallback( p_filter, OSD_CFG "timeout", OSDMenuCallback, p_sys ); var_DelCallback( p_filter, OSD_CFG "update", OSDMenuCallback, p_sys ); var_DelCallback( p_filter, OSD_CFG "alpha", OSDMenuCallback, p_sys ); if( p_sys ) { var_DelCallback( p_sys->p_menu, "osd-menu-update", OSDMenuUpdateEvent, p_filter ); var_DelCallback( p_sys->p_menu, "osd-menu-visible", OSDMenuVisibleEvent, p_filter ); } if( p_sys && p_sys->p_vout ) { var_DelCallback( p_sys->p_vout, "mouse-x", MouseEvent, p_sys ); var_DelCallback( p_sys->p_vout, "mouse-y", MouseEvent, p_sys ); var_DelCallback( p_sys->p_vout, "mouse-clicked", MouseEvent, p_sys ); vlc_object_release( p_sys->p_vout ); p_sys->p_vout = NULL; } var_Destroy( p_this, OSD_CFG "file-path" ); var_Destroy( p_this, OSD_CFG "file" ); var_Destroy( p_this, OSD_CFG "x" ); var_Destroy( p_this, OSD_CFG "y" ); var_Destroy( p_this, OSD_CFG "position" ); var_Destroy( p_this, OSD_CFG "timeout" ); var_Destroy( p_this, OSD_CFG "update" ); var_Destroy( p_this, OSD_CFG "alpha" ); if( p_sys ) { osd_MenuDelete( p_filter, p_sys->p_menu ); free( p_sys->psz_path ); free( p_sys->psz_file ); free( p_sys ); }}/***************************************************************************** * OSDMenuEvent: callback for OSD Menu events *****************************************************************************/static int OSDMenuVisibleEvent( vlc_object_t *p_this, char const *psz_var, vlc_value_t oldval, vlc_value_t newval, void *p_data ){ VLC_UNUSED(p_this); VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval); filter_t *p_filter = (filter_t *) p_data; p_filter->p_sys->b_visible = true; p_filter->p_sys->b_update = true; return VLC_SUCCESS;}static int OSDMenuUpdateEvent( vlc_object_t *p_this, char const *psz_var, vlc_value_t oldval, vlc_value_t newval, void *p_data ){ VLC_UNUSED(p_this); VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval); filter_t *p_filter = (filter_t *) p_data; filter_sys_t *p_sys = p_filter->p_sys; p_sys->b_update = p_sys->b_visible ? true : false; p_sys->i_end_date = (mtime_t) 0; return VLC_SUCCESS;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -