00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <stdlib.h>
00028 #include <string.h>
00029
00030 #include <time.h>
00031
00032 #include <vlc/vlc.h>
00033 #include <vlc/vout.h>
00034
00035 #include "vlc_filter.h"
00036 #include "vlc_block.h"
00037 #include "vlc_osd.h"
00038
00039
00040
00041
00042 static int CreateFilter ( vlc_object_t * );
00043 static void DestroyFilter( vlc_object_t * );
00044 static subpicture_t *Filter( filter_t *, mtime_t );
00045 static int TimeCallback( vlc_object_t *p_this, char const *psz_var,
00046 vlc_value_t oldval, vlc_value_t newval,
00047 void *p_data );
00048 static int pi_color_values[] = { 0xf0000000, 0x00000000, 0x00808080, 0x00C0C0C0,
00049 0x00FFFFFF, 0x00800000, 0x00FF0000, 0x00FF00FF, 0x00FFFF00,
00050 0x00808000, 0x00008000, 0x00008080, 0x0000FF00, 0x00800080,
00051 0x00000080, 0x000000FF, 0x0000FFFF};
00052 static char *ppsz_color_descriptions[] = { N_("Default"), N_("Black"),
00053 N_("Gray"), N_("Silver"), N_("White"), N_("Maroon"), N_("Red"),
00054 N_("Fuchsia"), N_("Yellow"), N_("Olive"), N_("Green"),
00055 N_("Teal"), N_("Lime"), N_("Purple"), N_("Navy"), N_("Blue"),
00056 N_("Aqua") };
00057
00058
00059
00060
00061 struct filter_sys_t
00062 {
00063 int i_xoff, i_yoff;
00064 char *psz_format;
00065 int i_pos;
00066 int i_font_color, i_font_opacity, i_font_size;
00067
00068 time_t last_time;
00069 };
00070
00071 #define MSG_TEXT N_("Time format string (%Y%m%d %H%M%S)")
00072 #define MSG_LONGTEXT N_("Time format string (%Y = year, %m = month, %d = day, %H = hour, %M = minute, %S = second")
00073 #define POSX_TEXT N_("X offset, from left")
00074 #define POSX_LONGTEXT N_("X offset, from the left screen edge" )
00075 #define POSY_TEXT N_("Y offset, from the top")
00076 #define POSY_LONGTEXT N_("Y offset, down from the top" )
00077 #define OPACITY_TEXT N_("Opacity")
00078 #define OPACITY_LONGTEXT N_("The opacity (inverse of transparency) of " \
00079 "overlay text. 0 = transparent, 255 = totally opaque. " )
00080 #define SIZE_TEXT N_("Font size, pixels")
00081 #define SIZE_LONGTEXT N_("Specify the font size, in pixels, " \
00082 "with -1 = use freetype-fontsize" )
00083
00084 #define COLOR_TEXT N_("Text Default Color")
00085 #define COLOR_LONGTEXT N_("The color of overlay text. 1 byte for each color, hexadecimal. " \
00086 "#000000 = all colors off, " \
00087 "0xFF0000 = just Red, 0xFFFFFF = all color on [White]" )
00088 #define POS_TEXT N_("Time position")
00089 #define POS_LONGTEXT N_( \
00090 "You can enforce the time position on the video " \
00091 "(0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
00092 "also use combinations of these values by adding them).")
00093
00094 static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
00095 static char *ppsz_pos_descriptions[] =
00096 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
00097 N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
00098
00099
00100
00101
00102 vlc_module_begin();
00103 set_capability( "sub filter", 0 );
00104 set_shortname( N_("Time overlay"));
00105 set_category( CAT_VIDEO );
00106 set_subcategory( SUBCAT_VIDEO_SUBPIC );
00107 set_callbacks( CreateFilter, DestroyFilter );
00108 add_string( "time-format", "%Y-%m-%d %H:%M:%S", NULL, MSG_TEXT,
00109 MSG_LONGTEXT, VLC_TRUE );
00110 add_integer( "time-x", -1, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_TRUE );
00111 add_integer( "time-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_TRUE );
00112 add_integer( "time-position", 9, NULL, POS_TEXT, POS_LONGTEXT, VLC_FALSE );
00113
00114 change_integer_list( pi_pos_values, ppsz_pos_descriptions, 0 );
00115 add_integer_with_range( "time-opacity", 255, 0, 255, NULL,
00116 OPACITY_TEXT, OPACITY_LONGTEXT, VLC_FALSE );
00117 add_integer( "time-color", 0xFFFFFF, NULL, COLOR_TEXT, COLOR_LONGTEXT,
00118 VLC_FALSE );
00119 change_integer_list( pi_color_values, ppsz_color_descriptions, 0 );
00120 add_integer( "time-size", -1, NULL, SIZE_TEXT, SIZE_LONGTEXT, VLC_FALSE );
00121 set_description( _("Time display sub filter") );
00122 add_shortcut( "time" );
00123 vlc_module_end();
00124
00125
00126
00127
00128 static int CreateFilter( vlc_object_t *p_this )
00129 {
00130 filter_t *p_filter = (filter_t *)p_this;
00131 filter_sys_t *p_sys;
00132 vlc_object_t *p_input;
00133
00134
00135 p_sys = p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
00136 if( p_sys == NULL )
00137 {
00138 msg_Err( p_filter, "out of memory" );
00139 return VLC_ENOMEM;
00140 }
00141
00142 p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
00143 if( !p_input )
00144 {
00145 return VLC_ENOOBJ;
00146 }
00147
00148 p_sys->i_xoff = var_CreateGetInteger( p_input->p_libvlc , "time-x" );
00149 p_sys->i_yoff = var_CreateGetInteger( p_input->p_libvlc , "time-y" );
00150 p_sys->psz_format = var_CreateGetString( p_input->p_libvlc, "time-format" );
00151 p_sys->i_pos = var_CreateGetInteger( p_input->p_libvlc , "time-position" );
00152 var_Create( p_input->p_libvlc, "time-opacity", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
00153 p_sys->i_font_opacity = var_CreateGetInteger( p_input->p_libvlc , "time-opacity" );
00154 p_sys->i_font_color = var_CreateGetInteger( p_input->p_libvlc , "time-color" );
00155 p_sys->i_font_size = var_CreateGetInteger( p_input->p_libvlc , "time-size" );
00156
00157 var_AddCallback( p_input->p_libvlc, "time-x", TimeCallback, p_sys );
00158 var_AddCallback( p_input->p_libvlc, "time-y", TimeCallback, p_sys );
00159 var_AddCallback( p_input->p_libvlc, "time-format", TimeCallback, p_sys );
00160 var_AddCallback( p_input->p_libvlc, "time-position", TimeCallback, p_sys );
00161 var_AddCallback( p_input->p_libvlc, "time-color", TimeCallback, p_sys );
00162 var_AddCallback( p_input->p_libvlc, "time-opacity", TimeCallback, p_sys );
00163 var_AddCallback( p_input->p_libvlc, "time-size", TimeCallback, p_sys );
00164
00165 vlc_object_release( p_input );
00166
00167
00168 p_filter->pf_sub_filter = Filter;
00169 p_sys->last_time = ((time_t)-1);
00170
00171 return VLC_SUCCESS;
00172 }
00173
00174
00175
00176 static void DestroyFilter( vlc_object_t *p_this )
00177 {
00178 filter_t *p_filter = (filter_t *)p_this;
00179 filter_sys_t *p_sys = p_filter->p_sys;
00180 vlc_object_t *p_input;
00181
00182 if( p_sys->psz_format ) free( p_sys->psz_format );
00183 free( p_sys );
00184
00185 p_input = vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
00186 if( !p_input )
00187 {
00188 return;
00189 }
00190 var_Destroy( p_input->p_libvlc , "time-format" );
00191 var_Destroy( p_input->p_libvlc , "time-x" );
00192 var_Destroy( p_input->p_libvlc , "time-y" );
00193 var_Destroy( p_input->p_libvlc , "time-position" );
00194 var_Destroy( p_input->p_libvlc , "time-color");
00195 var_Destroy( p_input->p_libvlc , "time-opacity");
00196 var_Destroy( p_input->p_libvlc , "time-size");
00197
00198 vlc_object_release( p_input );
00199 }
00200
00201 static char *FormatTime(char *tformat )
00202 {
00203 char buffer[255];
00204 time_t curtime;
00205 #if defined(HAVE_LOCALTIME_R)
00206 struct tm loctime;
00207 #else
00208 struct tm *loctime;
00209 #endif
00210
00211
00212 curtime = time( NULL );
00213
00214
00215 #if defined(HAVE_LOCALTIME_R)
00216 localtime_r( &curtime, &loctime );
00217 strftime( buffer, 255, tformat, &loctime );
00218 #else
00219 loctime = localtime( &curtime );
00220 strftime( buffer, 255, tformat, loctime );
00221 #endif
00222 return strdup( buffer );
00223 }
00224
00225
00226
00227
00228
00229
00230 static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
00231 {
00232 filter_sys_t *p_sys = p_filter->p_sys;
00233 subpicture_t *p_spu;
00234 video_format_t fmt;
00235
00236 if( p_sys->last_time == time( NULL ) ) return NULL;
00237
00238 p_spu = p_filter->pf_sub_buffer_new( p_filter );
00239 if( !p_spu ) return NULL;
00240
00241 memset( &fmt, 0, sizeof(video_format_t) );
00242 fmt.i_chroma = VLC_FOURCC('T','E','X','T');
00243 fmt.i_aspect = 0;
00244 fmt.i_width = fmt.i_height = 0;
00245 fmt.i_x_offset = 0;
00246 fmt.i_y_offset = 0;
00247 p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
00248 if( !p_spu->p_region )
00249 {
00250 p_filter->pf_sub_buffer_del( p_filter, p_spu );
00251 return NULL;
00252 }
00253
00254 p_sys->last_time = time( NULL );
00255
00256 p_spu->p_region->psz_text = FormatTime( p_sys->psz_format );
00257 p_spu->i_start = date;
00258 p_spu->i_stop = 0;
00259 p_spu->b_ephemer = VLC_TRUE;
00260
00261
00262 if( p_sys->i_xoff < 0 || p_sys->i_yoff < 0 )
00263 {
00264 p_spu->i_flags = p_sys->i_pos;
00265 p_spu->i_x = 0;
00266 p_spu->i_y = 0;
00267 p_spu->b_absolute = VLC_FALSE;
00268 }
00269 else
00270 {
00271 p_spu->i_flags = OSD_ALIGN_LEFT | OSD_ALIGN_TOP;
00272 p_spu->i_x = p_sys->i_xoff;
00273 p_spu->i_y = p_sys->i_yoff;
00274 p_spu->b_absolute = VLC_TRUE;
00275 }
00276 p_spu->p_region->i_text_color = p_sys->i_font_color;
00277 p_spu->p_region->i_text_alpha = 255 - p_sys->i_font_opacity;
00278 p_spu->p_region->i_text_size = p_sys->i_font_size;
00279
00280 return p_spu;
00281 }
00282
00283
00284
00285 static int TimeCallback( vlc_object_t *p_this, char const *psz_var,
00286 vlc_value_t oldval, vlc_value_t newval,
00287 void *p_data )
00288 {
00289 filter_sys_t *p_sys = (filter_sys_t *) p_data;
00290
00291 if( !strncmp( psz_var, "time-format", 11 ) )
00292 {
00293 if( p_sys->psz_format ) free( p_sys->psz_format );
00294 p_sys->psz_format = strdup( newval.psz_string );
00295 }
00296 else if ( !strncmp( psz_var, "time-x", 6 ) )
00297 {
00298 p_sys->i_xoff = newval.i_int;
00299 }
00300 else if ( !strncmp( psz_var, "time-y", 6 ) )
00301 {
00302 p_sys->i_yoff = newval.i_int;
00303 }
00304 else if ( !strncmp( psz_var, "time-color", 8 ) )
00305 {
00306 p_sys->i_font_color = newval.i_int;
00307 }
00308 else if ( !strncmp( psz_var, "time-opacity", 8 ) )
00309 {
00310 p_sys->i_font_opacity = newval.i_int;
00311 }
00312 else if ( !strncmp( psz_var, "time-size", 6 ) )
00313 {
00314 p_sys->i_font_size = newval.i_int;
00315 }
00316 else if ( !strncmp( psz_var, "time-position", 8 ) )
00317
00318 {
00319 p_sys->i_pos = newval.i_int;
00320 p_sys->i_xoff = -1;
00321 }
00322 return VLC_SUCCESS;
00323 }