]> git.sesse.net Git - vlc/commitdiff
Removed unused vout_thread_t:p_module field.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 00:45:45 +0000 (02:45 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 18 Apr 2010 12:58:36 +0000 (14:58 +0200)
include/vlc_vout.h
src/video_output/video_output.c

index e739d93611b9fa43335963ba4735d2a6a0126fb3..1eb7bfb8a60ebddcc07fcb25aac0a57649aa5961 100644 (file)
@@ -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 * );
index b834655325361ba3b1a4ec7d67567f58b3355a37..34eb42bd85f7e8526f284a87e3a881209844ea02 100644 (file)
@@ -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 );