Set RTSP/UDP buffer size in FFmpeg/LibAV

半腔热情 提交于 2019-12-03 20:25:11

问题


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.


回答1:


Since this commit it is enough to pass buffer_size as option and it gets forwarded to the udp protocol through the rtp protocol.

I tested and it works as intended.




回答2:


FYI, the latest ffmpeg2.8.5 already has this option. I use it to set the the buffer_size

av_dict_set(&options, "buffer_size", "655360", 0);

and I got this output:

[udp @ 0xb4945090] attempted to set receive buffer to size 655360 but it only ended up set as 327680 After some searching I run

echo 2097152 > /proc/sys/net/core/rmem_max

to fix the warning



来源:https://stackoverflow.com/questions/29075467/set-rtsp-udp-buffer-size-in-ffmpeg-libav

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!