we are using gst_parse_launch() to launch below pipeline :
pipeline.pipeline = gst_parse_launch (“v4l2src device=/dev/video10 num-buffers=1 ! video/x-h264, width=512, height=512, framerate=30/1, stream-format=byte-stream ! h264parse ! omxh264dec ! queue max-size-time=400000000 ! videoconvert ! avenc_png ! filesink location=/tmp/Phone_Img1.png”, &error);
Question :
- will lead to any memory issue or memory leak ?
- how to free the pipeline resources?
- will it create ant issue if we continuously launching and stopping GStreamer pipelines ?