提交 7e24aa0c 编写于 作者: B Baptiste Coudurier

adjust write index if not set

Originally committed as revision 18097 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 a9c6fc7b
......@@ -2419,6 +2419,8 @@ static int http_start_receive_data(HTTPContext *c)
http_log("Error reading write index from feed file: %s\n", strerror(errno));
return -1;
}
c->stream->feed_write_index = FFMAX(ffm_read_write_index(fd), FFM_PACKET_SIZE);
c->stream->feed_size = lseek(fd, 0, SEEK_END);
lseek(fd, 0, SEEK_SET);
......@@ -3560,7 +3562,7 @@ static void build_feed_streams(void)
exit(1);
}
feed->feed_write_index = ffm_read_write_index(fd);
feed->feed_write_index = FFMAX(ffm_read_write_index(fd), FFM_PACKET_SIZE);
feed->feed_size = lseek(fd, 0, SEEK_END);
/* ensure that we do not wrap before the end of file */
if (feed->feed_max_size && feed->feed_max_size < feed->feed_size)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册