mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
rtpjitterbuffer: fix build error with gcc (Debian 4.9.2-21) 4.9.2
Replace static constants with macros to make gcc happy CC elements/elements_rtpjitterbuffer-rtpjitterbuffer.o elements/rtpjitterbuffer.c:387:1: error: initializer element is not constant static const GstClockTime PCMU_BUF_DURATION = PCMU_BUF_MS * GST_MSECOND; ^ elements/rtpjitterbuffer.c:388:1: error: initializer element is not constant static const guint PCMU_BUF_SIZE = 64000 * PCMU_BUF_MS / 1000; ^ elements/rtpjitterbuffer.c:390:5: error: initializer element is not constant PCMU_BUF_CLOCK_RATE * PCMU_BUF_MS / 1000;
This commit is contained in:
parent
3edf9e4f58
commit
241e0c2722
1 changed files with 7 additions and 8 deletions
|
@ -380,14 +380,13 @@ GST_START_TEST (test_clear_pt_map)
|
|||
|
||||
GST_END_TEST;
|
||||
|
||||
static const guint PCMU_BUF_CLOCK_RATE = 8000;
|
||||
static const guint PCMU_BUF_PT = 0;
|
||||
static const guint PCMU_BUF_SSRC = 0x01BADBAD;
|
||||
static const guint PCMU_BUF_MS = 20;
|
||||
static const GstClockTime PCMU_BUF_DURATION = PCMU_BUF_MS * GST_MSECOND;
|
||||
static const guint PCMU_BUF_SIZE = 64000 * PCMU_BUF_MS / 1000;
|
||||
static const guint PCMU_RTP_TS_DURATION =
|
||||
PCMU_BUF_CLOCK_RATE * PCMU_BUF_MS / 1000;
|
||||
#define PCMU_BUF_CLOCK_RATE 8000
|
||||
#define PCMU_BUF_PT 0
|
||||
#define PCMU_BUF_SSRC 0x01BADBAD
|
||||
#define PCMU_BUF_MS 20
|
||||
#define PCMU_BUF_DURATION (PCMU_BUF_MS * GST_MSECOND)
|
||||
#define PCMU_BUF_SIZE (64000 * PCMU_BUF_MS / 1000)
|
||||
#define PCMU_RTP_TS_DURATION (PCMU_BUF_CLOCK_RATE * PCMU_BUF_MS / 1000)
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue