debug.h
来自「This the source release kit for the foll」· C头文件 代码 · 共 27 行
H
27 行
/*************************************************************************
debug.h
*************************************************************************/
#ifndef __DEBUG_H_
#define __DEBUG_H_
#include "diu.h"
#define DP_H264(_args_) //OSDebugPrint _args_ //ENABLE_PRINTS linux equivilant
#define DP_ERROR(_args_) OSDebugPrint _args_ // Serious Errors prints
#define DP_INFO(_args_) //OSDebugPrint _args_ // Informational prints
#define DP_API(_args_) //OSDebugPrint _args_ // API related prints
#define DP_SYNC(_args_) //OSDebugPrint _args_ // Sync Related prints
#define DP_DEC(_args_) //OSDebugPrint _args_ // General Decoding related prints
#define DP_VLC(_args_) //OSDebugPrint _args_ // Variable Length Coding related prints
#define DP_MV(_args_) //OSDebugPrint _args_ // Motion Vector related prints
#define DP_IQ(_args_) //OSDebugPrint _args_ // IQUANT related prints
#define DP_LOG(_args_) //OSDebugPrint _args_ // AV Log related prints
#define DP_PERF(_args_) //OSDebugPrint _args_ // Performance related prints
extern void OSDebugPrint(m_tchar *format, ...);
#endif // __DEBUG_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?