[osal]: fix time calc error

git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@487 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
ChenHengming
2015-11-25 16:16:30 +00:00
parent 1265c7f173
commit 3b510f1124

View File

@@ -51,6 +51,6 @@ void mpp_time_diff(char *name, RK_S64 start, RK_S64 end)
if (!(mpp_debug & MPP_TIMING))
return;
mpp_dbg(MPP_TIMING, "%s %.1f\n ms", name, (start - end) / (float)1000);
mpp_dbg(MPP_TIMING, "%s timing %.1f\n ms", name, (end - start) / (float)1000);
}