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
4d5258cf
Commit
4d5258cf
authored
May 26, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed dead code (spu).
parent
b087d788
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+0
-16
No files found.
src/video_output/vout_subpictures.c
View file @
4d5258cf
...
...
@@ -174,8 +174,6 @@ struct filter_owner_sys_t
};
static
int
spu_get_attachments
(
filter_t
*
,
input_attachment_t
***
,
int
*
);
static
subpicture_t
*
spu_new_buffer
(
filter_t
*
);
static
void
spu_del_buffer
(
filter_t
*
,
subpicture_t
*
);
static
picture_t
*
spu_new_video_buffer
(
filter_t
*
);
static
void
spu_del_video_buffer
(
filter_t
*
,
picture_t
*
);
...
...
@@ -1111,8 +1109,6 @@ static void SpuRenderCreateAndLoadText( spu_t *p_spu )
p_text
->
fmt_out
.
video
.
i_height
=
p_text
->
fmt_out
.
video
.
i_visible_height
=
32
;
p_text
->
pf_sub_buffer_new
=
spu_new_buffer
;
p_text
->
pf_sub_buffer_del
=
spu_del_buffer
;
p_text
->
pf_get_attachments
=
spu_get_attachments
;
vlc_object_attach
(
p_text
,
p_spu
);
...
...
@@ -1903,18 +1899,6 @@ static void sub_del_buffer( filter_t *p_filter, subpicture_t *p_subpic )
VLC_UNUSED
(
p_filter
);
subpicture_Delete
(
p_subpic
);
}
static
subpicture_t
*
spu_new_buffer
(
filter_t
*
p_filter
)
{
VLC_UNUSED
(
p_filter
);
return
subpicture_New
(
NULL
);
}
static
void
spu_del_buffer
(
filter_t
*
p_filter
,
subpicture_t
*
p_subpic
)
{
VLC_UNUSED
(
p_filter
);
subpicture_Delete
(
p_subpic
);
}
static
picture_t
*
spu_new_video_buffer
(
filter_t
*
p_filter
)
{
const
video_format_t
*
p_fmt
=
&
p_filter
->
fmt_out
.
video
;
...
...
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