[vlc-commits] stream: remove p_module

Rémi Denis-Courmont git at videolan.org
Fri Apr 6 20:05:11 CEST 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Apr  6 20:44:25 2018 +0300| [7f46d83bfb302c0d9fc336f1d65948aabfd2871d] | committer: Rémi Denis-Courmont

stream: remove p_module

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

 include/vlc_stream.h | 3 ---
 src/input/stream.c   | 1 -
 2 files changed, 4 deletions(-)

diff --git a/include/vlc_stream.h b/include/vlc_stream.h
index d76d90b2e6..8df71f42aa 100644
--- a/include/vlc_stream.h
+++ b/include/vlc_stream.h
@@ -47,9 +47,6 @@ struct stream_t
 {
     struct vlc_common_members obj;
 
-    /* Module properties for stream filter */
-    module_t    *p_module;
-
     char        *psz_name;
     char        *psz_url; /**< Full URL or MRL (can be NULL) */
     const char  *psz_location; /**< Location (URL with the scheme stripped) */
diff --git a/src/input/stream.c b/src/input/stream.c
index 6b1d69eadd..3f7c6789b8 100644
--- a/src/input/stream.c
+++ b/src/input/stream.c
@@ -77,7 +77,6 @@ stream_t *vlc_stream_CustomNew(vlc_object_t *parent,
 
     stream_t *s = &priv->stream;
 
-    s->p_module = NULL;
     s->psz_url = NULL;
     s->s = NULL;
     s->pf_read = NULL;



More information about the vlc-commits mailing list