Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5cd2d076
Commit
5cd2d076
authored
Jul 28, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed now unused pf_pre_render in subpicture_t.
parent
066cd24e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
include/vlc_subpicture.h
include/vlc_subpicture.h
+1
-2
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+0
-4
No files found.
include/vlc_subpicture.h
View file @
5cd2d076
...
...
@@ -152,8 +152,7 @@ struct subpicture_t
/** Pointer to function that cleans up the private data of this subtitle */
void
(
*
pf_destroy
)
(
subpicture_t
*
);
/** Pointer to functions for region management */
void
(
*
pf_pre_render
)
(
spu_t
*
,
subpicture_t
*
,
const
video_format_t
*
);
/** Pointer to function that update the regions before rendering (optionnal) */
void
(
*
pf_update_regions
)(
spu_t
*
,
subpicture_t
*
,
const
video_format_t
*
,
mtime_t
);
...
...
src/video_output/vout_subpictures.c
View file @
5cd2d076
...
...
@@ -379,10 +379,6 @@ void spu_RenderSubpictures( spu_t *p_spu,
p_subpic
!=
NULL
;
p_subpic
=
p_subpic
->
p_next
)
{
/* TODO remove pre-render */
if
(
p_subpic
->
pf_pre_render
)
p_subpic
->
pf_pre_render
(
p_spu
,
p_subpic
,
p_fmt_dst
);
if
(
p_subpic
->
pf_update_regions
)
{
video_format_t
fmt_org
=
*
p_fmt_dst
;
...
...
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