On Tue, 14 Feb 2012, Alex Converse wrote:
--- libavformat/hls.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)diff --git a/libavformat/hls.c b/libavformat/hls.c index d8b0020..82aa764 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, -- 1.7.7.3
Thanks for the fix - didn't remember one could add multiple names in that field. This way, it's essentially free to keep around and there's not even a need to drop it at some later point.
// Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
