Skip to content

Commit

Permalink
Change defaults for rtp forwarding to 20000-25000
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Malaev committed Dec 6, 2024
1 parent eb2527a commit 18d544f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/janus_videoroom.c
Original file line number Diff line number Diff line change
Expand Up @@ -2558,8 +2558,8 @@ static void janus_videoroom_create_dummy_publisher(janus_videoroom *room, GHashT

/* We support remote publishers as well, for which we use plain RTP,
* which means we need to create and work with generic file descriptors */
#define DEFAULT_RTP_RANGE_MIN 10000
#define DEFAULT_RTP_RANGE_MAX 60000
#define DEFAULT_RTP_RANGE_MIN 20000
#define DEFAULT_RTP_RANGE_MAX 25000
static uint16_t rtp_range_min = DEFAULT_RTP_RANGE_MIN;
static uint16_t rtp_range_max = DEFAULT_RTP_RANGE_MAX;
static uint16_t rtp_range_slider = DEFAULT_RTP_RANGE_MIN;
Expand Down

0 comments on commit 18d544f

Please sign in to comment.