mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
Replace remaining uses of parse_date with av_parse_time.
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
committed by
Mans Rullgard
parent
f6c7375a17
commit
9fcae9735e
10
ffserver.c
10
ffserver.c
@@ -2136,9 +2136,8 @@ static int open_input_stream(HTTPContext *c, const char *info)
|
||||
buf_size = FFM_PACKET_SIZE;
|
||||
/* compute position (absolute time) */
|
||||
if (find_info_tag(buf, sizeof(buf), "date", info)) {
|
||||
stream_pos = parse_date(buf, 0);
|
||||
if (stream_pos == INT64_MIN)
|
||||
return -1;
|
||||
if ((ret = av_parse_time(&stream_pos, buf, 0)) < 0)
|
||||
return ret;
|
||||
} else if (find_info_tag(buf, sizeof(buf), "buffer", info)) {
|
||||
int prebuffer = strtol(buf, 0, 10);
|
||||
stream_pos = av_gettime() - prebuffer * (int64_t)1000000;
|
||||
@@ -2149,9 +2148,8 @@ static int open_input_stream(HTTPContext *c, const char *info)
|
||||
buf_size = 0;
|
||||
/* compute position (relative time) */
|
||||
if (find_info_tag(buf, sizeof(buf), "date", info)) {
|
||||
stream_pos = parse_date(buf, 1);
|
||||
if (stream_pos == INT64_MIN)
|
||||
return -1;
|
||||
if ((ret = av_parse_time(&stream_pos, buf, 1)) < 0)
|
||||
return ret;
|
||||
} else
|
||||
stream_pos = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user