From: Mike Jerris Date: Thu, 6 Oct 2016 15:02:54 +0000 (-0400) Subject: FS-9581: [windows] don't define symbols before pch include X-Git-Tag: v1.8.0~1203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed3aeba135aa696bd61268884115a62a53928fee;p=thirdparty%2Ffreeswitch.git FS-9581: [windows] don't define symbols before pch include --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 09f0149679..5737434787 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -30,13 +30,6 @@ * switch_rtp.c -- RTP * */ -//#define DEBUG_2833 -//#define RTP_DEBUG_WRITE_DELTA -//#define DEBUG_MISSED_SEQ -//#define DEBUG_EXTRA -//#define DEBUG_RTCP -#define DEBUG_ESTIMATORS_ - #include #ifndef _MSC_VER #include @@ -58,6 +51,13 @@ #include #include +//#define DEBUG_2833 +//#define RTP_DEBUG_WRITE_DELTA +//#define DEBUG_MISSED_SEQ +//#define DEBUG_EXTRA +//#define DEBUG_RTCP +#define DEBUG_ESTIMATORS_ + #define JITTER_LEAD_FRAMES 10 #define READ_INC(rtp_session) switch_mutex_lock(rtp_session->read_mutex); rtp_session->reading++