Skip to content
Snippets Groups Projects
Commit d44f5727 authored by P. Frost's avatar P. Frost Committed by Rémi Denis-Courmont
Browse files

debux: adaptive: Fix missing vlc_tick macro

parent 97867416
No related branches found
No related tags found
2 merge requests!3533Backport MR 3236 to 3.0.x,!1261Fix build error caused by MS_FROM_VLC_TICK macro
Pipeline #185113 passed with stages
in 17 minutes and 10 seconds
......@@ -54,7 +54,7 @@ void AbstractConnectionManager::updateDownloadRate(const adaptive::ID &sourceid,
{
BwDebug(msg_Dbg(p_object,
"%" PRId64 "Kbps downloaded %zuKBytes in %" PRId64 "ms latency %" PRId64 "ms [%s]",
1000 * size * 8 / (time ? time : 1), size / 1024, MS_FROM_VLC_TICK(time),
1000 * size * 8 / (time ? time : 1), size / 1024, time / 1000,
latency / 1000, sourceid.str().c_str()));
rateObserver->updateDownloadRate(sourceid, size, time, latency);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment