mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-07 10:00:55 +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: I0b68072abb1d4132b22a3817f4ab09dafecc7dee
27 lines
480 B
C
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__*/
|
|
|