Files
mpp/osal/inc/mpp_runtime.h
Hongjin Li 9c4c7f6e49 refactor[mpp_runtime]: Refactor C++ mpp_runtime to C
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: I0b68072abb1d4132b22a3817f4ab09dafecc7dee
2025-06-12 11:49:25 +08:00

27 lines
480 B
C

/* SPDX-License-Identifier: Apache-2.0 OR MIT */
/*
* Copyright (c) 2015 Rockchip Electronics Co., Ltd.
*/
#ifndef __MPP_RUNTIME__
#define __MPP_RUNTIME__
#include "mpp_buffer.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Runtime function detection is to support different binary on different
* runtime environment. This is usefull on product environemnt.
*/
rk_u32 mpp_rt_allcator_is_valid(MppBufferType type);
#ifdef __cplusplus
}
#endif
#endif /*__MPP_RUNTIME__*/