summaryrefslogtreecommitdiff
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2012-02-14 11:17:00 -0800
committerAlex Converse <alex.converse@gmail.com>2012-02-14 12:13:46 -0800
commitc1df37e59b516e9da47f0e9f7df748beafb2fc90 (patch)
tree75e115bdb6b165c50127512b9fe4250ecab17936 /libavformat/hls.c
parent8c62d83fe58a117249cadae743bb963d4d45450b (diff)
hls: Re-add legacy applehttp name to preserve interface compatibility.
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index d8b00204dc..82aa7647ae 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -700,7 +700,7 @@ static int hls_probe(AVProbeData *p)
}
AVInputFormat ff_hls_demuxer = {
- .name = "hls",
+ .name = "hls,applehttp",
.long_name = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming format"),
.priv_data_size = sizeof(HLSContext),
.read_probe = hls_probe,