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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * time.c : time display video plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: time.c 8793 2004-09-25 17:51:24Z sigmunau $
  6.  *
  7.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/vout.h>
  30. #include "vlc_filter.h"
  31. #include "vlc_block.h"
  32. #include "osd.h"
  33. /*****************************************************************************
  34.  * Local prototypes
  35.  *****************************************************************************/
  36. static int  CreateFilter ( vlc_object_t * );
  37. static void DestroyFilter( vlc_object_t * );
  38. static subpicture_t *Filter( filter_t *, mtime_t );
  39. /*****************************************************************************
  40.  * filter_sys_t: time filter descriptor
  41.  *****************************************************************************/
  42. struct filter_sys_t
  43. {
  44.     int i_xoff, i_yoff;  /* offsets for the display string in the video window */
  45.     char *psz_format;    /* time format string */
  46.     time_t last_time;
  47. };
  48. #define MSG_TEXT N_("Time format string (%Y%m%d %H%M%S)")
  49. #define MSG_LONGTEXT N_("Time format string (%Y = year, %m = month, %d = day, %H = hour, %M = minute, %S = second")
  50. #define POSX_TEXT N_("X offset, from left")
  51. #define POSX_LONGTEXT N_("X offset, from the left screen edge" )
  52. #define POSY_TEXT N_("Y offset, from the top")
  53. #define POSY_LONGTEXT N_("Y offset, down from the top" )
  54. /*****************************************************************************
  55.  * Module descriptor
  56.  *****************************************************************************/
  57. vlc_module_begin();
  58.     set_capability( "sub filter", 0 );
  59.     set_callbacks( CreateFilter, DestroyFilter );
  60.     add_string( "time-format", "%Y-%m-%d   %H:%M:%S", NULL, MSG_TEXT, MSG_LONGTEXT, VLC_FALSE );
  61.     add_integer( "time-x", 0, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE );
  62.     add_integer( "time-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE );
  63.     set_description( _("Time display sub filter") );
  64.     add_shortcut( "time" );
  65. vlc_module_end();
  66. /*****************************************************************************
  67.  * CreateFilter: allocates logo video filter
  68.  *****************************************************************************/
  69. static int CreateFilter( vlc_object_t *p_this )
  70. {
  71.     filter_t *p_filter = (filter_t *)p_this;
  72.     filter_sys_t *p_sys;
  73.     vlc_value_t val;
  74.     /* Allocate structure */
  75.     p_sys = p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  76.     if( p_sys == NULL )
  77.     {
  78.         msg_Err( p_filter, "out of memory" );
  79.         return VLC_ENOMEM;
  80.     }
  81.     var_Create( p_this, "time-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  82.     var_Get( p_filter, "time-x", &val );
  83.     p_sys->i_xoff = val.i_int;
  84.     var_Create( p_this, "time-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  85.     var_Get( p_filter, "time-y", &val );
  86.     p_sys->i_yoff = val.i_int;
  87.     p_sys->psz_format = var_CreateGetString( p_this, "time-format" );
  88.     /* Misc init */
  89.     p_filter->pf_sub_filter = Filter;
  90.     p_sys->last_time = ((time_t)-1);
  91.     return VLC_SUCCESS;
  92. }
  93. /*****************************************************************************
  94.  * DestroyFilter: destroy logo video filter
  95.  *****************************************************************************/
  96. static void DestroyFilter( vlc_object_t *p_this )
  97. {
  98.     filter_t *p_filter = (filter_t *)p_this;
  99.     filter_sys_t *p_sys = p_filter->p_sys;
  100.     if( p_sys->psz_format ) free( p_sys->psz_format );
  101.     free( p_sys );
  102. }
  103. static char *FormatTime(char *tformat )
  104. {
  105.   char buffer[255];
  106.   time_t curtime;
  107. #if defined(HAVE_LOCALTIME_R)
  108.   struct tm loctime;
  109. #else
  110.   struct tm *loctime;
  111. #endif
  112.   /* Get the current time.  */
  113.   curtime = time( NULL );
  114.   /* Convert it to local time representation.  */
  115. #if defined(HAVE_LOCALTIME_R)
  116.   localtime_r( &curtime, &loctime );
  117.   strftime( buffer, 255, tformat, &loctime );
  118. #else
  119.   loctime = localtime( &curtime );
  120.   strftime( buffer, 255, tformat, loctime );
  121. #endif
  122.   return strdup( buffer );
  123. }
  124. /****************************************************************************
  125.  * Filter: the whole thing
  126.  ****************************************************************************
  127.  * This function outputs subpictures at regular time intervals.
  128.  ****************************************************************************/
  129. static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
  130. {
  131.     filter_sys_t *p_sys = p_filter->p_sys;
  132.     subpicture_t *p_spu;
  133.     video_format_t fmt;
  134.     if( p_sys->last_time == time( NULL ) ) return NULL;
  135.     p_spu = p_filter->pf_sub_buffer_new( p_filter );
  136.     if( !p_spu ) return NULL;
  137.     
  138.     memset( &fmt, 0, sizeof(video_format_t) );
  139.     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
  140.     fmt.i_aspect = 0;
  141.     fmt.i_width = fmt.i_height = 0;     
  142.     fmt.i_x_offset = 0;
  143.     fmt.i_y_offset = 0;
  144.     
  145.     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
  146.     if( !p_spu->p_region )
  147.     {
  148.         p_filter->pf_sub_buffer_del( p_filter, p_spu );
  149.         return NULL;
  150.     }
  151.     p_sys->last_time = time( NULL );
  152.     p_spu->p_region->psz_text = FormatTime( p_sys->psz_format );
  153.     p_spu->i_start = date;
  154.     p_spu->i_stop  = 0;
  155.     p_spu->b_ephemer = VLC_TRUE;
  156.     p_spu->b_absolute = VLC_FALSE;
  157.     p_spu->i_x = p_sys->i_xoff;
  158.     p_spu->i_y = p_sys->i_yoff;
  159.     p_spu->i_flags = OSD_ALIGN_LEFT|OSD_ALIGN_TOP ;
  160.     return p_spu;
  161. }