On Mon, 16 Jul 2012, Samuel Pitoiset wrote:
diff --git a/doc/protocols.texi b/doc/protocols.texi index 943287a..8ecd6d9 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -247,6 +247,14 @@ For example to read with @command{avplay} a multimedia resource named avplay rtmp://myserver/vod/sample @end example+@section rtmpts + +Real-Time Messaging Protocol tunneled through HTTPS. + +The Real-Time Messaging Protocol tunneled through HTTP (RTMPTS) is used
HTTPS
+for streaming multimedia content within HTTPS requests to traverse +firewalls. + @section rtmpt Real-Time Messaging Protocol tunneled through HTTP. diff --git a/libavformat/rtmphttp.c b/libavformat/rtmphttp.c index febe4b3..6ee7707 100644 --- a/libavformat/rtmphttp.c +++ b/libavformat/rtmphttp.c @@ -32,6 +32,7 @@ #include "http.h" #define RTMPT_DEFAULT_PORT 80 +#define RTMPS_DEFAULT_PORT 443
I guess this should be RTMPTS instead (although the default for RTMPS would be 443 as well).
Other than that, this looks good, you don't need to send a new patch for these changes. I can apply this, but I'd actually want to have RTMPS first before applying this. RTMPS will be a really small patch.
// Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
