Lines Matching refs:meta
29 * Mpp task will contain two meta data:
44 * mpp meta data of data flow
45 * reference counter will be used for these meta data type
51 /* mpp meta data of normal data type */
73 /* mpp_frame / mpp_packet meta data info key */
95 #define mpp_meta_get(meta) mpp_meta_get_with_tag(meta, MODULE_TAG, __FUNCTION__)
103 MPP_RET mpp_meta_get_with_tag(MppMeta *meta, const char *tag, const char *caller);
104 MPP_RET mpp_meta_put(MppMeta meta);
105 signed int mpp_meta_size(MppMeta meta);
107 MPP_RET mpp_meta_set_s32(MppMeta meta, MppMetaKey key, signed int val);
108 MPP_RET mpp_meta_set_s64(MppMeta meta, MppMetaKey key, RK_S64 val);
109 MPP_RET mpp_meta_set_ptr(MppMeta meta, MppMetaKey key, void *val);
110 MPP_RET mpp_meta_get_s32(MppMeta meta, MppMetaKey key, signed int *val);
111 MPP_RET mpp_meta_get_s64(MppMeta meta, MppMetaKey key, RK_S64 *val);
112 MPP_RET mpp_meta_get_ptr(MppMeta meta, MppMetaKey key, void **val);
114 MPP_RET mpp_meta_set_frame(MppMeta meta, MppMetaKey key, MppFrame frame);
115 MPP_RET mpp_meta_set_packet(MppMeta meta, MppMetaKey key, MppPacket packet);
116 MPP_RET mpp_meta_set_buffer(MppMeta meta, MppMetaKey key, MppBuffer buffer);
117 MPP_RET mpp_meta_get_frame(MppMeta meta, MppMetaKey key, MppFrame *frame);
118 MPP_RET mpp_meta_get_packet(MppMeta meta, MppMetaKey key, MppPacket *packet);
119 MPP_RET mpp_meta_get_buffer(MppMeta meta, MppMetaKey key, MppBuffer *buffer);