diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-07-19 14:13:58 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-23 16:32:07 +0300 |
commit | acd554c103459ae7a5d89caa611e91bbc9bf695f (patch) | |
tree | 7e591295c7f7057bc6e8c3da4ef7d825611c868b /libavformat/allformats.c | |
parent | 0e31088b6c57e7d495deda0abaf5de5adb2c18fa (diff) | |
download | ffmpeg-acd554c103459ae7a5d89caa611e91bbc9bf695f.tar.gz |
RTMPE 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
RTMPE protocol implementation uses ffrtmpcrypt:// 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/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 34e9d610da..4e694b26fe 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -247,6 +247,7 @@ void av_register_all(void) #endif REGISTER_PROTOCOL (CONCAT, concat); REGISTER_PROTOCOL (CRYPTO, crypto); + REGISTER_PROTOCOL (FFRTMPCRYPT, ffrtmpcrypt); REGISTER_PROTOCOL (FFRTMPHTTP, ffrtmphttp); REGISTER_PROTOCOL (FILE, file); REGISTER_PROTOCOL (GOPHER, gopher); @@ -259,6 +260,7 @@ void av_register_all(void) REGISTER_PROTOCOL (MD5, md5); REGISTER_PROTOCOL (PIPE, pipe); REGISTER_PROTOCOL (RTMP, rtmp); + REGISTER_PROTOCOL (RTMPE, rtmpe); REGISTER_PROTOCOL (RTMPS, rtmps); REGISTER_PROTOCOL (RTMPT, rtmpt); REGISTER_PROTOCOL (RTMPTS, rtmpts); |