diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-04-12 18:54:47 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-04-15 21:36:45 +0800 |
commit | abfeba97241e3cd485580b66b8b712d9a9779888 (patch) | |
tree | fafd0499fee35008eb3db27301bfcd75b54f43e8 /libavformat/hls.c | |
parent | 32148b5ac96b32a1086cf88db2cf18115fab314c (diff) | |
download | ffmpeg-abfeba97241e3cd485580b66b8b712d9a9779888.tar.gz |
lavf/hls: Cleanup the applehttp
Cleanup the applehttp as demuxer name, when use the command :
ffmpeg -formats, get the confused information like:
"
E hls Apple HTTP Live Streaming
D hls,applehttp Apple HTTP Live Streaming
"
we don't use applehttp as the demuxer/muxer name usually, so
cleanup the applehttp and update the documents.
After the change, get the information from "ffmpeg -formats":
"
DE hls Apple HTTP Live Streaming
"
Reviewed-by: Steven Liu <lq@onvideo.cn>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r-- | libavformat/hls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c index f4e449880b..1b61b4b5c0 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -2318,14 +2318,14 @@ static const AVOption hls_options[] = { }; static const AVClass hls_class = { - .class_name = "hls,applehttp", + .class_name = "hls demuxer", .item_name = av_default_item_name, .option = hls_options, .version = LIBAVUTIL_VERSION_INT, }; AVInputFormat ff_hls_demuxer = { - .name = "hls,applehttp", + .name = "hls", .long_name = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"), .priv_class = &hls_class, .priv_data_size = sizeof(HLSContext), |