Note: I'm aware ffmpeg and libav are different libraries. This is a problem common to both.
Disclaimer: Duplicate of SO question marked as answered but actually didn't give a proper solution.
Insufficient UDP buffer size causes broken streams for several high resolution video streams. In LibAV/FFMPEG it's possible to set the udp buffer size for udp urls (udp://...) by appending some options (buffer_size) to it.
However, for RTSP urls this is not supported.
These are the only solutions I've found:
- Rebuilding ffmpeg/libav changing the UDP_MAX_PKT_SIZE in the udp.c source file.
- Using a nasty hack to find and modify the required value, by casting some private structs.
- Using a different decoding library (proposed solution to aforementioned related SO question).
None of these is actually a solution. From what I found it should be possible to use the API's AVOptions
to find and set this value. Or else, the AVDictionary.
It's very difficult to find how to set these throughout the documentation of either libav or ffmpeg.
Update:
The following patches have been submited to Libav tackling this topic, thanks to Libav developer @lu_zero :
- Add a buffer_size option
- Map the urloptions to AVOptions
Which should offer a hint on how to implement those, still these are not yet available through the official stable API.