Commit f4f4e12c authored by Martin Storsjö's avatar Martin Storsjö Committed by Luca Barbato

Add Apple HTTP Live Streaming protocol handler

Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 8f73c060
......@@ -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
......
......@@ -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
......
......@@ -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);
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment