[vlc-commits] [Git][videolan/vlc][3.0.x] debux: adaptive: Fix missing vlc_tick macro
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Thu Jan 27 13:29:55 UTC 2022
Hugo Beauzée-Luyssen pushed to branch 3.0.x at VideoLAN / VLC
Commits:
d44f5727 by Peter Frost at 2022-01-27T10:54:02+00:00
debux: adaptive: Fix missing vlc_tick macro
- - - - -
1 changed file:
- modules/demux/adaptive/http/HTTPConnectionManager.cpp
Changes:
=====================================
modules/demux/adaptive/http/HTTPConnectionManager.cpp
=====================================
@@ -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);
}
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d44f57277c2b30b207d164fdf09a26fe9f558d35
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d44f57277c2b30b207d164fdf09a26fe9f558d35
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list