- deepstream-app version 6.1.0
- DeepStreamSDK 6.1.0
- CUDA Driver Version: 11.4
- CUDA Runtime Version: 11.0
- TensorRT Version: 8.2
- cuDNN Version: 8.4
- libNVWarp360 Version: 2.0.1d3
- Device: A6000
1,I built the pipeline and the delay in loading rtsp is very noticeable, why is this?
2,Here is the pipeline I built, is the pipeline too long and needs to be optimized? If so, how should I optimize it?
3,Or is there some other reason?
4,In the location of nvosd in the pipeline, I added a callback function for loading eventMsgMeta data.
osd_sink_pad = gst_element_get_static_pad (nvosd, "sink");
if (!osd_sink_pad)
g_print ("Unable to get sink pad\n");
else {
if (msg2p_meta == 0) //generate payload using eventMsgMeta
gst_pad_add_probe (osd_sink_pad, GST_PAD_PROBE_TYPE_BUFFER,
osd_sink_pad_buffer_probe, NULL, NULL);
}
gst_object_unref (osd_sink_pad);