Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
c8a6cbfe
Commit
c8a6cbfe
authored
Oct 09, 2008
by
Laurent Aimar
Browse files
Removed dead code in spu core (CID 249).
parent
9dd13ebf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/video_output/vout_subpictures.c
View file @
c8a6cbfe
...
...
@@ -91,8 +91,6 @@ struct spu_private_t
/* */
mtime_t
i_last_sort_date
;
/* */
mtime_t
i_last_render_date
;
};
/* */
...
...
@@ -231,7 +229,6 @@ spu_t *__spu_Create( vlc_object_t *p_this )
/* */
p_sys
->
i_last_sort_date
=
-
1
;
p_sys
->
i_last_render_date
=
-
1
;
return
p_spu
;
}
...
...
@@ -398,18 +395,13 @@ void spu_RenderSubpictures( spu_t *p_spu,
if
(
!
b_paused
&&
p_subpic
->
pf_update_regions
)
{
mtime_t
i_render_date
;
video_format_t
fmt_org
=
*
p_fmt_dst
;
fmt_org
.
i_width
=
fmt_org
.
i_visible_width
=
i_source_video_width
;
fmt_org
.
i_height
=
fmt_org
.
i_visible_height
=
i_source_video_height
;
i_render_date
=
i_current_date
;
if
(
p_subpic
->
b_subtitle
&&
b_paused
&&
p_sys
->
i_last_render_date
>
0
)
i_render_date
=
p_sys
->
i_last_render_date
;
p_subpic
->
pf_update_regions
(
p_spu
,
p_subpic
,
&
fmt_org
,
i_render_date
);
p_subpic
->
pf_update_regions
(
p_spu
,
p_subpic
,
&
fmt_org
,
i_current_date
);
}
/* */
...
...
@@ -423,9 +415,6 @@ void spu_RenderSubpictures( spu_t *p_spu,
pp_subpicture
[
i_subpicture
++
]
=
p_subpic
;
}
if
(
!
b_paused
)
p_sys
->
i_last_render_date
=
i_current_date
;
/* Be sure we have at least 1 picture to process */
if
(
i_subpicture
<=
0
)
{
...
...
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