mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
for bug #293, http ts stream, move the avc codec from app to kernel.
This commit is contained in:
parent
dc6299171f
commit
913f98b902
17 changed files with 309 additions and 134 deletions
|
@ -275,8 +275,6 @@ SrsGoHttpFileServer::~SrsGoHttpFileServer()
|
|||
|
||||
int SrsGoHttpFileServer::serve_http(ISrsGoHttpResponseWriter* w, SrsHttpMessage* r)
|
||||
{
|
||||
int ret = ERROR_SUCCESS;
|
||||
|
||||
string upath = r->path();
|
||||
|
||||
// add default pages.
|
||||
|
@ -760,6 +758,9 @@ int SrsGoHttpResponseWriter::send_header(char* data, int size)
|
|||
if (content_length == -1) {
|
||||
hdr->set("Transfer-Encoding", "chunked");
|
||||
}
|
||||
|
||||
// keep alive to make vlc happy.
|
||||
hdr->set("Connection", "Keep-Alive");
|
||||
|
||||
// write headers
|
||||
hdr->write(ss);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue