diff options
author | Martin Storsjö <martin@martin.st> | 2012-12-30 22:39:38 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-12-31 13:39:08 +0200 |
commit | 08225d01262b638e1c4c86679a1375e02123fd4d (patch) | |
tree | 1b540f1214e82fff7f4c30b0c87b2077529f651e /libavformat/version.h | |
parent | 33f28a3be3092f642778253d9529dd66fe2a014a (diff) | |
download | ffmpeg-08225d01262b638e1c4c86679a1375e02123fd4d.tar.gz |
rtmp: Add support for adobe authentication
This is mostly used to authenticate the client when publishing.
Tested with wowza and akamai.
Some but not all servers support resending a new connect invoke
within the same connection, so always reconnect for sending a new
connection attempt. This matches what other applications do as well.
The authentication scheme is structurally pretty similar to http
digest authentication, but uses base64 instead of hex strings.
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 349ba806ff..51309797e4 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -31,7 +31,7 @@ #define LIBAVFORMAT_VERSION_MAJOR 54 #define LIBAVFORMAT_VERSION_MINOR 20 -#define LIBAVFORMAT_VERSION_MICRO 0 +#define LIBAVFORMAT_VERSION_MICRO 1 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |