Commit 3740a564 authored by Pierre Ynard's avatar Pierre Ynard

rtp input: fix dynamic payload handling

Oops sorry
parent 81e570b0
...@@ -712,7 +712,7 @@ int rtp_autodetect (demux_t *demux, rtp_session_t *session, ...@@ -712,7 +712,7 @@ int rtp_autodetect (demux_t *demux, rtp_session_t *session,
{ {
char *dynamic = var_InheritString(demux, "rtp-dynamic-pt"); char *dynamic = var_InheritString(demux, "rtp-dynamic-pt");
if (dynamic == NULL) if (dynamic == NULL)
; return -1;
else if (!strcmp(dynamic, "theora")) else if (!strcmp(dynamic, "theora"))
{ {
msg_Dbg (demux, "assuming Theora Encoded Video"); msg_Dbg (demux, "assuming Theora Encoded Video");
......
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