]> git.sesse.net Git - vlc/blob - modules/video_filter/time.c
time.c: configureable time format patch by markfm + some cleanup
[vlc] / modules / video_filter / time.c
1 /*****************************************************************************
2  * time.c : time display video plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
5  * $Id: logo.c 8721 2004-09-17 10:21:00Z gbazin $
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/vout.h>
32
33 #include "vlc_filter.h"
34 #include "vlc_block.h"
35 #include "osd.h"
36
37 /*****************************************************************************
38  * Local prototypes
39  *****************************************************************************/
40 static int  CreateFilter ( vlc_object_t * );
41 static void DestroyFilter( vlc_object_t * );
42 static subpicture_t *Filter( filter_t *, mtime_t );
43
44 /*****************************************************************************
45  * filter_sys_t: time filter descriptor
46  *****************************************************************************/
47 struct filter_sys_t
48 {
49     int i_xoff, i_yoff;  /* offsets for the display string in the video window */
50     char *psz_format;    /* time format string */
51
52     time_t last_time;
53 };
54
55 #define MSG_TEXT N_("Time format string (%Y%m%d %H%M%S)")
56 #define MSG_LONGTEXT N_("Time format string (%Y = year, %m = month, %d = day, %H = hour, %M = minute, %S = second")
57 #define POSX_TEXT N_("X offset, from left")
58 #define POSX_LONGTEXT N_("X offset, from the left screen edge" )
59 #define POSY_TEXT N_("Y offset, from the top")
60 #define POSY_LONGTEXT N_("Y offset, down from the top" )
61
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 vlc_module_begin();
66     set_capability( "sub filter", 0 );
67     set_callbacks( CreateFilter, DestroyFilter );
68     add_string( "time-format", "%Y-%m-%d   %H:%M:%S", NULL, MSG_TEXT, MSG_LONGTEXT, VLC_FALSE );
69     add_integer( "time-x", 0, NULL, POSX_TEXT, POSX_LONGTEXT, VLC_FALSE );
70     add_integer( "time-y", 0, NULL, POSY_TEXT, POSY_LONGTEXT, VLC_FALSE );
71     set_description( _("Time display sub filter") );
72     add_shortcut( "time" );
73 vlc_module_end();
74
75 /*****************************************************************************
76  * CreateFilter: allocates logo video filter
77  *****************************************************************************/
78 static int CreateFilter( vlc_object_t *p_this )
79 {
80     filter_t *p_filter = (filter_t *)p_this;
81     filter_sys_t *p_sys;
82     vlc_value_t val;
83
84     /* Allocate structure */
85     p_sys = p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
86     if( p_sys == NULL )
87     {
88         msg_Err( p_filter, "out of memory" );
89         return VLC_ENOMEM;
90     }
91
92     var_Create( p_this, "time-x", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
93     var_Get( p_filter, "time-x", &val );
94     p_sys->i_xoff = val.i_int;
95     var_Create( p_this, "time-y", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
96     var_Get( p_filter, "time-y", &val );
97     p_sys->i_yoff = val.i_int;
98     p_sys->psz_format = var_CreateGetString( p_this, "time-format" );
99
100     /* Misc init */
101     p_filter->pf_sub_filter = Filter;
102     p_sys->last_time = ((time_t)-1);
103
104     return VLC_SUCCESS;
105 }
106 /*****************************************************************************
107  * DestroyFilter: destroy logo video filter
108  *****************************************************************************/
109 static void DestroyFilter( vlc_object_t *p_this )
110 {
111     filter_t *p_filter = (filter_t *)p_this;
112     filter_sys_t *p_sys = p_filter->p_sys;
113
114     if( p_sys->psz_format ) free( p_sys->psz_format );
115     free( p_sys );
116 }
117
118
119 static char *FormatTime(char *tformat, time_t *t )
120 {
121   char buffer[255];
122   time_t curtime;
123 #if defined(HAVE_LOCALTIME_R)
124   struct tm loctime;
125 #else
126   struct tm *loctime;
127 #endif
128
129   /* Get the current time.  */
130   curtime = time( NULL );
131
132   /* Convert it to local time representation.  */
133 #if defined(HAVE_LOCALTIME_R)
134   localtime_r( &curtime, &loctime );
135   strftime( buffer, 255, tformat, &loctime );
136 #else
137   loctime = localtime( &curtime );
138   strftime( buffer, 255, tformat, loctime );
139 #endif
140   return strdup( buffer );
141 }
142
143 /****************************************************************************
144  * Filter: the whole thing
145  ****************************************************************************
146  * This function outputs subpictures at regular time intervals.
147  ****************************************************************************/
148 static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
149 {
150     filter_sys_t *p_sys = p_filter->p_sys;
151     subpicture_t *p_spu;
152     video_format_t fmt;
153     time_t t;
154
155     if( p_sys->last_time == time( NULL ) ) return NULL;
156
157     p_spu = p_filter->pf_sub_buffer_new( p_filter );
158     if( !p_spu ) return NULL;
159     
160     memset( &fmt, 0, sizeof(video_format_t) );
161     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
162     fmt.i_aspect = 0;
163     fmt.i_width = fmt.i_height = 0;     
164     fmt.i_x_offset = 0;
165     fmt.i_y_offset = 0;
166     
167     p_spu->p_region = p_spu->pf_create_region( VLC_OBJECT(p_filter), &fmt );
168     if( !p_spu->p_region )
169     {
170         p_filter->pf_sub_buffer_del( p_filter, p_spu );
171         return NULL;
172     }
173
174     t = p_sys->last_time = time( NULL );
175
176     p_spu->p_region->psz_text = FormatTime( p_sys->psz_format, &t );
177     p_spu->i_start = date;
178     p_spu->i_stop  = date + 1000000;
179     p_spu->b_ephemer = VLC_TRUE;
180     p_spu->b_absolute = VLC_FALSE;
181     p_spu->i_x = p_sys->i_xoff;
182     p_spu->i_y = p_sys->i_yoff;
183
184     p_spu->i_flags = OSD_ALIGN_LEFT|OSD_ALIGN_TOP ;
185     return p_spu;
186 }