mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
For #913: TS/HLS/MPEGTS support complex error
This commit is contained in:
parent
20a42599f3
commit
abcaba33ee
24 changed files with 699 additions and 823 deletions
|
@ -56,14 +56,14 @@ SrsAsyncCallWorker::~SrsAsyncCallWorker()
|
|||
srs_cond_destroy(wait);
|
||||
}
|
||||
|
||||
int SrsAsyncCallWorker::execute(ISrsAsyncCallTask* t)
|
||||
srs_error_t SrsAsyncCallWorker::execute(ISrsAsyncCallTask* t)
|
||||
{
|
||||
int ret = ERROR_SUCCESS;
|
||||
srs_error_t err = srs_success;
|
||||
|
||||
tasks.push_back(t);
|
||||
srs_cond_signal(wait);
|
||||
|
||||
return ret;
|
||||
return err;
|
||||
}
|
||||
|
||||
int SrsAsyncCallWorker::count()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue