1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for bug #143, build on centos5.

This commit is contained in:
winlin 2014-08-02 22:18:39 +08:00
parent 84450e1588
commit 7b24788445
118 changed files with 123 additions and 24 deletions

View file

@ -993,8 +993,8 @@ int SrsHlsCache::on_publish(SrsHlsMuxer* muxer, SrsRequest* req, int64_t segment
std::string stream = req->stream;
std::string app = req->app;
int hls_fragment = _srs_config->get_hls_fragment(vhost);
int hls_window = _srs_config->get_hls_window(vhost);
int hls_fragment = (int)_srs_config->get_hls_fragment(vhost);
int hls_window = (int)_srs_config->get_hls_window(vhost);
// get the hls path config
std::string hls_path = _srs_config->get_hls_path(vhost);
@ -1531,3 +1531,4 @@ void SrsHls::hls_mux()
#endif