webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
Namespaces | Macros
audio_mixer_manager_mac.cc File Reference
#include "webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h"
#include "webrtc/system_wrappers/include/trace.h"
#include <unistd.h>

Namespaces

 webrtc
 

Macros

#define WEBRTC_CA_RETURN_ON_ERR(expr)
 
#define WEBRTC_CA_LOG_ERR(expr)
 
#define WEBRTC_CA_LOG_WARN(expr)
 

Macro Definition Documentation

◆ WEBRTC_CA_LOG_ERR

#define WEBRTC_CA_LOG_ERR (   expr)
Value:
do { \
err = expr; \
if (err != noErr) { \
logCAMsg(kTraceError, kTraceAudioDevice, _id, "Error in " #expr, \
(const char*) & err); \
} \
} while (0)
Definition: common_types.h:96
NSString * _id
Definition: JSModule.m:29
Definition: common_types.h:106

◆ WEBRTC_CA_LOG_WARN

#define WEBRTC_CA_LOG_WARN (   expr)
Value:
do { \
err = expr; \
if (err != noErr) { \
logCAMsg(kTraceWarning, kTraceAudioDevice, _id, "Error in " #expr, \
(const char*) & err); \
} \
} while (0)
Definition: common_types.h:96
NSString * _id
Definition: JSModule.m:29
Definition: common_types.h:105

◆ WEBRTC_CA_RETURN_ON_ERR

#define WEBRTC_CA_RETURN_ON_ERR (   expr)
Value:
do { \
err = expr; \
if (err != noErr) { \
logCAMsg(kTraceError, kTraceAudioDevice, _id, "Error in " #expr, \
(const char*) & err); \
return -1; \
} \
} while (0)
Definition: common_types.h:96
NSString * _id
Definition: JSModule.m:29
Definition: common_types.h:106