Browse Source

MT#55283 move defines

to a more appropriate place to remove an otherwise unneeded dependency

Change-Id: If82707e937a9102de1a405a25f7f3f436df878e6
pull/1923/head
Richard Fuchs 9 months ago
parent
commit
f090376d9a
3 changed files with 6 additions and 6 deletions
  1. +0
    -5
      include/call.h
  2. +6
    -0
      lib/poller.h
  3. +0
    -1
      lib/uring.c

+ 0
- 5
include/call.h View File

@ -12,11 +12,6 @@
#include <limits.h>
#include <stdbool.h>
#define MAX_RTP_PACKET_SIZE 8192
#define RTP_BUFFER_HEAD_ROOM 128
#define RTP_BUFFER_TAIL_ROOM 512
#define RTP_BUFFER_SIZE (MAX_RTP_PACKET_SIZE + RTP_BUFFER_HEAD_ROOM + RTP_BUFFER_TAIL_ROOM)
#include "compat.h"
#include "socket.h"
#include "media_socket.h"


+ 6
- 0
lib/poller.h View File

@ -11,6 +11,12 @@
#include "compat.h"
#define MAX_RTP_PACKET_SIZE 8192
#define RTP_BUFFER_HEAD_ROOM 128
#define RTP_BUFFER_TAIL_ROOM 512
#define RTP_BUFFER_SIZE (MAX_RTP_PACKET_SIZE + RTP_BUFFER_HEAD_ROOM + RTP_BUFFER_TAIL_ROOM)
struct obj;
struct sockaddr;


+ 0
- 1
lib/uring.c View File

@ -7,7 +7,6 @@
#include "socket.h"
#include "poller.h"
#include "bufferpool.h"
#include "call.h"
#define BUFFER_SIZE RTP_BUFFER_SIZE // size of individual buffer


Loading…
Cancel
Save