⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 This the source release kit for the following system configuration(s): - AMD Alchemy(TM) DBAu1200(
💻 H
字号:
/*************************************************************************
	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -