Hello, I use the Gstreamer pipeline to capture my camera from Udp
Like that:
cap("udpsrc uri=//myCameraUri auto-multicast=true ! application/x-rtp, media=video, encoding-name=H264 ! rtpjitterbuffer latency=10 ! rtph264depay ! decodebin ! videoconvert ! video/x-raw, format=BGR ! appsink sync=false ", cv::CAP_GSTREAMER);
It’s working perfectly on my PC but when I moved it to Tablet (i5-8365U, Intel UHD Graphics 620, Windows 10 Pro) it’s working only for a few seconds (thru which it gain RAM) until it starts to lag, to break after exhausting it. Using VLC it’s not accumulating.
On any different device, it’s working fine.

