diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2015-02-03 20:18:37 +0100 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2015-02-03 20:18:37 +0100 |
| commit | 32485597b7f84dddad7c1ea5537d14fc715d9bc9 (patch) | |
| tree | a77481d96a069ecfa5a539f20127a7bf07b82a45 | |
| parent | f3af95523a2d467ed62c448dd80012c896932d72 (diff) | |
| download | vdr-plugin-rpihddevice-32485597b7f84dddad7c1ea5537d14fc715d9bc9.tar.gz vdr-plugin-rpihddevice-32485597b7f84dddad7c1ea5537d14fc715d9bc9.tar.bz2 | |
trace speed changes in live mode only when debugging
| -rw-r--r-- | omxdevice.c | 4 |
1 files 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) |
