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
2016-12-13 18:41:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aca8a79d956428a13b7e3b42b36001a908934060
aca8a79d
1 parent
cb1d47bf
fix #713, disable the source cleanup. 2.0.223
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
11 行增加
和
2 行删除
README.md
trunk/src/app/srs_app_source.cpp
trunk/src/core/srs_core.hpp
README.md
查看文件 @
aca8a79
...
...
@@ -344,6 +344,7 @@ Remark:
## History
*
v2.0, 2016-12-13, fix #713, disable the source cleanup. 2.0.223
*
v2.0, 2016-12-13, fix #713, refine source to avoid critical fetch and create. 2.0.222
*
<strong>
v2.0, 2016-11-09,
[
2.0 beta2(2.0.221)
][
r2.0b2
]
released. 86691 lines.
</strong>
*
v2.0, 2016-11-05, fix #654, crash when source cleanup for edge. 2.0.221
...
...
trunk/src/app/srs_app_source.cpp
查看文件 @
aca8a79
...
...
@@ -792,9 +792,17 @@ void SrsSource::dispose_all()
int
SrsSource
::
cycle_all
()
{
int
ret
=
ERROR_SUCCESS
;
// TODO: FIXME: support source cleanup.
// @see https://github.com/ossrs/srs/issues/713
// @see https://github.com/ossrs/srs/issues/714
#if 0
int cid = _srs_context->get_id();
int
ret
=
do_cycle_all
();
ret = do_cycle_all();
_srs_context->set_id(cid);
#endif
return
ret
;
}
...
...
trunk/src/core/srs_core.hpp
查看文件 @
aca8a79
...
...
@@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR 2
#define VERSION_MINOR 0
#define VERSION_REVISION 22
1
#define VERSION_REVISION 22
3
// generated by configure, only macros.
#include <srs_auto_headers.hpp>
...
...
请
注册
或
登录
后发表评论