Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
54daead2
Commit
54daead2
authored
Jul 28, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
emoved unused pf_render function in subpicture_t.
parent
5cd2d076
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
include/vlc_subpicture.h
include/vlc_subpicture.h
+0
-2
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+0
-1
No files found.
include/vlc_subpicture.h
View file @
54daead2
...
...
@@ -147,8 +147,6 @@ struct subpicture_t
int
i_alpha
;
/**< transparency */
/**@}*/
/** Pointer to function that renders this subtitle in a picture */
void
(
*
pf_render
)
(
vout_thread_t
*
,
picture_t
*
,
const
subpicture_t
*
);
/** Pointer to function that cleans up the private data of this subtitle */
void
(
*
pf_destroy
)
(
subpicture_t
*
);
...
...
src/video_output/vout_subpictures.c
View file @
54daead2
...
...
@@ -713,7 +713,6 @@ subpicture_t *subpicture_New( void )
p_subpic
->
b_subtitle
=
false
;
p_subpic
->
i_alpha
=
0xFF
;
p_subpic
->
p_region
=
NULL
;
p_subpic
->
pf_render
=
NULL
;
p_subpic
->
pf_destroy
=
NULL
;
p_subpic
->
p_sys
=
NULL
;
...
...
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