]> git.sesse.net Git - vlc/blobdiff - modules/demux/rtp.h
Don't print a message a malloc failed.
[vlc] / modules / demux / rtp.h
index 04e6869ffbf3e469635d24977919aaeb4ef735da..c8daa66a07352f932136a81b54a113797efbd8d0 100644 (file)
@@ -43,7 +43,9 @@ int rtp_add_type (demux_t *demux, rtp_session_t *ses, const rtp_pt_t *pt);
 struct demux_sys_t
 {
     rtp_session_t *session;
+    struct srtp_session_t *srtp;
     int           fd;
+    int           rtcp_fd;
 
     unsigned      caching;
     unsigned      timeout;
@@ -51,5 +53,6 @@ struct demux_sys_t
     uint16_t      max_dropout;
     uint16_t      max_misorder;
     bool          autodetect;
+    bool          framed_rtp;
 };