chiark / gitweb /
RTP player now ignores packets with "X" bit set
[disorder] / clients / playrtp.c
index 0875a69ecc1713129cbb7b7b4f7585ee71d78feb..aca1532f52f657da8248f1d3fdf7dcb6c757fff5 100644 (file)
@@ -397,6 +397,9 @@ static void *listen_thread(void attribute((unused)) *arg) {
            timestamp, next_timestamp);
       continue;
     }
+    /* Ignore packets with the extension bit set. */
+    if(header.vpxcc & 0x10)
+      continue;
     p->next = 0;
     p->flags = 0;
     p->timestamp = timestamp;