mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-09-26 21:15:53 +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: I80ef1b56d588003d712b94d8db58540de36c9245
26 lines
463 B
C
26 lines
463 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__ */
|