diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-06-27 10:33:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 10:33:48 +0200 |
commit | 86e89b4e230371b2de92e3a3cda6fdea42fff614 (patch) | |
tree | 07ed76af1533e050d78a46fe8f176d26f3d49035 /src/lib/protocols/rtp.c | |
parent | 2c7fb9179493c1d1d4e4763e5757bc98db61b518 (diff) |
STUN: tell RTP from RTCP while in monitoring state (#2027)
Diffstat (limited to 'src/lib/protocols/rtp.c')
-rw-r--r-- | src/lib/protocols/rtp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/protocols/rtp.c b/src/lib/protocols/rtp.c index 4150d4eab..68a1a2ac9 100644 --- a/src/lib/protocols/rtp.c +++ b/src/lib/protocols/rtp.c @@ -31,12 +31,6 @@ #define RTP_MIN_HEADER 12 #define RTCP_MIN_HEADER 8 -enum { - NO_RTP_RTCP = 0, - IS_RTP = 1, - IS_RTCP = 2, -}; - /* https://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml */ int is_valid_rtp_payload_type(uint8_t type) { |