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
23be4eeb
Commit
23be4eeb
authored
Mar 22, 2018
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Group external library protocols separately
parent
78149d66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
configure
configure
+9
-7
Makefile
libavformat/Makefile
+3
-3
No files found.
configure
View file @
23be4eeb
...
...
@@ -2519,15 +2519,8 @@ httpproxy_protocol_suggest="zlib"
https_protocol_select
=
"tls_protocol"
https_protocol_suggest
=
"zlib"
icecast_protocol_select
=
"http_protocol"
librtmp_protocol_deps
=
"librtmp"
librtmpe_protocol_deps
=
"librtmp"
librtmps_protocol_deps
=
"librtmp"
librtmpt_protocol_deps
=
"librtmp"
librtmpte_protocol_deps
=
"librtmp"
mmsh_protocol_select
=
"http_protocol"
mmst_protocol_select
=
"network"
libsrt_protocol_deps
=
"libsrt"
libsrt_protocol_select
=
"network"
rtmp_protocol_conflict
=
"librtmp_protocol"
rtmp_protocol_select
=
"tcp_protocol"
rtmp_protocol_suggest
=
"zlib"
...
...
@@ -2553,6 +2546,15 @@ udp_protocol_select="network"
unix_protocol_deps
=
"sys_un_h"
unix_protocol_select
=
"network"
# external library protocols
librtmp_protocol_deps
=
"librtmp"
librtmpe_protocol_deps
=
"librtmp"
librtmps_protocol_deps
=
"librtmp"
librtmpt_protocol_deps
=
"librtmp"
librtmpte_protocol_deps
=
"librtmp"
libsrt_protocol_deps
=
"libsrt"
libsrt_protocol_select
=
"network"
# filters
asyncts_filter_deps
=
"avresample"
blackframe_filter_deps
=
"gpl"
...
...
libavformat/Makefile
View file @
23be4eeb
...
...
@@ -377,9 +377,8 @@ OBJS-$(CONFIG_YOP_DEMUXER) += yop.o
OBJS-$(CONFIG_YUV4MPEGPIPE_DEMUXER)
+=
yuv4mpegdec.o
OBJS-$(CONFIG_YUV4MPEGPIPE_MUXER)
+=
yuv4mpegenc.o
# external librar
ie
s
# external librar
y muxers/demuxer
s
OBJS-$(CONFIG_AVISYNTH_DEMUXER)
+=
avisynth.o
OBJS-$(CONFIG_LIBRTMP)
+=
librtmp.o
# protocols I/O
OBJS-$(CONFIG_APPLEHTTP_PROTOCOL)
+=
hlsproto.o
...
...
@@ -414,7 +413,8 @@ OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o $(TLS-OBJS-yes)
OBJS-$(CONFIG_UDP_PROTOCOL)
+=
udp.o
OBJS-$(CONFIG_UNIX_PROTOCOL)
+=
unix.o
# external libraries
# external library protocols
OBJS-$(CONFIG_LIBRTMP)
+=
librtmp.o
OBJS-$(CONFIG_LIBSRT_PROTOCOL)
+=
libsrt.o
SKIPHEADERS-$(CONFIG_FFRTMPCRYPT_PROTOCOL)
+=
rtmpdh.h
...
...
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