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
f4f4e12c
Commit
f4f4e12c
authored
Jul 22, 2010
by
Martin Storsjö
Committed by
Luca Barbato
Mar 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Apple HTTP Live Streaming protocol handler
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
8f73c060
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
361 additions
and
0 deletions
+361
-0
general.texi
doc/general.texi
+1
-0
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-0
applehttpproto.c
libavformat/applehttpproto.c
+358
-0
No files found.
doc/general.texi
View file @
f4f4e12c
...
...
@@ -707,6 +707,7 @@ performance on systems without hardware floating point support).
@multitable @columnfractions .4 .1
@item Name @tab Support
@item Apple HTTP Live Streaming @tab X
@item file @tab X
@item Gopher @tab X
@item HTTP @tab X
...
...
libavformat/Makefile
View file @
f4f4e12c
...
...
@@ -308,6 +308,7 @@ OBJS-$(CONFIG_LIBNUT_MUXER) += libnut.o riff.o
# protocols I/O
OBJS
+=
avio.o aviobuf.o
OBJS-$(CONFIG_APPLEHTTP_PROTOCOL)
+=
applehttpproto.o
OBJS-$(CONFIG_CONCAT_PROTOCOL)
+=
concat.o
OBJS-$(CONFIG_FILE_PROTOCOL)
+=
file.o
OBJS-$(CONFIG_GOPHER_PROTOCOL)
+=
gopher.o
...
...
libavformat/allformats.c
View file @
f4f4e12c
...
...
@@ -229,6 +229,7 @@ void av_register_all(void)
REGISTER_MUXDEMUX
(
LIBNUT
,
libnut
);
/* protocols */
REGISTER_PROTOCOL
(
APPLEHTTP
,
applehttp
);
REGISTER_PROTOCOL
(
CONCAT
,
concat
);
REGISTER_PROTOCOL
(
FILE
,
file
);
REGISTER_PROTOCOL
(
GOPHER
,
gopher
);
...
...
libavformat/applehttpproto.c
0 → 100644
View file @
f4f4e12c
This diff is collapsed.
Click to expand it.
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