[vlc-commits] commit: Removed unused vout_thread_t:p_module field. (Laurent Aimar )

git at videolan.org git at videolan.org
Sun Apr 18 15:03:14 CEST 2010


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Apr 18 02:45:45 2010 +0200| [030555469cc4b2f5a1bcc82c0655e4d0a299b9fb] | committer: Laurent Aimar 

Removed unused vout_thread_t:p_module field.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=030555469cc4b2f5a1bcc82c0655e4d0a299b9fb
---

 include/vlc_vout.h              |    1 -
 src/video_output/video_output.c |    1 -
 2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/include/vlc_vout.h b/include/vlc_vout.h
index e739d93..1eb7bfb 100644
--- a/include/vlc_vout.h
+++ b/include/vlc_vout.h
@@ -132,7 +132,6 @@ struct vout_thread_t
 
     /** \name Plugin used and shortcuts to access its capabilities */
     /**@{*/
-    module_t *   p_module;
     int       ( *pf_init )       ( vout_thread_t * );
     void      ( *pf_end )        ( vout_thread_t * );
     int       ( *pf_manage )     ( vout_thread_t * );
diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
index b834655..34eb42b 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -495,7 +495,6 @@ vout_thread_t * vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
         psz_name = psz_tmp;
     }
     p_vout->p->psz_module_name = psz_name;
-    p_vout->p_module = NULL;
 
     /* */
     vlc_object_set_destructor( p_vout, vout_Destructor );



More information about the vlc-commits mailing list