disconnect new feeder if feed is already being received

Originally committed as revision 8271 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-03-06 13:29:04 +00:00
parent c6e3365c81
commit d0a5513b88
1 changed files with 6 additions and 0 deletions

View File

@ -1299,6 +1299,12 @@ static int http_parse_request(HTTPContext *c)
}
}
/* If already streaming this feed, dont let start an another feeder */
if (stream->feed_opened) {
snprintf(msg, sizeof(msg), "This feed is already being received.");
goto send_error;
}
if (c->post == 0 && stream->stream_type == STREAM_TYPE_LIVE) {
current_bandwidth += stream->bandwidth;
}