mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-09-30 15:02:07 +08:00

1. Integrate simple element and struct element to one macro. 2. Resolve different update flag mode. 3. Support hierarchy definition for future config file registration. Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: I691a99aafec3f4e9d4e883e172d2b82ace44e379
16 lines
455 B
C
16 lines
455 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_SGLN_ID MPP_SGLN_FRAME
|
|
#define KMPP_OBJ_ENTRY_TABLE KMPP_FRAME_ENTRY_TABLE
|
|
#include "kmpp_obj_helper.h"
|