From 5cd2d0765f9d6f9c54b51c97a67305206f82a5f7 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Tue, 28 Jul 2009 20:34:31 +0200 Subject: [PATCH] Removed now unused pf_pre_render in subpicture_t. --- include/vlc_subpicture.h | 3 +-- src/video_output/vout_subpictures.c | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) 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; -- 2.39.2