[vlc-commits] stream: add out and pf_demux (refs #18504)

Rémi Denis-Courmont git at videolan.org
Mon Feb 26 20:56:33 CET 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Feb 26 21:51:50 2018 +0200| [6c6c08566333cf9d555d9cbfdd1f9cc32a0e29bc] | committer: Rémi Denis-Courmont

stream: add out and pf_demux (refs #18504)

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

 include/vlc_stream.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/vlc_stream.h b/include/vlc_stream.h
index 6c71ebb546..447715fd5c 100644
--- a/include/vlc_stream.h
+++ b/include/vlc_stream.h
@@ -75,6 +75,9 @@ struct stream_t
         demux_t *p_next;
     };
 
+    /* es output */
+    es_out_t    *out;   /* our p_es_out */
+
     /**
      * Read data.
      *
@@ -120,6 +123,8 @@ struct stream_t
      */
     int         (*pf_readdir)(stream_t *, input_item_node_t *);
 
+    int         (*pf_demux)(stream_t *);
+
     /**
      * Seek.
      *



More information about the vlc-commits mailing list