support for unlimited feed size

Originally committed as revision 4697 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Alex Beregszaszi 19 years ago
parent ac031f3c6c
commit 6b0bdc754b
  1. 2
      doc/ffserver.conf
  2. 6
      ffserver.c

@ -41,7 +41,7 @@ NoDaemon
# previously recorded live stream. The request should contain: # previously recorded live stream. The request should contain:
# "http://xxxx?date=[YYYY-MM-DDT][[HH:]MM:]SS[.m...]".You must specify # "http://xxxx?date=[YYYY-MM-DDT][[HH:]MM:]SS[.m...]".You must specify
# a path where the feed is stored on disk. You also specify the # a path where the feed is stored on disk. You also specify the
# maximum size of the feed (100M bytes here). Default: # maximum size of the feed, where zero means unlimited. Default:
# File=/tmp/feed_name.ffm FileMaxSize=5M # File=/tmp/feed_name.ffm FileMaxSize=5M
File /tmp/feed1.ffm File /tmp/feed1.ffm
FileMaxSize 200K FileMaxSize 200K

@ -218,7 +218,7 @@ typedef struct FFStream {
int readonly; /* True if writing is prohibited to the file */ int readonly; /* True if writing is prohibited to the file */
int conns_served; int conns_served;
int64_t bytes_served; int64_t bytes_served;
int64_t feed_max_size; /* maximum storage size */ int64_t feed_max_size; /* maximum storage size, zero means unlimited */
int64_t feed_write_index; /* current write position in feed (it wraps round) */ int64_t feed_write_index; /* current write position in feed (it wraps round) */
int64_t feed_size; /* current size of feed */ int64_t feed_size; /* current size of feed */
struct FFStream *next_feed; struct FFStream *next_feed;
@ -2417,7 +2417,7 @@ static int http_receive_data(HTTPContext *c)
feed->feed_size = feed->feed_write_index; feed->feed_size = feed->feed_write_index;
/* handle wrap around if max file size reached */ /* handle wrap around if max file size reached */
if (feed->feed_write_index >= c->stream->feed_max_size) if (c->stream->feed_max_size && feed->feed_write_index >= c->stream->feed_max_size)
feed->feed_write_index = FFM_PACKET_SIZE; feed->feed_write_index = FFM_PACKET_SIZE;
/* write index */ /* write index */
@ -3539,7 +3539,7 @@ static void build_feed_streams(void)
feed->feed_write_index = ffm_read_write_index(fd); feed->feed_write_index = ffm_read_write_index(fd);
feed->feed_size = lseek(fd, 0, SEEK_END); feed->feed_size = lseek(fd, 0, SEEK_END);
/* ensure that we do not wrap before the end of file */ /* ensure that we do not wrap before the end of file */
if (feed->feed_max_size < feed->feed_size) if (feed->feed_max_size && feed->feed_max_size < feed->feed_size)
feed->feed_max_size = feed->feed_size; feed->feed_max_size = feed->feed_size;
close(fd); close(fd);

Loading…
Cancel
Save