time.c: remove unused function parameter

parent f3194f74
...@@ -116,7 +116,7 @@ static void DestroyFilter( vlc_object_t *p_this ) ...@@ -116,7 +116,7 @@ static void DestroyFilter( vlc_object_t *p_this )
} }
static char *FormatTime(char *tformat, time_t *t ) static char *FormatTime(char *tformat )
{ {
char buffer[255]; char buffer[255];
time_t curtime; time_t curtime;
...@@ -150,7 +150,6 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date ) ...@@ -150,7 +150,6 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
filter_sys_t *p_sys = p_filter->p_sys; filter_sys_t *p_sys = p_filter->p_sys;
subpicture_t *p_spu; subpicture_t *p_spu;
video_format_t fmt; video_format_t fmt;
time_t t;
if( p_sys->last_time == time( NULL ) ) return NULL; if( p_sys->last_time == time( NULL ) ) return NULL;
...@@ -171,9 +170,9 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date ) ...@@ -171,9 +170,9 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
return NULL; return NULL;
} }
t = p_sys->last_time = time( NULL ); p_sys->last_time = time( NULL );
p_spu->p_region->psz_text = FormatTime( p_sys->psz_format, &t ); p_spu->p_region->psz_text = FormatTime( p_sys->psz_format );
p_spu->i_start = date; p_spu->i_start = date;
p_spu->i_stop = 0; p_spu->i_stop = 0;
p_spu->b_ephemer = VLC_TRUE; p_spu->b_ephemer = VLC_TRUE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment