Commit 52623bc2 authored by Jun Zhao's avatar Jun Zhao Committed by Jun Zhao

lavf/hlsproto: use ff_get_chomp_line

Signed-off-by: 's avatarJun Zhao <mypopydev@gmail.com>
parent f1ccb4db
......@@ -69,14 +69,6 @@ typedef struct HLSContext {
int64_t last_load_time;
} HLSContext;
static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
{
int len = ff_get_line(s, buf, maxlen);
while (len > 0 && av_isspace(buf[len - 1]))
buf[--len] = '\0';
return len;
}
static void free_segment_list(HLSContext *s)
{
int i;
......@@ -122,7 +114,7 @@ static int parse_playlist(URLContext *h, const char *url)
h->protocol_whitelist, h->protocol_blacklist)) < 0)
return ret;
read_chomp_line(in, line, sizeof(line));
ff_get_chomp_line(in, line, sizeof(line));
if (strcmp(line, "#EXTM3U")) {
ret = AVERROR_INVALIDDATA;
goto fail;
......@@ -131,7 +123,7 @@ static int parse_playlist(URLContext *h, const char *url)
free_segment_list(s);
s->finished = 0;
while (!avio_feof(in)) {
read_chomp_line(in, line, sizeof(line));
ff_get_chomp_line(in, line, sizeof(line));
if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
struct variant_info info = {{0}};
is_variant = 1;
......
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