diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-06-17 20:24:43 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-06-17 22:56:56 +0300 |
commit | 8e50c57dcb481479f2fd46f9bdb6a9776b0d9fa6 (patch) | |
tree | 2f2fc14e25bde9931fe32829352363423b655025 /libavformat/version.h | |
parent | 35127bf156df09ebf43f1ad7ea236653f7ba7707 (diff) | |
download | ffmpeg-8e50c57dcb481479f2fd46f9bdb6a9776b0d9fa6.tar.gz |
RTMPT protocol support
This adds two protocols, but one of them is an internal implementation
detail just used as an abstraction layer/generalization in the code. The
RTMPT protocol implementation uses rtmphttp:// as an alternative to the
tcp:// protocol. This allows moving most of the lower level logic out
from the higher level generic rtmp code.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index b00701eefa..aae0eb1d70 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,8 +30,8 @@ #include "libavutil/avutil.h" #define LIBAVFORMAT_VERSION_MAJOR 54 -#define LIBAVFORMAT_VERSION_MINOR 3 -#define LIBAVFORMAT_VERSION_MICRO 1 +#define LIBAVFORMAT_VERSION_MINOR 4 +#define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |