Commit 9fcc62ed authored by Michael Niedermayer's avatar Michael Niedermayer

Revert "ffserver: remove unused variable."

This reverts commit f02f745e.
parent 4272dc3e
...@@ -2127,12 +2127,13 @@ static int open_input_stream(HTTPContext *c, const char *info) ...@@ -2127,12 +2127,13 @@ 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 i, ret; int buf_size, 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)
...@@ -2144,6 +2145,7 @@ static int open_input_stream(HTTPContext *c, const char *info) ...@@ -2144,6 +2145,7 @@ 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)
......
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