diff options
author | Tristan Matthews <tmatth@videolan.org> | 2019-04-11 00:07:15 -0400 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2019-04-15 22:44:19 +0300 |
commit | 1e56173515826aa4d680d3b216d80a3879ed1c68 (patch) | |
tree | 9d4386ed5c0dd57fbbbcc2c1fc0fb0a5ab6a6907 /libavformat/rtsp.h | |
parent | 0676de935b1e81bc5b5698fef3e7d48ff2ea77ff (diff) | |
download | ffmpeg-1e56173515826aa4d680d3b216d80a3879ed1c68.tar.gz |
rtsp: add pkt_size option
This allows users to specify an upper limit on the size of outgoing packets
when publishing via RTSP.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 9dfbc5367f..c38b90432d 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -399,6 +399,7 @@ typedef struct RTSPState { char default_lang[4]; int buffer_size; + int pkt_size; const URLProtocol **protocols; } RTSPState; |