mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-01 07:22:08 +08:00

1. Add kmpp frame / buffer / packet / meta define in rk_type.h 2. Move KmppObj, KmppObjDef and KmppShmPtr to rk_type.h 3. Add kmpp_frame_test 4. Add kmpp_objdef_get_offset function in kmpp_obj.c Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: Ib4aecfc26f60521288b6e33b8c4e0af5afd3213b
16 lines
464 B
C
16 lines
464 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
|
|
#include "kmpp_obj_helper.h"
|