12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #ifndef __GST_NVDS_SEI_META_H__
- #define __GST_NVDS_SEI_META_H__
- #include <gst/gst.h>
- #define GST_VIDEO_SEI_META_API_TYPE \
- (gst_video_sei_meta_api_get_type())
- #define GST_VIDEO_SEI_META_INFO (gst_video_sei_meta_get_info())
- #define GST_USER_SEI_META g_quark_from_static_string("GST.USER.SEI.META")
- typedef struct _GstVideoSEIMeta {
- GstMeta meta;
- guint sei_metadata_type;
- guint sei_metadata_size;
- void *sei_metadata_ptr;
- } GstVideoSEIMeta;
- GType gst_video_sei_meta_api_get_type(void);
- const GstMetaInfo *gst_video_sei_meta_get_info(void);
- #endif
- #ifdef __cplusplus
- }
- #endif
|