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
d1c4ec7f
Commit
d1c4ec7f
authored
Feb 10, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Set correct dependencies for rtmp* protocols implemented by librtmp.
parent
3e23badd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
configure
configure
+4
-0
allformats.c
libavformat/allformats.c
+4
-6
No files found.
configure
View file @
d1c4ec7f
...
...
@@ -1504,6 +1504,10 @@ https_protocol_select="tls_protocol"
mmsh_protocol_select
=
"http_protocol"
mmst_protocol_deps
=
"network"
rtmp_protocol_select
=
"tcp_protocol"
rtmpe_protocol_deps
=
"librtmp"
rtmps_protocol_deps
=
"librtmp"
rtmpt_protocol_deps
=
"librtmp"
rtmpte_protocol_deps
=
"librtmp"
rtp_protocol_select
=
"udp_protocol"
tcp_protocol_deps
=
"network"
tls_protocol_deps_any
=
"openssl gnutls"
...
...
libavformat/allformats.c
View file @
d1c4ec7f
...
...
@@ -254,12 +254,10 @@ void av_register_all(void)
REGISTER_PROTOCOL
(
MD5
,
md5
);
REGISTER_PROTOCOL
(
PIPE
,
pipe
);
REGISTER_PROTOCOL
(
RTMP
,
rtmp
);
#if CONFIG_LIBRTMP
REGISTER_PROTOCOL
(
RTMP
,
rtmpt
);
REGISTER_PROTOCOL
(
RTMP
,
rtmpe
);
REGISTER_PROTOCOL
(
RTMP
,
rtmpte
);
REGISTER_PROTOCOL
(
RTMP
,
rtmps
);
#endif
REGISTER_PROTOCOL
(
RTMPE
,
rtmpe
);
REGISTER_PROTOCOL
(
RTMPS
,
rtmps
);
REGISTER_PROTOCOL
(
RTMPT
,
rtmpt
);
REGISTER_PROTOCOL
(
RTMPTE
,
rtmpte
);
REGISTER_PROTOCOL
(
RTP
,
rtp
);
REGISTER_PROTOCOL
(
TCP
,
tcp
);
REGISTER_PROTOCOL
(
TLS
,
tls
);
...
...
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