mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Refine get_queue_length and set_queue_size in time unit
This commit is contained in:
parent
e3983b3513
commit
c1b64ba24f
13 changed files with 43 additions and 32 deletions
|
@ -306,7 +306,7 @@ void show_macro_features()
|
|||
// gc(gop-cache)
|
||||
ss << "gc:" << srs_bool2switch(SRS_PERF_GOP_CACHE);
|
||||
// pq(play-queue)
|
||||
ss << ", pq:" << SRS_PERF_PLAY_QUEUE << "s";
|
||||
ss << ", pq:" << srsu2msi(SRS_PERF_PLAY_QUEUE) << "ms";
|
||||
// cscc(chunk stream cache cid)
|
||||
ss << ", cscc:[0," << SRS_PERF_CHUNK_STREAM_CACHE << ")";
|
||||
// csa(complex send algorithm)
|
||||
|
@ -342,7 +342,7 @@ void show_macro_features()
|
|||
possible_mr_latency = srsu2msi(SRS_PERF_MR_SLEEP);
|
||||
#endif
|
||||
srs_trace("system default latency in ms: mw(0-%d) + mr(0-%d) + play-queue(0-%d)",
|
||||
srsu2msi(SRS_PERF_MW_SLEEP), possible_mr_latency, SRS_PERF_PLAY_QUEUE*1000);
|
||||
srsu2msi(SRS_PERF_MW_SLEEP), possible_mr_latency, srsu2msi(SRS_PERF_PLAY_QUEUE));
|
||||
|
||||
#ifdef SRS_AUTO_MEM_WATCH
|
||||
#warning "srs memory watcher will hurts performance. user should kill by SIGTERM or init.d script."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue