webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
Namespaces | Macros
voe_audio_processing_impl.cc File Reference
#include "webrtc/voice_engine/voe_audio_processing_impl.h"
#include "webrtc/base/logging.h"
#include "webrtc/modules/audio_processing/include/audio_processing.h"
#include "webrtc/system_wrappers/include/trace.h"
#include "webrtc/voice_engine/channel.h"
#include "webrtc/voice_engine/include/voe_errors.h"
#include "webrtc/voice_engine/transmit_mixer.h"
#include "webrtc/voice_engine/voice_engine_impl.h"

Namespaces

 webrtc
 

Macros

#define WEBRTC_VOICE_INIT_CHECK()
 
#define WEBRTC_VOICE_INIT_CHECK_BOOL()
 

Macro Definition Documentation

◆ WEBRTC_VOICE_INIT_CHECK

#define WEBRTC_VOICE_INIT_CHECK ( )
Value:
do { \
if (!_shared->statistics().Initialized()) { \
_shared->SetLastError(VE_NOT_INITED, kTraceError); \
return -1; \
} \
} while (0)
#define VE_NOT_INITED
Definition: voe_errors.h:40
Definition: common_types.h:106

◆ WEBRTC_VOICE_INIT_CHECK_BOOL

#define WEBRTC_VOICE_INIT_CHECK_BOOL ( )
Value:
do { \
if (!_shared->statistics().Initialized()) { \
_shared->SetLastError(VE_NOT_INITED, kTraceError); \
return false; \
} \
} while (0)
#define VE_NOT_INITED
Definition: voe_errors.h:40
Definition: common_types.h:106