diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-06-18 14:55:55 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-06-18 22:00:31 +0300 |
commit | 46743a859ceb6b6bf4f0b1cbe26e5b311ed9eef4 (patch) | |
tree | 0a8b67f97831784fd2a8347287f49d058928b554 /libavformat/version.h | |
parent | bbc8038614df85b608a11baaa2770f0d342d26fc (diff) | |
download | ffmpeg-46743a859ceb6b6bf4f0b1cbe26e5b311ed9eef4.tar.gz |
rtmp: Don't send every flv packet in a separate HTTP request in RTMPT
Add a new option 'rtmp_flush_interval' that allows specifying the
number of packets to write before sending it off as a HTTP request.
This is mostly relevant for RTMPT - for plain RTMP, it only controls
how often we check the socket for incoming packets, which shouldn't
affect the performance in any noticeable way.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index e1703319b6..ecb59b893b 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -31,7 +31,7 @@ #define LIBAVFORMAT_VERSION_MAJOR 54 #define LIBAVFORMAT_VERSION_MINOR 4 -#define LIBAVFORMAT_VERSION_MICRO 1 +#define LIBAVFORMAT_VERSION_MICRO 2 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |