Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
397c1c7c
Commit
397c1c7c
authored
Jun 28, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整理宏
parent
7e5873d8
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
24 行增加
和
20 行删除
+24
-20
3rdpart/assert.h
+9
-11
src/Common/config.h
+14
-8
src/Rtcp/RtcpFCI.h
+1
-1
没有找到文件。
3rdpart/assert.h
查看文件 @
397c1c7c
...
...
@@ -13,22 +13,20 @@
#include <stdio.h>
#ifdef __cplusplus
extern
"C"
{
#endif
extern
void
Assert_Throw
(
int
failed
,
const
char
*
exp
,
const
char
*
func
,
const
char
*
file
,
int
line
);
#ifdef __cplusplus
}
#endif
#define CHECK(exp) Assert_Throw(!(exp), #exp, __FUNCTION__, __FILE__, __LINE__)
#ifndef NDEBUG
#ifdef assert
#undef assert
#endif//assert
#define assert(exp) Assert_Throw(!(exp), #exp, __FUNCTION__, __FILE__, __LINE__);
#ifdef __cplusplus
extern
"C"
{
#endif
extern
void
Assert_Throw
(
int
failed
,
const
char
*
exp
,
const
char
*
func
,
const
char
*
file
,
int
line
);
#ifdef __cplusplus
}
#endif
#define assert(exp) Assert_Throw(!(exp), #exp, __FUNCTION__, __FILE__, __LINE__)
#else
#define assert(e) ((void)0)
#endif//NDEBUG
...
...
src/Common/config.h
查看文件 @
397c1c7c
...
...
@@ -20,15 +20,10 @@
using
namespace
std
;
using
namespace
toolkit
;
namespace
mediakit
{
#ifndef CHECK
#define CHECK(exp) Assert_Throw(!(exp), #exp, __FUNCTION__, __FILE__, __LINE__)
#endif//CHECK
//加载配置文件,如果配置文件不存在,那么会导出默认配置并生成配置文件
//加载配置文件成功后会触发kBroadcastUpdateConfig广播
//如果指定的文件名(ini_path)为空,那么会加载默认配置文件
//默认配置文件名为 /path/to/your/exe.ini
//加载配置文件成功后返回true,否则返回false
bool
loadIniConfig
(
const
char
*
ini_path
=
nullptr
);
////////////其他宏定义///////////
#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b) )
#endif //MAX
...
...
@@ -51,6 +46,17 @@ bool loadIniConfig(const char *ini_path = nullptr);
#define FMP4_SCHEMA "fmp4"
#define DEFAULT_VHOST "__defaultVhost__"
extern
"C"
void
Assert_Throw
(
int
failed
,
const
char
*
exp
,
const
char
*
func
,
const
char
*
file
,
int
line
);
namespace
mediakit
{
//加载配置文件,如果配置文件不存在,那么会导出默认配置并生成配置文件
//加载配置文件成功后会触发kBroadcastUpdateConfig广播
//如果指定的文件名(ini_path)为空,那么会加载默认配置文件
//默认配置文件名为 /path/to/your/exe.ini
//加载配置文件成功后返回true,否则返回false
bool
loadIniConfig
(
const
char
*
ini_path
=
nullptr
);
////////////广播名称///////////
namespace
Broadcast
{
...
...
src/Rtcp/RtcpFCI.h
查看文件 @
397c1c7c
...
...
@@ -12,7 +12,7 @@
#define ZLMEDIAKIT_RTCPFCI_H
#include "Rtcp.h"
#include "
assert
.h"
#include "
Common/config
.h"
namespace
mediakit
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论