Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
a8c7d02c
Commit
a8c7d02c
authored
Sep 25, 2004
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
time.c: remove unused function parameter
parent
f3194f74
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
modules/video_filter/time.c
modules/video_filter/time.c
+3
-4
No files found.
modules/video_filter/time.c
View file @
a8c7d02c
...
...
@@ -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
];
time_t
curtime
;
...
...
@@ -150,7 +150,6 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
subpicture_t
*
p_spu
;
video_format_t
fmt
;
time_t
t
;
if
(
p_sys
->
last_time
==
time
(
NULL
)
)
return
NULL
;
...
...
@@ -171,9 +170,9 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
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_stop
=
0
;
p_spu
->
b_ephemer
=
VLC_TRUE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment