Browse Source

increase size of RTP loop protection buffer to 28 for RTCP

as suggested in issue #65
mr3.8.2
Richard Fuchs 11 years ago
parent
commit
b4f5312021
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.h

+ 1
- 1
daemon/call.h View File

@ -86,7 +86,7 @@ enum call_stream_state {
#define RTP_BUFFER_SIZE (MAX_RTP_PACKET_SIZE + RTP_BUFFER_HEAD_ROOM + RTP_BUFFER_TAIL_ROOM)
#ifndef RTP_LOOP_PROTECT
#define RTP_LOOP_PROTECT 16 /* number of bytes */
#define RTP_LOOP_PROTECT 28 /* number of bytes */
#define RTP_LOOP_PACKETS 2 /* number of packets */
#define RTP_LOOP_MAX_COUNT 30 /* number of consecutively detected dupes to trigger protection */
#endif


Loading…
Cancel
Save