Commit 7e42e322 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Ignore unknown payload types

parent 91f7b6f5
......@@ -440,6 +440,15 @@ static int Demux (demux_t *demux)
pt.decode = stream_decode;
pt.frequency = 90000;
break;
case 72: /* muxed SR */
case 73: /* muxed RR */
case 74: /* muxed SDES */
case 75: /* muxed BYE */
case 76: /* muxed APP */
default:
block_Release (block); /* ooh! ignoring RTCP is evil! */
return 1;
}
rtp_add_type (demux, p_sys->session, &pt);
p_sys->autodetect = false;
......
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