[vlc-commits] demux: adaptive: fix units in ratebasedlogic

Francois Cartegnie git at videolan.org
Wed Sep 21 18:52:33 CEST 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Sep 21 17:34:16 2016 +0200| [58b15210bc80df5968be6cad33ce77e96f2763fb] | committer: Francois Cartegnie

demux: adaptive: fix units in ratebasedlogic

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=58b15210bc80df5968be6cad33ce77e96f2763fb
---

 modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp b/modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp
index 7efd8b7..117d43e 100644
--- a/modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp
+++ b/modules/demux/adaptive/logic/RateBasedAdaptationLogic.cpp
@@ -99,13 +99,13 @@ void RateBasedAdaptationLogic::updateDownloadRate(const ID &, size_t size, mtime
     BwDebug(msg_Dbg(p_obj, "alpha1 %lf alpha0 %lf dmax %ld ds %ld", alpha,
                     (double)deltamax / diffsum, deltamax, diffsum));
     BwDebug(msg_Dbg(p_obj, "bw estimation bps %zu -> avg %zu",
-                            bps / 8192, bpsAvg / 8192));
+                            bps / 8000, bpsAvg / 8000));
 
     currentBps = bpsAvg * 3/4;
     dlsize = dllength = 0;
 
     BwDebug(msg_Info(p_obj, "Current bandwidth %zu KiB/s using %u%%",
-                    (bpsAvg / 8192), (bpsAvg) ? (unsigned)(usedBps * 100.0 / bpsAvg) : 0));
+                    (bpsAvg / 8000), (bpsAvg) ? (unsigned)(usedBps * 100.0 / bpsAvg) : 0));
     vlc_mutex_unlock(&lock);
 }
 
@@ -120,7 +120,7 @@ void RateBasedAdaptationLogic::trackerEvent(const SegmentTrackerEvent &event)
             usedBps += event.u.switching.next->getBandwidth();
 
         BwDebug(msg_Info(p_obj, "New bandwidth usage %zu KiB/s %u%%",
-                        (usedBps / 8192), (bpsAvg) ? (unsigned)(usedBps * 100.0 / bpsAvg) : 0 ));
+                        (usedBps / 8000), (bpsAvg) ? (unsigned)(usedBps * 100.0 / bpsAvg) : 0 ));
         vlc_mutex_unlock(&lock);
     }
 }



More information about the vlc-commits mailing list