mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-03 05:22:10 +00:00
ffserver: remove unused variable.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
fb2f23c6c9
commit
f02f745e4a
@ -2128,13 +2128,12 @@ static int open_input_stream(HTTPContext *c, const char *info)
|
|||||||
char buf[128];
|
char buf[128];
|
||||||
char input_filename[1024];
|
char input_filename[1024];
|
||||||
AVFormatContext *s = NULL;
|
AVFormatContext *s = NULL;
|
||||||
int buf_size, i, ret;
|
int i, ret;
|
||||||
int64_t stream_pos;
|
int64_t stream_pos;
|
||||||
|
|
||||||
/* find file name */
|
/* find file name */
|
||||||
if (c->stream->feed) {
|
if (c->stream->feed) {
|
||||||
strcpy(input_filename, c->stream->feed->feed_filename);
|
strcpy(input_filename, c->stream->feed->feed_filename);
|
||||||
buf_size = FFM_PACKET_SIZE;
|
|
||||||
/* compute position (absolute time) */
|
/* compute position (absolute time) */
|
||||||
if (av_find_info_tag(buf, sizeof(buf), "date", info)) {
|
if (av_find_info_tag(buf, sizeof(buf), "date", info)) {
|
||||||
if ((ret = av_parse_time(&stream_pos, buf, 0)) < 0)
|
if ((ret = av_parse_time(&stream_pos, buf, 0)) < 0)
|
||||||
@ -2146,7 +2145,6 @@ static int open_input_stream(HTTPContext *c, const char *info)
|
|||||||
stream_pos = av_gettime() - c->stream->prebuffer * (int64_t)1000;
|
stream_pos = av_gettime() - c->stream->prebuffer * (int64_t)1000;
|
||||||
} else {
|
} else {
|
||||||
strcpy(input_filename, c->stream->feed_filename);
|
strcpy(input_filename, c->stream->feed_filename);
|
||||||
buf_size = 0;
|
|
||||||
/* compute position (relative time) */
|
/* compute position (relative time) */
|
||||||
if (av_find_info_tag(buf, sizeof(buf), "date", info)) {
|
if (av_find_info_tag(buf, sizeof(buf), "date", info)) {
|
||||||
if ((ret = av_parse_time(&stream_pos, buf, 1)) < 0)
|
if ((ret = av_parse_time(&stream_pos, buf, 1)) < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user