15 lines
416 B
C
15 lines
416 B
C
#ifndef APP_AUDIO_DEBUG_H
|
|
#define APP_AUDIO_DEBUG_H
|
|
|
|
#include "app_config.h"
|
|
#include "system/includes.h"
|
|
|
|
/* UTF-8 中文日志;只在状态变化时打印,不在音频采样循环内连续打印。 */
|
|
#if TCFG_MAGIC_AUDIO_DEBUG_ENABLE
|
|
#define MAGIC_AUDIO_LOG(fmt, ...) printf("[魔盒声音] " fmt "\n", ##__VA_ARGS__)
|
|
#else
|
|
#define MAGIC_AUDIO_LOG(...) do { } while (0)
|
|
#endif
|
|
|
|
#endif /* APP_AUDIO_DEBUG_H */
|