Set RTSP/UDP buffer size in FFmpeg/LibAV

20,667

Solution 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.

Solution 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

Share:
20,667
Sergio Basurco
Author by

Sergio Basurco

Developing shiny C++ 3d related stuff.

Updated on December 09, 2020

Comments

  • Sergio Basurco
    Sergio Basurco over 3 years

    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 :

    Which should offer a hint on how to implement those, still these are not yet available through the official stable API.

  • user1315621
    user1315621 about 3 years
    What about TCP?