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-06-07 09:27:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
811ef4bcf6c9e0f23cc0937b9f30d0cfd4e747f2
811ef4bc
1 parent
beb04317
dispose the gop cache
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
13 行增加
和
0 行删除
trunk/src/app/srs_app_server.cpp
trunk/src/app/srs_app_source.cpp
trunk/src/app/srs_app_source.hpp
trunk/src/app/srs_app_server.cpp
查看文件 @
811ef4b
...
...
@@ -523,6 +523,8 @@ void SrsServer::destroy()
ingester
->
dispose
();
#endif
SrsSource
::
dispose_all
();
#ifdef SRS_AUTO_HTTP_API
srs_freep
(
http_api_mux
);
#endif
...
...
trunk/src/app/srs_app_source.cpp
查看文件 @
811ef4b
...
...
@@ -583,6 +583,11 @@ SrsGopCache::~SrsGopCache()
clear
();
}
void
SrsGopCache
::
dispose
()
{
clear
();
}
void
SrsGopCache
::
set
(
bool
enabled
)
{
enable_gop_cache
=
enabled
;
...
...
@@ -955,6 +960,8 @@ void SrsSource::dispose()
#ifdef SRS_AUTO_HLS
hls
->
dispose
();
#endif
gop_cache
->
dispose
();
}
int
SrsSource
::
cycle
()
...
...
trunk/src/app/srs_app_source.hpp
查看文件 @
811ef4b
...
...
@@ -310,6 +310,10 @@ public:
virtual
~
SrsGopCache
();
public
:
/**
* cleanup when system quit.
*/
virtual
void
dispose
();
/**
* to enable or disable the gop cache.
*/
virtual
void
set
(
bool
enabled
);
...
...
请
注册
或
登录
后发表评论