gst中, srcpad buffer探针附加字符串, 下一个插件srcpad buffer探针获取, 使用gst_buffer_add_custom_meta和gst_buffer_get_custom_meta函数, c实现
时间: 2023-05-11 10:01:50 浏览: 193
可以使用以下代码实现:
```
static GstPadProbeReturn src_pad_buffer_probe(GstPad *pad, GstPadProbeInfo *info, gpointer user_data) {
GstBuffer *buffer = GST_PAD_PROBE_INFO_BUFFER(info);
GstMeta *meta;
GstCustomMeta *custom_meta;
gchar *data = "附加的字符串";
meta = gst_buffer_get_custom_meta(buffer, gst_custom_meta_api_get_type());
if (!meta) {
custom_meta = gst_buffer_add_custom_meta(buffer, gst_custom_meta_api_get_type(), NULL);
} else {
custom_meta = (GstCustomMeta *) meta;
}
custom_meta->data = data;
custom_meta->size = strlen(data);
return GST_PAD_PROBE_OK;
}
static GstPadProbeReturn next_plugin_src_pad_buffer_probe(GstPad *pad, GstPadProbeInfo *info, gpointer user_data) {
GstBuffer *buffer = GST_PAD_PROBE_INFO_BUFFER(info);
GstMeta *meta;
GstCustomMeta *custom_meta;
meta = gst_buffer_get_custom_meta(buffer, gst_custom_meta_api_get_type());
if (meta) {
custom_meta = (GstCustomMeta *) meta;
g_print("附加的字符串是:%s\n", custom_meta->data);
}
return GST_PAD_PROBE_OK;
}
// 在pipeline中添加probe
GstPad *src_pad = gst_element_get_static_pad(src_element, "src");
GstPad *next_plugin_src_pad = gst_element_get_static_pad(next_plugin_element, "src");
gst_pad_add_probe(src_pad, GST_PAD_PROBE_TYPE_BUFFER, src_pad_buffer_probe, NULL, NULL);
gst_pad_add_probe(next_plugin_src_pad, GST_PAD_PROBE_TYPE_BUFFER, next_plugin_src_pad_buffer_probe, NULL, NULL);
```
这段代码实现了在 `src_element` 的 `src` pad 上添加一个 buffer 探针,在 buffer 中附加一个字符串,并在 `next_plugin_element` 的 `src` pad 上添加一个 buffer 探针,获取附加的字符串并打印出来。其中,`gst_custom_meta_api_get_type()` 是自定义 meta 的类型,需要先注册。
阅读全文