[vlc-commits] demux: adaptive: fix debug string arguments
Francois Cartegnie
git at videolan.org
Wed Sep 27 18:04:42 CEST 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Sep 27 17:12:25 2017 +0200| [2ca6b3e4191b855b4514e073b980bcd4d842eb59] | committer: Francois Cartegnie
demux: adaptive: fix debug string arguments
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2ca6b3e4191b855b4514e073b980bcd4d842eb59
---
modules/demux/adaptive/logic/PredictiveAdaptationLogic.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/adaptive/logic/PredictiveAdaptationLogic.cpp b/modules/demux/adaptive/logic/PredictiveAdaptationLogic.cpp
index a209d63c33..a64bbcec0c 100644
--- a/modules/demux/adaptive/logic/PredictiveAdaptationLogic.cpp
+++ b/modules/demux/adaptive/logic/PredictiveAdaptationLogic.cpp
@@ -213,7 +213,7 @@ void PredictiveAdaptationLogic::trackerEvent(const SegmentTrackerEvent &event)
streams.erase(it);
}
vlc_mutex_unlock(&lock);
- BwDebug(msg_Info(p_obj, "Stream %s is now known %sactive",
+ BwDebug(msg_Info(p_obj, "Stream %s is now known %sactive", id.str().c_str(),
(event.u.buffering.enabled) ? "" : "in"));
}
break;
More information about the vlc-commits
mailing list