summaryrefslogtreecommitdiffstats
path: root/plugins/audio_webrtc/audio_webrtc_config.h
diff options
context:
space:
mode:
authorMamadou DIOP <bossiel@yahoo.fr>2016-02-23 22:00:35 +0100
committerMamadou DIOP <bossiel@yahoo.fr>2016-02-23 22:00:35 +0100
commit50dfb4359619563012997bc3ddafb7667741066c (patch)
treedb234c1edc3240a653363b5735fc4077af4b8720 /plugins/audio_webrtc/audio_webrtc_config.h
parent94b2219209038e05dd26395f6fb700be4d1062c0 (diff)
downloaddoubango-50dfb4359619563012997bc3ddafb7667741066c.zip
doubango-50dfb4359619563012997bc3ddafb7667741066c.tar.gz
Add new QoS implementation
Code formatting
Diffstat (limited to 'plugins/audio_webrtc/audio_webrtc_config.h')
-rwxr-xr-xplugins/audio_webrtc/audio_webrtc_config.h52
1 files changed, 30 insertions, 22 deletions
diff --git a/plugins/audio_webrtc/audio_webrtc_config.h b/plugins/audio_webrtc/audio_webrtc_config.h
index dc7c1fd..d441703 100755
--- a/plugins/audio_webrtc/audio_webrtc_config.h
+++ b/plugins/audio_webrtc/audio_webrtc_config.h
@@ -1,17 +1,17 @@
/* Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/
@@ -72,13 +72,13 @@
# define DOUBANGO_AUDIO_WEBRTC_BEGIN_DECLS extern "C" {
# define DOUBANGO_AUDIO_WEBRTC_END_DECLS }
#else
-# define DOUBANGO_AUDIO_WEBRTC_BEGIN_DECLS
+# define DOUBANGO_AUDIO_WEBRTC_BEGIN_DECLS
# define DOUBANGO_AUDIO_WEBRTC_END_DECLS
#endif
#ifdef _MSC_VER
#if HAVE_FFMPEG // FFMPeg warnings (treated as errors)
-# pragma warning (disable:4244)
+# pragma warning (disable:4244)
#endif
# define inline __inline
# define _CRT_SECURE_NO_WARNINGS
@@ -96,7 +96,7 @@
#endif
#if HAVE_CONFIG_H
- #include "../config.h"
+#include "../config.h"
#endif
#if DOUBANGO_AUDIO_WEBRTC_UNDER_WINDOWS
@@ -113,22 +113,30 @@
#define ANDROID_DEBUG_TAG "plugin_audio_webrtc" // DDMS log tag when using eclise
static void DOUBANGO_AUDIO_WEBRTC_DEBUG_ANY(int level, const char* fmt, ...)
{
- char* message = tsk_null;
- va_list ap;
- va_start(ap, fmt);
- tsk_sprintf_2(&message, fmt, &ap);
-
- if(message){
- switch(level){
- case DEBUG_LEVEL_INFO: __android_log_write(ANDROID_LOG_INFO, ANDROID_DEBUG_TAG, message); break;
- case DEBUG_LEVEL_WARN: __android_log_write(ANDROID_LOG_WARN, ANDROID_DEBUG_TAG, message); break;
- case DEBUG_LEVEL_ERROR: __android_log_write(ANDROID_LOG_ERROR, ANDROID_DEBUG_TAG, message); break;
- case DEBUG_LEVEL_FATAL: __android_log_write(ANDROID_LOG_FATAL, ANDROID_DEBUG_TAG, message); break;
- }
- TSK_FREE(message);
- }
-
- va_end(ap);
+ char* message = tsk_null;
+ va_list ap;
+ va_start(ap, fmt);
+ tsk_sprintf_2(&message, fmt, &ap);
+
+ if(message) {
+ switch(level) {
+ case DEBUG_LEVEL_INFO:
+ __android_log_write(ANDROID_LOG_INFO, ANDROID_DEBUG_TAG, message);
+ break;
+ case DEBUG_LEVEL_WARN:
+ __android_log_write(ANDROID_LOG_WARN, ANDROID_DEBUG_TAG, message);
+ break;
+ case DEBUG_LEVEL_ERROR:
+ __android_log_write(ANDROID_LOG_ERROR, ANDROID_DEBUG_TAG, message);
+ break;
+ case DEBUG_LEVEL_FATAL:
+ __android_log_write(ANDROID_LOG_FATAL, ANDROID_DEBUG_TAG, message);
+ break;
+ }
+ TSK_FREE(message);
+ }
+
+ va_end(ap);
}
#define DOUBANGO_AUDIO_WEBRTC_DEBUG_INFO(FMT, ...) DOUBANGO_AUDIO_WEBRTC_DEBUG_ANY(DEBUG_LEVEL_INFO, FMT, ##__VA_ARGS__)
#define DOUBANGO_AUDIO_WEBRTC_DEBUG_WARN(FMT, ...) DOUBANGO_AUDIO_WEBRTC_DEBUG_ANY(DEBUG_LEVEL_WARN, FMT, ##__VA_ARGS__)
OpenPOWER on IntegriCloud