Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2015-04-20 11:28:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
23b978c0bba41abecc73949e0ba5deacf4c8f756
23b978c0
1 parent
623e37e2
merge from github
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
trunk/research/librtmp/srs_ingest_flv.c
trunk/research/librtmp/srs_ingest_flv.c
查看文件 @
23b978c
...
...
@@ -257,7 +257,7 @@ void re_update(int64_t re, int32_t starttime, u_int32_t time)
int64_t
now
=
srs_utils_time_ms
();
int64_t
diff
=
time
-
starttime
-
(
now
-
re
);
if
(
diff
>
RE_PULSE_MS
)
{
usleep
(
diff
*
1000
);
usleep
(
(
useconds_t
)(
diff
*
1000
)
);
}
}
void
re_cleanup
(
int64_t
re
,
int32_t
starttime
,
u_int32_t
time
)
...
...
@@ -269,6 +269,6 @@ void re_cleanup(int64_t re, int32_t starttime, u_int32_t time)
if
(
diff
>
0
)
{
srs_human_trace
(
"re_cleanup, diff=%d, start=%d, last=%d ms"
,
(
int
)
diff
,
starttime
,
time
);
usleep
(
diff
*
1000
);
usleep
(
(
useconds_t
)(
diff
*
1000
)
);
}
}
...
...
请
注册
或
登录
后发表评论