Please provide complete information as applicable to your setup.
**• Hardware Platform (Jetson / GPU)Jetson
**• DeepStream Version6.3
**• JetPack Version (valid for Jetson only)5.1.2
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, bugs)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
I build a pipeline like below
uri_source_bin->nvstreammux->nvvideoconvert->jpegenc->nsmsgconv->nvmsgbroker.
And I append a src_prob for jpegenc, inside this prob I attach some event into batch_frame_meta. (Just like the example in test4).
But the problem is, nsmsgconv goes to stuck without any error, After I add some log trace,
I found it is stuck in below step.
NvDsEvent *eventList = g_new0 (NvDsEvent, g_list_length (user_meta_list));
the g_list_length (user_meta_list) cause some error. It seems user_meta_list point to some undefined address.