mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-05 17:16:50 +08:00

1. Sync kmpp_obj_func.h and kmpp_obj_helper.h from kernel. 2. Add more kmpp_obj function from kernel. 3. Add KmppFrame module. 4. Fix kmpp_obj_check failure. Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: Ib333370eb36c7b63ef50d3e52cf7fd753c9e5af1
20 lines
646 B
C
20 lines
646 B
C
/* SPDX-License-Identifier: Apache-2.0 OR MIT */
|
|
/*
|
|
* Copyright (c) 2025 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#define MODULE_TAG "kmpp_frame"
|
|
|
|
#include "kmpp_frame_impl.h"
|
|
|
|
#define KMPP_OBJ_NAME kmpp_frame
|
|
#define KMPP_OBJ_INTF_TYPE KmppFrame
|
|
#define KMPP_OBJ_IMPL_TYPE KmppFrameImpl
|
|
#define KMPP_OBJ_ENTRY_TABLE KMPP_FRAME_ENTRY_TABLE
|
|
#define KMPP_OBJ_STRUCT_TABLE KMPP_FRAME_STRUCT_TABLE
|
|
#define KMPP_OBJ_FUNC_INIT kmpp_frame_impl_init
|
|
#define KMPP_OBJ_FUNC_DEINIT kmpp_frame_impl_deinit
|
|
#define KMPP_OBJ_FUNC_EXPORT_ENABLE
|
|
#define KMPP_OBJ_SHARE_ENABLE
|
|
#include "kmpp_obj_helper.h"
|