21 lines
326 B
C
21 lines
326 B
C
/* SPDX-License-Identifier: Apache-2.0 OR MIT */
|
|
/*
|
|
* Copyright (c) 2016 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef RC_IMPL_H
|
|
#define RC_IMPL_H
|
|
|
|
#include "mpp_rc_api.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
RcImplApi *rc_api_get(MppCodingType type, const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* RC_IMPL_H */
|