From: Laurent Aimar Date: Tue, 28 Jul 2009 18:34:31 +0000 (+0200) Subject: Removed now unused pf_pre_render in subpicture_t. X-Git-Tag: 1.1.0-ff~4752 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5cd2d0765f9d6f9c54b51c97a67305206f82a5f7;p=vlc Removed now unused pf_pre_render in subpicture_t. --- diff --git a/include/vlc_subpicture.h b/include/vlc_subpicture.h index bdb09fdf40..dcd15cbc83 100644 --- a/include/vlc_subpicture.h +++ b/include/vlc_subpicture.h @@ -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 ); diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c index 4f8512dbec..353ec359ba 100644 --- a/src/video_output/vout_subpictures.c +++ b/src/video_output/vout_subpictures.c @@ -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;