mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 01:26:49 +08:00
[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:
@@ -51,6 +51,6 @@ void mpp_time_diff(char *name, RK_S64 start, RK_S64 end)
|
|||||||
if (!(mpp_debug & MPP_TIMING))
|
if (!(mpp_debug & MPP_TIMING))
|
||||||
return;
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user