Lines Matching refs:meta
97 #define mpp_meta_get(meta) mpp_meta_get_with_tag(meta, MODULE_TAG, __FUNCTION__) argument
105 MPP_RET mpp_meta_get_with_tag(MppMeta *meta, const char *tag, const char *caller);
106 MPP_RET mpp_meta_put(MppMeta meta);
107 RK_S32 mpp_meta_size(MppMeta meta);
109 MPP_RET mpp_meta_set_s32(MppMeta meta, MppMetaKey key, RK_S32 val);
110 MPP_RET mpp_meta_set_s64(MppMeta meta, MppMetaKey key, RK_S64 val);
111 MPP_RET mpp_meta_set_ptr(MppMeta meta, MppMetaKey key, void *val);
112 MPP_RET mpp_meta_get_s32(MppMeta meta, MppMetaKey key, RK_S32 *val);
113 MPP_RET mpp_meta_get_s64(MppMeta meta, MppMetaKey key, RK_S64 *val);
114 MPP_RET mpp_meta_get_ptr(MppMeta meta, MppMetaKey key, void **val);
116 MPP_RET mpp_meta_set_frame (MppMeta meta, MppMetaKey key, MppFrame frame);
117 MPP_RET mpp_meta_set_packet(MppMeta meta, MppMetaKey key, MppPacket packet);
118 MPP_RET mpp_meta_set_buffer(MppMeta meta, MppMetaKey key, MppBuffer buffer);
119 MPP_RET mpp_meta_get_frame (MppMeta meta, MppMetaKey key, MppFrame *frame);
120 MPP_RET mpp_meta_get_packet(MppMeta meta, MppMetaKey key, MppPacket *packet);
121 MPP_RET mpp_meta_get_buffer(MppMeta meta, MppMetaKey key, MppBuffer *buffer);