diff options
author | Samuel Pitoiset | 2012-06-17 20:24:43 +0200 |
---|---|---|
committer | Martin Storsjö | 2012-06-17 22:56:56 +0300 |
commit | 8e50c57dcb481479f2fd46f9bdb6a9776b0d9fa6 (patch) | |
tree | 2f2fc14e25bde9931fe32829352363423b655025 /configure | |
parent | 35127bf156df09ebf43f1ad7ea236653f7ba7707 (diff) |
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 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1511,6 +1511,10 @@ mmsh_protocol_select="http_protocol" mmst_protocol_deps="network" rtmp_protocol_deps="!librtmp_protocol" rtmp_protocol_select="tcp_protocol" +rtmphttp_protocol_deps="!librtmp_protocol" +rtmphttp_protocol_select="http_protocol" +rtmpt_protocol_deps="!librtmp_protocol" +rtmpt_protocol_select="rtmphttp_protocol" rtp_protocol_select="udp_protocol" sctp_protocol_deps="network netinet_sctp_h" tcp_protocol_deps="network" |