summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--omx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/omx.c b/omx.c
index 354ed93..5ad17ab 100644
--- a/omx.c
+++ b/omx.c
@@ -604,7 +604,7 @@ void cOmx::StartClock(bool waitForVideo, bool waitForAudio)
if (OMX_SetConfig(ILC_GET_HANDLE(m_comp[eClock]),
OMX_IndexConfigTimeClockState, &cstate) != OMX_ErrorNone)
- ELOG("failed to set clock state!");
+ ELOG("failed to start clock!");
}
void cOmx::StopClock()
@@ -617,7 +617,7 @@ void cOmx::StopClock()
if (OMX_SetConfig(ILC_GET_HANDLE(m_comp[eClock]),
OMX_IndexConfigTimeClockState, &cstate) != OMX_ErrorNone)
- ELOG("failed to set clock state!");
+ ELOG("failed to stop clock!");
}
void cOmx::SetClockScale(OMX_S32 scale)