mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 17:46:50 +08:00

Change time function from gettimeofday to clock_gettime. Output of mpp_time() is still in us. Change-Id: I7f961bb7bb4007e8e42ae5358bd7f568edf6c3d0 Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
/*
|
|
* Copyright 2015 Rockchip Electronics Co. LTD
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#define MODULE_TAG "mpp_time_test"
|
|
|
|
#include "mpp_log.h"
|
|
#include "mpp_time.h"
|
|
|
|
int main()
|
|
{
|
|
RK_S64 time_0;
|
|
RK_S64 time_1;
|
|
|
|
mpp_err("mpp time test start\n");
|
|
|
|
time_0 = mpp_time();
|
|
|
|
msleep(10);
|
|
|
|
time_1 = mpp_time();
|
|
|
|
mpp_log("time 0 %lld us\n", time_0);
|
|
mpp_log("time 1 %lld us\n", time_1);
|
|
mpp_log("diff expected 10 ms real %.2f ms\n", (float)(time_1 - time_0) / 1000);
|
|
|
|
mpp_err("mpp time test done\n");
|
|
|
|
return 0;
|
|
}
|