diff options
author | Gijs Peskens <gijs@peskens.net> | 2022-01-11 16:07:45 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2022-06-09 23:57:20 +0200 |
commit | 7f3f3539e8884d541c2614819f51cc91bdf0aec4 (patch) | |
tree | 9b6726c448ce799e8ac520f1651303b011bc370f /doc/protocols.texi | |
parent | 605b4016b341a0e8035c16d1890e7ddbf891badb (diff) | |
download | ffmpeg-7f3f3539e8884d541c2614819f51cc91bdf0aec4.tar.gz |
avformat/librist: allow setting fifo size and fail on overflow
Introduce fifo_size and overrun_nonfatal params to configure fifo buffer
behavior.
Use newly introduced RIST_DATA_FLAGS_OVERFLOW flag to check for overrun
and error out in that case.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc/protocols.texi')
-rw-r--r-- | doc/protocols.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index 39b719dc50..0df38d790c 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -777,6 +777,14 @@ Set internal RIST buffer size in milliseconds for retransmission of data. Default value is 0 which means the librist default (1 sec). Maximum value is 30 seconds. +@item fifo_size +Size of the librist receiver output fifo in number of packets. This must be a +power of 2. +Defaults to 8192 (vs the librist default of 1024). + +@item overrun_nonfatal=@var{1|0} +Survive in case of librist fifo buffer overrun. Default value is 0. + @item pkt_size Set maximum packet size for sending data. 1316 by default. |