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
eb24fa76
Commit
eb24fa76
authored
Jun 04, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused variable (logo).
parent
e059c65c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/video_filter/logo.c
modules/video_filter/logo.c
+1
-5
No files found.
modules/video_filter/logo.c
View file @
eb24fa76
...
...
@@ -651,7 +651,6 @@ struct filter_sys_t
int
pos
,
posx
,
posy
;
bool
b_absolute
;
mtime_t
i_last_date
;
/* On the fly control variable */
bool
b_need_update
;
...
...
@@ -718,8 +717,6 @@ static int CreateFilter( vlc_object_t *p_this )
p_filter
->
pf_sub_filter
=
Filter
;
p_sys
->
b_need_update
=
true
;
p_sys
->
i_last_date
=
0
;
return
VLC_SUCCESS
;
}
...
...
@@ -772,7 +769,6 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
vlc_mutex_unlock
(
&
p_logo_list
->
lock
);
return
0
;
}
/* prior code tested on && p_sys->i_last_date +5000000 > date ) return 0; */
/* adjust index to the next logo */
p_logo_list
->
i_counter
=
...
...
@@ -790,7 +786,7 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
}
p_spu
->
b_absolute
=
p_sys
->
b_absolute
;
p_spu
->
i_start
=
p_sys
->
i_last_date
=
date
;
p_spu
->
i_start
=
date
;
p_spu
->
i_stop
=
0
;
p_spu
->
b_ephemer
=
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