1 /* GPL-2.0 WITH Linux-syscall-note OR Apache 2.0 */ 2 /* Copyright (c) 2022 Fuzhou Rockchip Electronics Co., Ltd */ 3 4 #ifndef INCLUDE_RT_MPI_MPI_AMIX_H_ 5 #define INCLUDE_RT_MPI_MPI_AMIX_H_ 6 7 #include "rk_common.h" 8 #include "rk_comm_aio.h" 9 10 #ifdef __cplusplus 11 #if __cplusplus 12 extern "C" { 13 #endif 14 #endif /* __cplusplus */ 15 16 RK_S32 RK_MPI_AMIX_ListContents(AUDIO_DEV AmixDevId); 17 RK_S32 RK_MPI_AMIX_ListControls(AUDIO_DEV AmixDevId); 18 RK_S32 RK_MPI_AMIX_SetControl(AUDIO_DEV AmixDevId, const char *control, char *values); 19 RK_S32 RK_MPI_AMIX_GetControl(AUDIO_DEV AmixDevId, const char *control, char *values); 20 21 #ifdef __cplusplus 22 #if __cplusplus 23 } 24 #endif 25 #endif /* End of #ifdef __cplusplus */ 26 27 #endif /* End of INCLUDE_RT_MPI_MPI_AMIX_H_ */ 28