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

Signed-off-by: Chandler Chen <chandler.chen@rock-chips.com> Signed-off-by: Hongjin Li <vic.hong@rock-chips.com> Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: I0946d23122b2c1061dc4c031c67074a1bb48de11
26 lines
583 B
C
26 lines
583 B
C
/* SPDX-License-Identifier: Apache-2.0 OR MIT */
|
|
/*
|
|
* Copyright (c) 2021 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __MPP_TRACE_H__
|
|
#define __MPP_TRACE_H__
|
|
|
|
#include "rk_type.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mpp_trace_begin(const char* name);
|
|
void mpp_trace_end(const char* name);
|
|
void mpp_trace_async_begin(const char* name, rk_s32 cookie);
|
|
void mpp_trace_async_end(const char* name, rk_s32 cookie);
|
|
void mpp_trace_int32(const char* name, rk_s32 value);
|
|
void mpp_trace_int64(const char* name, rk_s64 value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*__MPP_TRACE_H__*/ |