Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
27ea01fb
Commit
27ea01fb
authored
Sep 17, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_filter/logo.c: small fix.
parent
2652a6f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
modules/video_filter/logo.c
modules/video_filter/logo.c
+2
-5
No files found.
modules/video_filter/logo.c
View file @
27ea01fb
...
...
@@ -545,10 +545,7 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
subpicture_region_t
*
p_region
;
video_format_t
fmt
;
if
(
p_sys
->
i_last_date
&&
p_sys
->
i_last_date
+
5000000
>
date
)
{
return
0
;
}
if
(
p_sys
->
i_last_date
&&
p_sys
->
i_last_date
+
5000000
>
date
)
return
0
;
/* Allocate the subpicture internal data. */
p_spu
=
p_filter
->
pf_sub_buffer_new
(
p_filter
);
...
...
@@ -576,7 +573,7 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
p_spu
->
i_y
=
p_sys
->
posy
;
p_spu
->
p_region
=
p_region
;
p_spu
->
i_start
=
date
;
p_spu
->
i_start
=
p_sys
->
i_last_date
=
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