mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 23:35:52 +08:00
Removed now unused pf_pre_render in subpicture_t.
This commit is contained in:
parent
066cd24ee7
commit
5cd2d0765f
@ -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 );
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user