25 lines
451 B
C
25 lines
451 B
C
/* SPDX-License-Identifier: Apache-2.0 OR MIT */
|
|
/*
|
|
* Copyright (c) 2021 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef MPP_SERVER_H
|
|
#define MPP_SERVER_H
|
|
|
|
#include "mpp_device.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
rk_s32 mpp_server_attach(MppDev ctx);
|
|
rk_s32 mpp_server_detach(MppDev ctx);
|
|
|
|
rk_s32 mpp_server_send_task(MppDev ctx);
|
|
rk_s32 mpp_server_wait_task(MppDev ctx, RK_S64 timeout);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MPP_SERVER_H */
|