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

Ignore muxed RTCP packets for AVP profile

parent 6b17bd00
...@@ -547,6 +547,13 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block ) ...@@ -547,6 +547,13 @@ static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
/* plain TS over RTP */ /* plain TS over RTP */
break; break;
case 72: /* muxed SR */
case 73: /* muxed RR */
case 74: /* muxed SDES */
case 75: /* muxed BYE */
case 76: /* muxed APP */
goto trash; /* ooh! ignoring RTCP is evil! */
default: default:
msg_Dbg( p_access, "unsupported RTP payload type: %u", i_payload_type ); msg_Dbg( p_access, "unsupported RTP payload type: %u", i_payload_type );
goto trash; goto trash;
......
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