Commit 0e743766 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTP: support for overriding the TS demux - fixes #2103

parent 4be4d658
...@@ -72,6 +72,11 @@ ...@@ -72,6 +72,11 @@
"RTP packets will be discarded if they are too far behind (i.e. in the " \ "RTP packets will be discarded if they are too far behind (i.e. in the " \
"past) by this many packets from the last received packet." ) "past) by this many packets from the last received packet." )
#define RTP_TS_DEMUX_TEXT N_("Demux module for TS over RTP")
#define RTP_TS_DEMUX_LONGTEXT N_( \
"MPEG Transport Stream packets within an RTP stream will be handled by " \
"the specified demux module." )
static int Open (vlc_object_t *); static int Open (vlc_object_t *);
static void Close (vlc_object_t *); static void Close (vlc_object_t *);
...@@ -105,6 +110,9 @@ vlc_module_begin (); ...@@ -105,6 +110,9 @@ vlc_module_begin ();
RTP_MAX_MISORDER_LONGTEXT, true); RTP_MAX_MISORDER_LONGTEXT, true);
change_integer_range (0, 32767); change_integer_range (0, 32767);
add_module ("rtp-ts-demux", "demux", "ts", NULL, RTP_TS_DEMUX_TEXT,
RTP_TS_DEMUX_LONGTEXT, true);
add_shortcut ("dccp"); add_shortcut ("dccp");
/*add_shortcut ("sctp");*/ /*add_shortcut ("sctp");*/
add_shortcut ("rtptcp"); /* "tcp" is already taken :( */ add_shortcut ("rtptcp"); /* "tcp" is already taken :( */
...@@ -609,7 +617,14 @@ static void mpv_decode (demux_t *demux, void *data, block_t *block) ...@@ -609,7 +617,14 @@ static void mpv_decode (demux_t *demux, void *data, block_t *block)
*/ */
static void *ts_init (demux_t *demux) static void *ts_init (demux_t *demux)
{ {
return stream_init (demux, "ts"); char *ts_demux = var_CreateGetNonEmptyString (demux, "rtp-ts-demux");
msg_Dbg (demux, "using %s chained demux", ts_demux);
if (!ts_demux)
return NULL;
void *stream = stream_init (demux, ts_demux);
free (ts_demux);
return stream;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment