From 32485597b7f84dddad7c1ea5537d14fc715d9bc9 Mon Sep 17 00:00:00 2001 From: Thomas Reufer Date: Tue, 3 Feb 2015 20:18:37 +0100 Subject: trace speed changes in live mode only when debugging --- omxdevice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/omxdevice.c b/omxdevice.c index 3e25121..ddb23d8 100644 --- a/omxdevice.c +++ b/omxdevice.c @@ -637,7 +637,7 @@ void cOmxDevice::UpdateLatency(int64_t pts) { m_liveSpeed = ePosMaxCorrection; m_posMaxCorrections++; - DLOG("latency too big, speeding up..."); + DBG("latency too big, speeding up..."); } } else if (average < 0.5f * m_latencyTarget) @@ -646,7 +646,7 @@ void cOmxDevice::UpdateLatency(int64_t pts) { m_liveSpeed = eNegMaxCorrection; m_negMaxCorrections++; - DLOG("latency too small, slowing down..."); + DBG("latency too small, slowing down..."); } } else if (average > 1.1f * m_latencyTarget) -- cgit v1.2.3