[osal]: Change mpp time print to us

Change-Id: Ifd73aad1e3b65b44a8d7e284647c065fde66ca98
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
Herman Chen
2017-06-27 09:41:20 +08:00
parent 90cca949c9
commit 2c3c72a815

View File

@@ -53,6 +53,6 @@ void mpp_time_diff(RK_S64 start, RK_S64 end, RK_S64 limit, char *fmt)
RK_S64 diff = end - start;
if (diff >= limit)
mpp_dbg(MPP_DBG_TIMING, "%s timing %.2f ms\n", fmt, diff / (float)1000);
mpp_dbg(MPP_DBG_TIMING, "%s timing %lld us\n", fmt, diff);
}