1 /* SPDX-License-Identifier: Apache-2.0 OR MIT */ 2 /* 3 * Copyright (c) 2021 Rockchip Electronics Co., Ltd. 4 */ 5 6 #ifndef __OSAL_2STR_H__ 7 #define __OSAL_2STR_H__ 8 9 #include "mpp_dev_defs.h" 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 const char *strof_client_type(MppClientType type); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif 22