diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2015-09-11 17:07:52 -0700 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2015-09-11 18:33:29 -0700 |
commit | 314bc20d7a4bd608a51560e1f174d9ff1d16c327 (patch) | |
tree | 4ab5136d2520d4ddcbeb054e430168b20bd1c957 /ffserver.c | |
parent | 2580395e1cd27c643bd95712c88ba7c0358c44ac (diff) | |
download | ffmpeg-314bc20d7a4bd608a51560e1f174d9ff1d16c327.tar.gz |
ffserver: remove redundant comment, clarify another one
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c index d4b25f22f9..73ede871ab 100644 --- a/ffserver.c +++ b/ffserver.c @@ -1285,7 +1285,6 @@ static void compute_real_filename(char *filename, int max_size) char *p; FFServerStream *stream; - /* compute filename by matching without the file extensions */ av_strlcpy(file1, filename, sizeof(file1)); p = strrchr(file1, '.'); if (p) @@ -1448,7 +1447,7 @@ static int http_parse_request(HTTPContext *c) if (c->post == 0 && stream->stream_type == STREAM_TYPE_LIVE) current_bandwidth += stream->bandwidth; - /* If already streaming this feed, do not let start another feeder. */ + /* If already streaming this feed, do not let another feeder start */ if (stream->feed_opened) { snprintf(msg, sizeof(msg), "This feed is already being received."); http_log("Feed '%s' already being received\n", stream->feed_filename); |