mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-28 11:27:30 +08:00
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:
@ -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) {
|
if (c->post == 0 && stream->stream_type == STREAM_TYPE_LIVE) {
|
||||||
current_bandwidth += stream->bandwidth;
|
current_bandwidth += stream->bandwidth;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user