Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
6aedabc9
Commit
6aedabc9
authored
Jul 17, 2012
by
Samuel Pitoiset
Committed by
Martin Storsjö
Jul 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RTMPS protocol support
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
5417efbb
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
38 additions
and
2 deletions
+38
-2
Changelog
Changelog
+1
-0
configure
configure
+2
-0
general.texi
doc/general.texi
+1
-1
protocols.texi
doc/protocols.texi
+7
-0
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-0
rtmp.h
libavformat/rtmp.h
+1
-0
rtmpproto.c
libavformat/rtmpproto.c
+23
-0
version.h
libavformat/version.h
+1
-1
No files found.
Changelog
View file @
6aedabc9
...
...
@@ -35,6 +35,7 @@ version <next>:
- TechSmith Screen Codec 2 decoder
- AAC encoding via libfdk-aac
- Microsoft Expression Encoder Screen decoder
- RTMPS protocol support
version 0.8:
...
...
configure
View file @
6aedabc9
...
...
@@ -1543,6 +1543,8 @@ mmsh_protocol_select="http_protocol"
mmst_protocol_deps
=
"network"
rtmp_protocol_deps
=
"!librtmp_protocol"
rtmp_protocol_select
=
"tcp_protocol"
rtmps_protocol_deps
=
"!librtmp_protocol"
rtmps_protocol_select
=
"tls_protocol"
rtmpt_protocol_deps
=
"!librtmp_protocol"
rtmpt_protocol_select
=
"ffrtmphttp_protocol"
rtp_protocol_select
=
"udp_protocol"
...
...
doc/general.texi
View file @
6aedabc9
...
...
@@ -844,7 +844,7 @@ performance on systems without hardware floating point support).
@item pipe @tab X
@item RTMP @tab X
@item RTMPE @tab E
@item RTMPS @tab
E
@item RTMPS @tab
X
@item RTMPT @tab X
@item RTMPTE @tab E
@item RTP @tab X
...
...
doc/protocols.texi
View file @
6aedabc9
...
...
@@ -247,6 +247,13 @@ For example to read with @command{avplay} a multimedia resource named
avplay rtmp://myserver/vod/sample
@end example
@section rtmps
Real-Time Messaging Protocol over a secure SSL connection.
The Real-Time Messaging Protocol (RTMPS) is used for streaming
multimedia content across an encrypted connection.
@section rtmpt
Real-Time Messaging Protocol tunneled through HTTP.
...
...
libavformat/Makefile
View file @
6aedabc9
...
...
@@ -352,6 +352,7 @@ OBJS-$(CONFIG_MMST_PROTOCOL) += mmst.o mms.o asf.o
OBJS-$(CONFIG_MD5_PROTOCOL)
+=
md5proto.o
OBJS-$(CONFIG_PIPE_PROTOCOL)
+=
file.o
OBJS-$(CONFIG_RTMP_PROTOCOL)
+=
rtmpproto.o
rtmppkt.o
OBJS-$(CONFIG_RTMPS_PROTOCOL)
+=
rtmpproto.o
rtmppkt.o
OBJS-$(CONFIG_RTMPT_PROTOCOL)
+=
rtmpproto.o
rtmppkt.o
OBJS-$(CONFIG_RTP_PROTOCOL)
+=
rtpproto.o
OBJS-$(CONFIG_SCTP_PROTOCOL)
+=
sctp.o
...
...
libavformat/allformats.c
View file @
6aedabc9
...
...
@@ -258,6 +258,7 @@ void av_register_all(void)
REGISTER_PROTOCOL
(
MD5
,
md5
);
REGISTER_PROTOCOL
(
PIPE
,
pipe
);
REGISTER_PROTOCOL
(
RTMP
,
rtmp
);
REGISTER_PROTOCOL
(
RTMPS
,
rtmps
);
REGISTER_PROTOCOL
(
RTMPT
,
rtmpt
);
REGISTER_PROTOCOL
(
RTP
,
rtp
);
REGISTER_PROTOCOL
(
SCTP
,
sctp
);
...
...
libavformat/rtmp.h
View file @
6aedabc9
...
...
@@ -25,6 +25,7 @@
#include "avformat.h"
#define RTMP_DEFAULT_PORT 1935
#define RTMPS_DEFAULT_PORT 443
#define RTMP_HANDSHAKE_PACKET_SIZE 1536
...
...
libavformat/rtmpproto.c
View file @
6aedabc9
...
...
@@ -1121,6 +1121,11 @@ static int rtmp_open(URLContext *s, const char *uri, int flags)
if
(
!
strcmp
(
proto
,
"rtmpt"
))
{
/* open the http tunneling connection */
ff_url_join
(
buf
,
sizeof
(
buf
),
"ffrtmphttp"
,
NULL
,
hostname
,
port
,
NULL
);
}
else
if
(
!
strcmp
(
proto
,
"rtmps"
))
{
/* open the tls connection */
if
(
port
<
0
)
port
=
RTMPS_DEFAULT_PORT
;
ff_url_join
(
buf
,
sizeof
(
buf
),
"tls"
,
NULL
,
hostname
,
port
,
NULL
);
}
else
{
/* open the tcp connection */
if
(
port
<
0
)
...
...
@@ -1444,6 +1449,24 @@ URLProtocol ff_rtmp_protocol = {
.
priv_data_class
=
&
rtmp_class
,
};
static
const
AVClass
rtmps_class
=
{
.
class_name
=
"rtmps"
,
.
item_name
=
av_default_item_name
,
.
option
=
rtmp_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
URLProtocol
ff_rtmps_protocol
=
{
.
name
=
"rtmps"
,
.
url_open
=
rtmp_open
,
.
url_read
=
rtmp_read
,
.
url_write
=
rtmp_write
,
.
url_close
=
rtmp_close
,
.
priv_data_size
=
sizeof
(
RTMPContext
),
.
flags
=
URL_PROTOCOL_FLAG_NETWORK
,
.
priv_data_class
=
&
rtmps_class
,
};
static
const
AVClass
rtmpt_class
=
{
.
class_name
=
"rtmpt"
,
.
item_name
=
av_default_item_name
,
...
...
libavformat/version.h
View file @
6aedabc9
...
...
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR
7
#define LIBAVFORMAT_VERSION_MINOR
8
#define LIBAVFORMAT_VERSION_MICRO 0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment