2014-10-19 13:39:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2014-10-19 19:29:40 +00:00
|
|
|
#include <float.h>
|
2014-10-19 13:39:06 +00:00
|
|
|
#include "libavutil/opt.h"
|
|
|
|
#include "libavutil/parseutils.h"
|
|
|
|
#include "libavutil/avstring.h"
|
|
|
|
#include "libavutil/pixdesc.h"
|
|
|
|
#include "libavutil/avassert.h"
|
|
|
|
|
|
|
|
// FIXME those are internal headers, ffserver _really_ shouldn't use them
|
|
|
|
#include "libavformat/ffm.h"
|
|
|
|
|
|
|
|
#include "cmdutils.h"
|
|
|
|
#include "ffserver_config.h"
|
|
|
|
|
2014-11-19 23:28:03 +00:00
|
|
|
#define MAX_CHILD_ARGS 64
|
|
|
|
|
2014-11-13 17:45:17 +00:00
|
|
|
static int ffserver_save_avoption(const char *opt, const char *arg, int type,
|
2014-11-17 01:23:22 +00:00
|
|
|
FFServerConfig *config);
|
2014-12-06 05:21:56 +00:00
|
|
|
static void vreport_config_error(const char *filename, int line_num,
|
|
|
|
int log_level, int *errors, const char *fmt,
|
|
|
|
va_list vl);
|
|
|
|
static void report_config_error(const char *filename, int line_num,
|
|
|
|
int log_level, int *errors, const char *fmt,
|
|
|
|
...);
|
2014-11-10 22:21:34 +00:00
|
|
|
|
2014-11-26 18:41:24 +00:00
|
|
|
#define ERROR(...) report_config_error(config->filename, config->line_num,\
|
|
|
|
AV_LOG_ERROR, &config->errors, __VA_ARGS__)
|
|
|
|
#define WARNING(...) report_config_error(config->filename, config->line_num,\
|
|
|
|
AV_LOG_WARNING, &config->warnings, __VA_ARGS__)
|
|
|
|
|
2014-10-19 13:39:06 +00:00
|
|
|
/* FIXME: make ffserver work with IPv6 */
|
|
|
|
/* resolve host with also IP address parsing */
|
|
|
|
static int resolve_host(struct in_addr *sin_addr, const char *hostname)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!ff_inet_aton(hostname, sin_addr)) {
|
|
|
|
#if HAVE_GETADDRINFO
|
|
|
|
struct addrinfo *ai, *cur;
|
|
|
|
struct addrinfo hints = { 0 };
|
|
|
|
hints.ai_family = AF_INET;
|
|
|
|
if (getaddrinfo(hostname, NULL, &hints, &ai))
|
|
|
|
return -1;
|
|
|
|
/* getaddrinfo returns a linked list of addrinfo structs.
|
|
|
|
* Even if we set ai_family = AF_INET above, make sure
|
|
|
|
* that the returned one actually is of the correct type. */
|
|
|
|
for (cur = ai; cur; cur = cur->ai_next) {
|
|
|
|
if (cur->ai_family == AF_INET) {
|
|
|
|
*sin_addr = ((struct sockaddr_in *)cur->ai_addr)->sin_addr;
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
return -1;
|
|
|
|
#else
|
|
|
|
struct hostent *hp;
|
|
|
|
hp = gethostbyname(hostname);
|
|
|
|
if (!hp)
|
|
|
|
return -1;
|
|
|
|
memcpy(sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ffserver_get_arg(char *buf, int buf_size, const char **pp)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
char *q;
|
2014-12-06 05:14:20 +00:00
|
|
|
int quote = 0;
|
2014-10-19 13:39:06 +00:00
|
|
|
|
|
|
|
p = *pp;
|
|
|
|
q = buf;
|
2014-12-06 05:14:20 +00:00
|
|
|
|
|
|
|
while (av_isspace(*p)) p++;
|
|
|
|
|
2014-10-19 13:39:06 +00:00
|
|
|
if (*p == '\"' || *p == '\'')
|
|
|
|
quote = *p++;
|
2014-12-06 05:14:20 +00:00
|
|
|
|
|
|
|
while (*p != '\0') {
|
|
|
|
if (quote && *p == quote || !quote && av_isspace(*p))
|
2014-10-19 13:39:06 +00:00
|
|
|
break;
|
|
|
|
if ((q - buf) < buf_size - 1)
|
|
|
|
*q++ = *p;
|
|
|
|
p++;
|
|
|
|
}
|
2014-12-06 05:14:20 +00:00
|
|
|
|
2014-10-19 13:39:06 +00:00
|
|
|
*q = '\0';
|
|
|
|
if (quote && *p == quote)
|
|
|
|
p++;
|
|
|
|
*pp = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ffserver_parse_acl_row(FFServerStream *stream, FFServerStream* feed,
|
|
|
|
FFServerIPAddressACL *ext_acl,
|
|
|
|
const char *p, const char *filename, int line_num)
|
|
|
|
{
|
|
|
|
char arg[1024];
|
|
|
|
FFServerIPAddressACL acl;
|
|
|
|
int errors = 0;
|
|
|
|
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), &p);
|
|
|
|
if (av_strcasecmp(arg, "allow") == 0)
|
|
|
|
acl.action = IP_ALLOW;
|
|
|
|
else if (av_strcasecmp(arg, "deny") == 0)
|
|
|
|
acl.action = IP_DENY;
|
|
|
|
else {
|
2014-12-08 17:12:36 +00:00
|
|
|
fprintf(stderr, "%s:%d: ACL action '%s' should be ALLOW or DENY.\n",
|
2014-10-19 13:39:06 +00:00
|
|
|
filename, line_num, arg);
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), &p);
|
|
|
|
|
2014-11-03 00:56:04 +00:00
|
|
|
if (resolve_host(&acl.first, arg)) {
|
2014-12-08 20:25:35 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"%s:%d: ACL refers to invalid host or IP address '%s'\n",
|
2014-10-19 13:39:06 +00:00
|
|
|
filename, line_num, arg);
|
|
|
|
errors++;
|
|
|
|
} else
|
|
|
|
acl.last = acl.first;
|
|
|
|
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), &p);
|
|
|
|
|
|
|
|
if (arg[0]) {
|
2014-11-03 00:56:04 +00:00
|
|
|
if (resolve_host(&acl.last, arg)) {
|
2014-11-03 00:54:23 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"%s:%d: ACL refers to invalid host or IP address '%s'\n",
|
2014-10-19 13:39:06 +00:00
|
|
|
filename, line_num, arg);
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!errors) {
|
|
|
|
FFServerIPAddressACL *nacl = av_mallocz(sizeof(*nacl));
|
|
|
|
FFServerIPAddressACL **naclp = 0;
|
|
|
|
|
|
|
|
acl.next = 0;
|
|
|
|
*nacl = acl;
|
|
|
|
|
|
|
|
if (stream)
|
|
|
|
naclp = &stream->acl;
|
|
|
|
else if (feed)
|
|
|
|
naclp = &feed->acl;
|
|
|
|
else if (ext_acl)
|
|
|
|
naclp = &ext_acl;
|
|
|
|
else {
|
2014-12-08 17:12:36 +00:00
|
|
|
fprintf(stderr, "%s:%d: ACL found not in <Stream> or <Feed>\n",
|
2014-10-19 13:39:06 +00:00
|
|
|
filename, line_num);
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (naclp) {
|
|
|
|
while (*naclp)
|
|
|
|
naclp = &(*naclp)->next;
|
|
|
|
|
|
|
|
*naclp = nacl;
|
|
|
|
} else
|
|
|
|
av_free(nacl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add a codec and set the default parameters */
|
2014-11-16 00:33:19 +00:00
|
|
|
static void add_codec(FFServerStream *stream, AVCodecContext *av,
|
|
|
|
FFServerConfig *config)
|
2014-10-19 13:39:06 +00:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2014-11-16 20:51:42 +00:00
|
|
|
AVDictionary **opts, *recommended = NULL;
|
|
|
|
char *enc_config;
|
2014-10-19 13:39:06 +00:00
|
|
|
|
|
|
|
if(stream->nb_streams >= FF_ARRAY_ELEMS(stream->streams))
|
|
|
|
return;
|
|
|
|
|
2014-11-16 00:33:19 +00:00
|
|
|
opts = av->codec_type == AVMEDIA_TYPE_AUDIO ?
|
|
|
|
&config->audio_opts : &config->video_opts;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_copy(&recommended, *opts, 0);
|
2014-11-16 00:33:19 +00:00
|
|
|
av_opt_set_dict2(av->priv_data, opts, AV_OPT_SEARCH_CHILDREN);
|
|
|
|
av_opt_set_dict2(av, opts, AV_OPT_SEARCH_CHILDREN);
|
2014-12-08 21:32:22 +00:00
|
|
|
|
2014-11-16 00:33:19 +00:00
|
|
|
if (av_dict_count(*opts))
|
|
|
|
av_log(NULL, AV_LOG_WARNING,
|
2014-12-08 20:25:35 +00:00
|
|
|
"Something is wrong, %d options are not set!\n",
|
|
|
|
av_dict_count(*opts));
|
2014-11-16 00:33:19 +00:00
|
|
|
|
2014-12-08 21:32:22 +00:00
|
|
|
if (!config->stream_use_defaults) {
|
|
|
|
switch(av->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
if (av->bit_rate == 0)
|
|
|
|
report_config_error(config->filename, config->line_num,
|
|
|
|
AV_LOG_ERROR, &config->errors,
|
|
|
|
"audio bit rate is not set\n");
|
|
|
|
if (av->sample_rate == 0)
|
|
|
|
report_config_error(config->filename, config->line_num,
|
|
|
|
AV_LOG_ERROR, &config->errors,
|
|
|
|
"audio sample rate is not set\n");
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
if (av->width == 0 || av->height == 0)
|
|
|
|
report_config_error(config->filename, config->line_num,
|
|
|
|
AV_LOG_ERROR, &config->errors,
|
|
|
|
"video size is not set\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_assert0(0);
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stream_use_defaults = true */
|
|
|
|
|
2014-10-19 13:39:06 +00:00
|
|
|
/* compute default parameters */
|
|
|
|
switch(av->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "ab", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->bit_rate = 64000;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "ab", av->bit_rate, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for audio bit rate = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->bit_rate);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "ar", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->sample_rate = 22050;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "ar", av->sample_rate, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for audio sample rate = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->sample_rate);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "ac", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->channels = 1;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "ac", av->channels, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for audio channel count = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->channels);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-10-19 13:39:06 +00:00
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "b", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->bit_rate = 64000;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "b", av->bit_rate, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video bit rate = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->bit_rate);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "time_base", NULL, 0)){
|
2014-10-19 13:39:06 +00:00
|
|
|
av->time_base.den = 5;
|
|
|
|
av->time_base.num = 1;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set(&recommended, "time_base", "1/5", 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video frame rate = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->time_base.den);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "video_size", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->width = 160;
|
|
|
|
av->height = 128;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set(&recommended, "video_size", "160x128", 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video size = %dx%d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->width, av->height);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
/* Bitrate tolerance is less for streaming */
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "bt", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->bit_rate_tolerance = FFMAX(av->bit_rate / 4,
|
|
|
|
(int64_t)av->bit_rate*av->time_base.num/av->time_base.den);
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "bt", av->bit_rate_tolerance, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video bit rate tolerance = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->bit_rate_tolerance);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-10-19 13:39:06 +00:00
|
|
|
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "rc_eq", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->rc_eq = av_strdup("tex^qComp");
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set(&recommended, "rc_eq", "tex^qComp", 0);
|
2014-12-08 20:25:35 +00:00
|
|
|
WARNING("Setting default value for video rate control equation = "
|
|
|
|
"%s. Use NoDefaults to disable it.\n",
|
2014-11-26 18:41:24 +00:00
|
|
|
av->rc_eq);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-11-26 18:08:18 +00:00
|
|
|
if (!av_dict_get(recommended, "maxrate", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->rc_max_rate = av->bit_rate * 2;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "maxrate", av->rc_max_rate, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video max rate = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->rc_max_rate);
|
2014-11-16 20:51:42 +00:00
|
|
|
}
|
2014-10-19 13:39:06 +00:00
|
|
|
|
2014-11-26 18:08:18 +00:00
|
|
|
if (av->rc_max_rate && !av_dict_get(recommended, "bufsize", NULL, 0)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
av->rc_buffer_size = av->rc_max_rate;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_set_int(&recommended, "bufsize", av->rc_buffer_size, 0);
|
2014-11-26 18:41:24 +00:00
|
|
|
WARNING("Setting default value for video buffer size = %d. "
|
|
|
|
"Use NoDefaults to disable it.\n",
|
|
|
|
av->rc_buffer_size);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2014-12-08 21:32:22 +00:00
|
|
|
done:
|
2014-10-19 13:39:06 +00:00
|
|
|
st = av_mallocz(sizeof(AVStream));
|
|
|
|
if (!st)
|
|
|
|
return;
|
2014-11-16 20:51:42 +00:00
|
|
|
av_dict_get_string(recommended, &enc_config, '=', ',');
|
|
|
|
av_dict_free(&recommended);
|
|
|
|
av_stream_set_recommended_encoder_configuration(st, enc_config);
|
2014-10-19 19:29:40 +00:00
|
|
|
st->codec = av;
|
2014-10-19 13:39:06 +00:00
|
|
|
stream->streams[stream->nb_streams++] = st;
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static int ffserver_set_codec(AVCodecContext *ctx, const char *codec_name,
|
|
|
|
FFServerConfig *config)
|
2014-10-19 13:39:06 +00:00
|
|
|
{
|
2014-11-10 22:21:34 +00:00
|
|
|
int ret;
|
|
|
|
AVCodec *codec = avcodec_find_encoder_by_name(codec_name);
|
|
|
|
if (!codec || codec->type != ctx->codec_type) {
|
2014-11-17 01:23:22 +00:00
|
|
|
report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-12-08 20:25:35 +00:00
|
|
|
&config->errors,
|
|
|
|
"Invalid codec name: '%s'\n", codec_name);
|
2014-11-10 22:21:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ctx->codec_id == AV_CODEC_ID_NONE && !ctx->priv_data) {
|
|
|
|
if ((ret = avcodec_get_context_defaults3(ctx, codec)) < 0)
|
|
|
|
return ret;
|
|
|
|
ctx->codec = codec;
|
|
|
|
}
|
|
|
|
if (ctx->codec_id != codec->id)
|
2014-12-08 20:25:35 +00:00
|
|
|
report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
|
|
|
&config->errors,
|
|
|
|
"Inconsistent configuration: trying to set '%s' "
|
|
|
|
"codec option, but '%s' codec is used previously\n",
|
2014-11-10 22:21:34 +00:00
|
|
|
codec_name, avcodec_get_name(ctx->codec_id));
|
|
|
|
return 0;
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 01:23:22 +00:00
|
|
|
static int ffserver_opt_preset(const char *arg, int type, FFServerConfig *config)
|
2014-10-19 13:39:06 +00:00
|
|
|
{
|
|
|
|
FILE *f=NULL;
|
|
|
|
char filename[1000], tmp[1000], tmp2[1000], line[1000];
|
|
|
|
int ret = 0;
|
2014-11-13 17:45:17 +00:00
|
|
|
AVCodecContext *avctx;
|
|
|
|
const AVCodec *codec;
|
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
case AV_OPT_FLAG_AUDIO_PARAM:
|
|
|
|
avctx = config->dummy_actx;
|
|
|
|
break;
|
|
|
|
case AV_OPT_FLAG_VIDEO_PARAM:
|
|
|
|
avctx = config->dummy_vctx;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_assert0(0);
|
|
|
|
}
|
|
|
|
codec = avcodec_find_encoder(avctx->codec_id);
|
2014-10-19 13:39:06 +00:00
|
|
|
|
|
|
|
if (!(f = get_preset_file(filename, sizeof(filename), arg, 0,
|
|
|
|
codec ? codec->name : NULL))) {
|
2014-11-10 22:21:34 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "File for preset '%s' not found\n", arg);
|
2014-10-19 19:29:40 +00:00
|
|
|
return AVERROR(EINVAL);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while(!feof(f)){
|
|
|
|
int e= fscanf(f, "%999[^\n]\n", line) - 1;
|
|
|
|
if(line[0] == '#' && !e)
|
|
|
|
continue;
|
|
|
|
e|= sscanf(line, "%999[^=]=%999[^\n]\n", tmp, tmp2) - 2;
|
|
|
|
if(e){
|
2014-12-08 20:25:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "%s: Invalid syntax: '%s'\n", filename,
|
|
|
|
line);
|
2014-10-19 19:29:40 +00:00
|
|
|
ret = AVERROR(EINVAL);
|
2014-10-19 13:39:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-12-08 20:25:35 +00:00
|
|
|
if (!strcmp(tmp, "acodec") && avctx->codec_type == AVMEDIA_TYPE_AUDIO ||
|
|
|
|
!strcmp(tmp, "vcodec") && avctx->codec_type == AVMEDIA_TYPE_VIDEO)
|
2014-11-10 22:21:34 +00:00
|
|
|
{
|
2014-11-17 01:23:22 +00:00
|
|
|
if (ffserver_set_codec(avctx, tmp2, config) < 0)
|
2014-11-10 22:21:34 +00:00
|
|
|
break;
|
|
|
|
} else if (!strcmp(tmp, "scodec")) {
|
|
|
|
av_log(NULL, AV_LOG_ERROR, "Subtitles preset found.\n");
|
|
|
|
ret = AVERROR(EINVAL);
|
2014-10-19 13:39:06 +00:00
|
|
|
break;
|
2014-11-17 01:23:22 +00:00
|
|
|
} else if (ffserver_save_avoption(tmp, tmp2, type, config) < 0)
|
2014-11-13 17:45:17 +00:00
|
|
|
break;
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static AVOutputFormat *ffserver_guess_format(const char *short_name,
|
|
|
|
const char *filename,
|
|
|
|
const char *mime_type)
|
2014-10-19 13:39:06 +00:00
|
|
|
{
|
|
|
|
AVOutputFormat *fmt = av_guess_format(short_name, filename, mime_type);
|
|
|
|
|
|
|
|
if (fmt) {
|
|
|
|
AVOutputFormat *stream_fmt;
|
|
|
|
char stream_format_name[64];
|
|
|
|
|
2014-11-03 00:54:23 +00:00
|
|
|
snprintf(stream_format_name, sizeof(stream_format_name), "%s_stream",
|
|
|
|
fmt->name);
|
2014-10-19 13:39:06 +00:00
|
|
|
stream_fmt = av_guess_format(stream_format_name, NULL, NULL);
|
|
|
|
|
|
|
|
if (stream_fmt)
|
|
|
|
fmt = stream_fmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt;
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static void vreport_config_error(const char *filename, int line_num,
|
|
|
|
int log_level, int *errors, const char *fmt,
|
|
|
|
va_list vl)
|
2014-10-19 19:29:40 +00:00
|
|
|
{
|
|
|
|
av_log(NULL, log_level, "%s:%d: ", filename, line_num);
|
|
|
|
av_vlog(NULL, log_level, fmt, vl);
|
2014-11-10 22:21:34 +00:00
|
|
|
if (errors)
|
|
|
|
(*errors)++;
|
2014-10-19 19:29:40 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static void report_config_error(const char *filename, int line_num,
|
|
|
|
int log_level, int *errors,
|
|
|
|
const char *fmt, ...)
|
2014-10-19 13:39:06 +00:00
|
|
|
{
|
|
|
|
va_list vl;
|
|
|
|
va_start(vl, fmt);
|
2014-10-19 19:29:40 +00:00
|
|
|
vreport_config_error(filename, line_num, log_level, errors, fmt, vl);
|
2014-10-19 13:39:06 +00:00
|
|
|
va_end(vl);
|
2014-10-19 19:29:40 +00:00
|
|
|
}
|
2014-10-19 13:39:06 +00:00
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static int ffserver_set_int_param(int *dest, const char *value, int factor,
|
|
|
|
int min, int max, FFServerConfig *config,
|
|
|
|
const char *error_msg, ...)
|
2014-10-19 19:29:40 +00:00
|
|
|
{
|
|
|
|
int tmp;
|
|
|
|
char *tailp;
|
|
|
|
if (!value || !value[0])
|
|
|
|
goto error;
|
|
|
|
errno = 0;
|
|
|
|
tmp = strtol(value, &tailp, 0);
|
|
|
|
if (tmp < min || tmp > max)
|
|
|
|
goto error;
|
|
|
|
if (factor) {
|
|
|
|
if (FFABS(tmp) > INT_MAX / FFABS(factor))
|
|
|
|
goto error;
|
|
|
|
tmp *= factor;
|
|
|
|
}
|
|
|
|
if (tailp[0] || errno)
|
|
|
|
goto error;
|
|
|
|
if (dest)
|
|
|
|
*dest = tmp;
|
|
|
|
return 0;
|
|
|
|
error:
|
|
|
|
if (config) {
|
|
|
|
va_list vl;
|
|
|
|
va_start(vl, error_msg);
|
2014-11-17 01:23:22 +00:00
|
|
|
vreport_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-11-03 00:54:23 +00:00
|
|
|
&config->errors, error_msg, vl);
|
2014-10-19 19:29:40 +00:00
|
|
|
va_end(vl);
|
|
|
|
}
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static int ffserver_set_float_param(float *dest, const char *value,
|
|
|
|
float factor, float min, float max,
|
|
|
|
FFServerConfig *config,
|
|
|
|
const char *error_msg, ...)
|
2014-10-19 19:29:40 +00:00
|
|
|
{
|
|
|
|
double tmp;
|
|
|
|
char *tailp;
|
|
|
|
if (!value || !value[0])
|
|
|
|
goto error;
|
|
|
|
errno = 0;
|
|
|
|
tmp = strtod(value, &tailp);
|
|
|
|
if (tmp < min || tmp > max)
|
|
|
|
goto error;
|
|
|
|
if (factor)
|
|
|
|
tmp *= factor;
|
|
|
|
if (tailp[0] || errno)
|
|
|
|
goto error;
|
|
|
|
if (dest)
|
|
|
|
*dest = tmp;
|
|
|
|
return 0;
|
|
|
|
error:
|
|
|
|
if (config) {
|
|
|
|
va_list vl;
|
|
|
|
va_start(vl, error_msg);
|
2014-11-17 01:23:22 +00:00
|
|
|
vreport_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-11-03 00:54:23 +00:00
|
|
|
&config->errors, error_msg, vl);
|
2014-10-19 19:29:40 +00:00
|
|
|
va_end(vl);
|
|
|
|
}
|
|
|
|
return AVERROR(EINVAL);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static int ffserver_save_avoption(const char *opt, const char *arg, int type,
|
|
|
|
FFServerConfig *config)
|
2014-11-01 18:17:01 +00:00
|
|
|
{
|
2014-11-10 22:21:34 +00:00
|
|
|
static int hinted = 0;
|
2014-11-01 18:17:01 +00:00
|
|
|
int ret = 0;
|
|
|
|
AVDictionaryEntry *e;
|
2014-11-10 22:21:34 +00:00
|
|
|
const AVOption *o = NULL;
|
|
|
|
const char *option = NULL;
|
|
|
|
const char *codec_name = NULL;
|
|
|
|
char buff[1024];
|
2014-11-13 17:45:17 +00:00
|
|
|
AVCodecContext *ctx;
|
|
|
|
AVDictionary **dict;
|
|
|
|
enum AVCodecID guessed_codec_id;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case AV_OPT_FLAG_VIDEO_PARAM:
|
|
|
|
ctx = config->dummy_vctx;
|
|
|
|
dict = &config->video_opts;
|
|
|
|
guessed_codec_id = config->guessed_video_codec_id != AV_CODEC_ID_NONE ?
|
|
|
|
config->guessed_video_codec_id : AV_CODEC_ID_H264;
|
|
|
|
break;
|
|
|
|
case AV_OPT_FLAG_AUDIO_PARAM:
|
|
|
|
ctx = config->dummy_actx;
|
|
|
|
dict = &config->audio_opts;
|
|
|
|
guessed_codec_id = config->guessed_audio_codec_id != AV_CODEC_ID_NONE ?
|
|
|
|
config->guessed_audio_codec_id : AV_CODEC_ID_AAC;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_assert0(0);
|
|
|
|
}
|
2014-11-10 22:21:34 +00:00
|
|
|
|
|
|
|
if (strchr(opt, ':')) {
|
|
|
|
//explicit private option
|
|
|
|
snprintf(buff, sizeof(buff), "%s", opt);
|
|
|
|
codec_name = buff;
|
2014-12-08 15:42:39 +00:00
|
|
|
if(!(option = strchr(buff, ':'))){
|
|
|
|
report_config_error(config->filename, config->line_num,
|
|
|
|
AV_LOG_ERROR, &config->errors,
|
|
|
|
"Syntax error. Unmatched ':'\n");
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
2014-11-10 22:21:34 +00:00
|
|
|
buff[option - buff] = '\0';
|
|
|
|
option++;
|
2014-11-17 01:23:22 +00:00
|
|
|
if ((ret = ffserver_set_codec(ctx, codec_name, config)) < 0)
|
2014-11-10 22:21:34 +00:00
|
|
|
return ret;
|
|
|
|
if (!ctx->codec || !ctx->priv_data)
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
option = opt;
|
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
o = av_opt_find(ctx, option, NULL, type | AV_OPT_FLAG_ENCODING_PARAM,
|
|
|
|
AV_OPT_SEARCH_CHILDREN);
|
|
|
|
if (!o &&
|
|
|
|
(!strcmp(option, "time_base") || !strcmp(option, "pixel_format") ||
|
|
|
|
!strcmp(option, "video_size") || !strcmp(option, "codec_tag")))
|
2014-11-13 17:45:43 +00:00
|
|
|
o = av_opt_find(ctx, option, NULL, 0, 0);
|
2014-11-01 18:17:01 +00:00
|
|
|
if (!o) {
|
2014-11-17 01:23:22 +00:00
|
|
|
report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-12-08 17:12:36 +00:00
|
|
|
&config->errors, "Option not found: '%s'\n", opt);
|
2014-11-10 22:21:34 +00:00
|
|
|
if (!hinted && ctx->codec_id == AV_CODEC_ID_NONE) {
|
|
|
|
hinted = 1;
|
2014-12-08 20:25:35 +00:00
|
|
|
report_config_error(config->filename, config->line_num,
|
|
|
|
AV_LOG_ERROR, NULL, "If '%s' is a codec private"
|
|
|
|
"option, then prefix it with codec name, for "
|
|
|
|
"example '%s:%s %s' or define codec earlier.\n",
|
|
|
|
opt, avcodec_get_name(guessed_codec_id) ,opt,
|
|
|
|
arg);
|
2014-11-10 22:21:34 +00:00
|
|
|
}
|
|
|
|
} else if ((ret = av_opt_set(ctx, option, arg, AV_OPT_SEARCH_CHILDREN)) < 0) {
|
2014-11-17 01:23:22 +00:00
|
|
|
report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-11-03 00:54:23 +00:00
|
|
|
&config->errors, "Invalid value for option %s (%s): %s\n", opt,
|
|
|
|
arg, av_err2str(ret));
|
2014-11-10 22:21:34 +00:00
|
|
|
} else if ((e = av_dict_get(*dict, option, NULL, 0))) {
|
2014-12-08 20:25:35 +00:00
|
|
|
if ((o->type == AV_OPT_TYPE_FLAGS) && arg &&
|
|
|
|
(arg[0] == '+' || arg[0] == '-'))
|
2014-11-10 22:21:34 +00:00
|
|
|
return av_dict_set(dict, option, arg, AV_DICT_APPEND);
|
2014-11-17 01:23:22 +00:00
|
|
|
report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
|
2014-12-08 20:25:35 +00:00
|
|
|
&config->errors, "Redeclaring value of option '%s'."
|
|
|
|
"Previous value was: '%s'.\n", opt, e->value);
|
2014-11-10 22:21:34 +00:00
|
|
|
} else if (av_dict_set(dict, option, arg, 0) < 0) {
|
2014-11-01 18:17:01 +00:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-13 17:45:43 +00:00
|
|
|
static int ffserver_save_avoption_int(const char *opt, int64_t arg,
|
|
|
|
int type, FFServerConfig *config)
|
|
|
|
{
|
|
|
|
char buf[22];
|
|
|
|
snprintf(buf, sizeof(buf), "%"PRId64, arg);
|
|
|
|
return ffserver_save_avoption(opt, buf, type, config);
|
|
|
|
}
|
|
|
|
|
2014-10-19 14:37:16 +00:00
|
|
|
static int ffserver_parse_config_global(FFServerConfig *config, const char *cmd,
|
2014-11-17 01:23:22 +00:00
|
|
|
const char **p)
|
2014-10-19 14:37:16 +00:00
|
|
|
{
|
|
|
|
int val;
|
|
|
|
char arg[1024];
|
|
|
|
if (!av_strcasecmp(cmd, "Port") || !av_strcasecmp(cmd, "HTTPPort")) {
|
|
|
|
if (!av_strcasecmp(cmd, "Port"))
|
2014-12-08 17:12:36 +00:00
|
|
|
WARNING("Port option is deprecated. Use HTTPPort instead.\n");
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
|
2014-11-03 00:54:23 +00:00
|
|
|
"Invalid port: %s\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
if (val < 1024)
|
2014-12-08 17:12:36 +00:00
|
|
|
WARNING("Trying to use IETF assigned system port: '%d'\n", val);
|
2014-10-19 14:37:16 +00:00
|
|
|
config->http_addr.sin_port = htons(val);
|
2014-12-08 20:25:35 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "HTTPBindAddress") ||
|
|
|
|
!av_strcasecmp(cmd, "BindAddress")) {
|
2014-10-19 14:37:16 +00:00
|
|
|
if (!av_strcasecmp(cmd, "BindAddress"))
|
2014-12-08 20:25:35 +00:00
|
|
|
WARNING("BindAddress option is deprecated. Use HTTPBindAddress "
|
|
|
|
"instead.\n");
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-03 00:56:04 +00:00
|
|
|
if (resolve_host(&config->http_addr.sin_addr, arg))
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Invalid host/IP address: '%s'\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "NoDaemon")) {
|
2014-12-08 17:12:36 +00:00
|
|
|
WARNING("NoDaemon option has no effect. You should remove it.\n");
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "RTSPPort")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
|
2014-11-03 00:54:23 +00:00
|
|
|
"Invalid port: %s\n", arg);
|
2014-11-01 01:09:44 +00:00
|
|
|
config->rtsp_addr.sin_port = htons(val);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "RTSPBindAddress")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-03 00:56:04 +00:00
|
|
|
if (resolve_host(&config->rtsp_addr.sin_addr, arg))
|
2014-10-19 14:37:16 +00:00
|
|
|
ERROR("Invalid host/IP address: %s\n", arg);
|
|
|
|
} else if (!av_strcasecmp(cmd, "MaxHTTPConnections")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
|
2014-11-03 00:54:23 +00:00
|
|
|
"Invalid MaxHTTPConnections: %s\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
config->nb_max_http_connections = val;
|
2014-12-08 20:25:35 +00:00
|
|
|
if (config->nb_max_connections > config->nb_max_http_connections) {
|
|
|
|
ERROR("Inconsistent configuration: MaxClients(%d) > "
|
|
|
|
"MaxHTTPConnections(%d)\n", config->nb_max_connections,
|
|
|
|
config->nb_max_http_connections);
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "MaxClients")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid MaxClients: '%s'\n", arg);
|
2014-11-01 01:09:44 +00:00
|
|
|
config->nb_max_connections = val;
|
2014-12-08 20:25:35 +00:00
|
|
|
if (config->nb_max_connections > config->nb_max_http_connections) {
|
|
|
|
ERROR("Inconsistent configuration: MaxClients(%d) > "
|
|
|
|
"MaxHTTPConnections(%d)\n", config->nb_max_connections,
|
|
|
|
config->nb_max_http_connections);
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "MaxBandwidth")) {
|
|
|
|
int64_t llval;
|
2014-11-01 01:09:44 +00:00
|
|
|
char *tailp;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-01 01:09:44 +00:00
|
|
|
errno = 0;
|
|
|
|
llval = strtoll(arg, &tailp, 10);
|
|
|
|
if (llval < 10 || llval > 10000000 || tailp[0] || errno)
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Invalid MaxBandwidth: '%s'\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
else
|
|
|
|
config->max_bandwidth = llval;
|
|
|
|
} else if (!av_strcasecmp(cmd, "CustomLog")) {
|
2014-12-08 20:25:35 +00:00
|
|
|
if (!config->debug) {
|
|
|
|
ffserver_get_arg(config->logfilename, sizeof(config->logfilename),
|
|
|
|
p);
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "LoadModule")) {
|
2014-11-01 01:09:44 +00:00
|
|
|
ERROR("Loadable modules are no longer supported\n");
|
2014-11-15 17:43:41 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "NoDefaults")) {
|
|
|
|
config->use_defaults = 0;
|
|
|
|
} else if (!av_strcasecmp(cmd, "UseDefaults")) {
|
|
|
|
config->use_defaults = 1;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else
|
|
|
|
ERROR("Incorrect keyword: '%s'\n", cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ffserver_parse_config_feed(FFServerConfig *config, const char *cmd, const char **p,
|
2014-11-17 01:23:22 +00:00
|
|
|
FFServerStream **pfeed)
|
2014-10-19 14:37:16 +00:00
|
|
|
{
|
|
|
|
FFServerStream *feed;
|
|
|
|
char arg[1024];
|
|
|
|
av_assert0(pfeed);
|
|
|
|
feed = *pfeed;
|
|
|
|
if (!av_strcasecmp(cmd, "<Feed")) {
|
|
|
|
char *q;
|
|
|
|
FFServerStream *s;
|
|
|
|
feed = av_mallocz(sizeof(FFServerStream));
|
|
|
|
if (!feed)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
ffserver_get_arg(feed->filename, sizeof(feed->filename), p);
|
|
|
|
q = strrchr(feed->filename, '>');
|
|
|
|
if (*q)
|
|
|
|
*q = '\0';
|
|
|
|
|
|
|
|
for (s = config->first_feed; s; s = s->next) {
|
|
|
|
if (!strcmp(feed->filename, s->filename))
|
|
|
|
ERROR("Feed '%s' already registered\n", s->filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
feed->fmt = av_guess_format("ffm", NULL, NULL);
|
|
|
|
/* default feed file */
|
|
|
|
snprintf(feed->feed_filename, sizeof(feed->feed_filename),
|
|
|
|
"/tmp/%s.ffm", feed->filename);
|
|
|
|
feed->feed_max_size = 5 * 1024 * 1024;
|
|
|
|
feed->is_feed = 1;
|
|
|
|
feed->feed = feed; /* self feeding :-) */
|
|
|
|
*pfeed = feed;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
av_assert0(feed);
|
|
|
|
if (!av_strcasecmp(cmd, "Launch")) {
|
|
|
|
int i;
|
|
|
|
|
2014-11-19 23:28:03 +00:00
|
|
|
feed->child_argv = av_mallocz_array(MAX_CHILD_ARGS, sizeof(char *));
|
2014-10-19 14:37:16 +00:00
|
|
|
if (!feed->child_argv)
|
|
|
|
return AVERROR(ENOMEM);
|
2014-11-19 23:28:03 +00:00
|
|
|
for (i = 0; i < MAX_CHILD_ARGS - 2; i++) {
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
if (!arg[0])
|
|
|
|
break;
|
|
|
|
|
|
|
|
feed->child_argv[i] = av_strdup(arg);
|
|
|
|
if (!feed->child_argv[i])
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
feed->child_argv[i] =
|
|
|
|
av_asprintf("http://%s:%d/%s",
|
2014-12-08 20:25:35 +00:00
|
|
|
(config->http_addr.sin_addr.s_addr == INADDR_ANY) ?
|
|
|
|
"127.0.0.1" : inet_ntoa(config->http_addr.sin_addr),
|
|
|
|
ntohs(config->http_addr.sin_port), feed->filename);
|
2014-10-19 14:37:16 +00:00
|
|
|
if (!feed->child_argv[i])
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
} else if (!av_strcasecmp(cmd, "ACL")) {
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_parse_acl_row(NULL, feed, NULL, *p, config->filename,
|
2014-11-17 01:23:22 +00:00
|
|
|
config->line_num);
|
2014-12-08 20:25:35 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "File") ||
|
|
|
|
!av_strcasecmp(cmd, "ReadOnlyFile")) {
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(feed->feed_filename, sizeof(feed->feed_filename), p);
|
|
|
|
feed->readonly = !av_strcasecmp(cmd, "ReadOnlyFile");
|
|
|
|
} else if (!av_strcasecmp(cmd, "Truncate")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
/* assume Truncate is true in case no argument is specified */
|
|
|
|
if (!arg[0]) {
|
|
|
|
feed->truncate = 1;
|
|
|
|
} else {
|
2014-12-08 17:12:36 +00:00
|
|
|
WARNING("Truncate N syntax in configuration file is deprecated. "
|
|
|
|
"Use Truncate alone with no arguments.\n");
|
2014-10-19 14:37:16 +00:00
|
|
|
feed->truncate = strtod(arg, NULL);
|
|
|
|
}
|
|
|
|
} else if (!av_strcasecmp(cmd, "FileMaxSize")) {
|
|
|
|
char *p1;
|
|
|
|
double fsize;
|
|
|
|
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
p1 = arg;
|
|
|
|
fsize = strtod(p1, &p1);
|
|
|
|
switch(av_toupper(*p1)) {
|
|
|
|
case 'K':
|
|
|
|
fsize *= 1024;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
fsize *= 1024 * 1024;
|
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
fsize *= 1024 * 1024 * 1024;
|
|
|
|
break;
|
2014-11-01 01:09:44 +00:00
|
|
|
default:
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Invalid file size: '%s'\n", arg);
|
2014-11-01 01:09:44 +00:00
|
|
|
break;
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
|
|
|
feed->feed_max_size = (int64_t)fsize;
|
2014-12-08 20:25:35 +00:00
|
|
|
if (feed->feed_max_size < FFM_PACKET_SIZE*4) {
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Feed max file size is too small. Must be at least %d.\n",
|
2014-12-08 20:25:35 +00:00
|
|
|
FFM_PACKET_SIZE*4);
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "</Feed>")) {
|
|
|
|
*pfeed = NULL;
|
|
|
|
} else {
|
|
|
|
ERROR("Invalid entry '%s' inside <Feed></Feed>\n", cmd);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ffserver_parse_config_stream(FFServerConfig *config, const char *cmd, const char **p,
|
2014-11-17 01:23:22 +00:00
|
|
|
FFServerStream **pstream)
|
2014-10-19 14:37:16 +00:00
|
|
|
{
|
|
|
|
char arg[1024], arg2[1024];
|
|
|
|
FFServerStream *stream;
|
2014-11-01 01:09:44 +00:00
|
|
|
int val;
|
2014-10-19 14:37:16 +00:00
|
|
|
|
|
|
|
av_assert0(pstream);
|
|
|
|
stream = *pstream;
|
|
|
|
|
|
|
|
if (!av_strcasecmp(cmd, "<Stream")) {
|
|
|
|
char *q;
|
|
|
|
FFServerStream *s;
|
|
|
|
stream = av_mallocz(sizeof(FFServerStream));
|
|
|
|
if (!stream)
|
|
|
|
return AVERROR(ENOMEM);
|
2014-11-10 22:21:34 +00:00
|
|
|
config->dummy_actx = avcodec_alloc_context3(NULL);
|
|
|
|
config->dummy_vctx = avcodec_alloc_context3(NULL);
|
|
|
|
if (!config->dummy_vctx || !config->dummy_actx) {
|
2014-11-01 18:17:01 +00:00
|
|
|
av_free(stream);
|
2014-11-10 22:21:34 +00:00
|
|
|
avcodec_free_context(&config->dummy_vctx);
|
|
|
|
avcodec_free_context(&config->dummy_actx);
|
2014-11-01 18:17:01 +00:00
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
2014-11-10 22:21:34 +00:00
|
|
|
config->dummy_actx->codec_type = AVMEDIA_TYPE_AUDIO;
|
|
|
|
config->dummy_vctx->codec_type = AVMEDIA_TYPE_VIDEO;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(stream->filename, sizeof(stream->filename), p);
|
|
|
|
q = strrchr(stream->filename, '>');
|
|
|
|
if (q)
|
|
|
|
*q = '\0';
|
|
|
|
|
|
|
|
for (s = config->first_stream; s; s = s->next) {
|
|
|
|
if (!strcmp(stream->filename, s->filename))
|
|
|
|
ERROR("Stream '%s' already registered\n", s->filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->fmt = ffserver_guess_format(NULL, stream->filename, NULL);
|
|
|
|
if (stream->fmt) {
|
2014-11-10 22:21:34 +00:00
|
|
|
config->guessed_audio_codec_id = stream->fmt->audio_codec;
|
|
|
|
config->guessed_video_codec_id = stream->fmt->video_codec;
|
2014-10-19 19:29:40 +00:00
|
|
|
} else {
|
2014-11-10 22:21:34 +00:00
|
|
|
config->guessed_audio_codec_id = AV_CODEC_ID_NONE;
|
|
|
|
config->guessed_video_codec_id = AV_CODEC_ID_NONE;
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
2014-11-15 17:43:41 +00:00
|
|
|
config->stream_use_defaults = config->use_defaults;
|
2014-10-19 14:37:16 +00:00
|
|
|
*pstream = stream;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
av_assert0(stream);
|
|
|
|
if (!av_strcasecmp(cmd, "Feed")) {
|
|
|
|
FFServerStream *sfeed;
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
sfeed = config->first_feed;
|
|
|
|
while (sfeed) {
|
|
|
|
if (!strcmp(sfeed->filename, arg))
|
|
|
|
break;
|
|
|
|
sfeed = sfeed->next_feed;
|
|
|
|
}
|
|
|
|
if (!sfeed)
|
2014-11-03 00:54:23 +00:00
|
|
|
ERROR("Feed with name '%s' for stream '%s' is not defined\n", arg,
|
|
|
|
stream->filename);
|
2014-10-19 14:37:16 +00:00
|
|
|
else
|
|
|
|
stream->feed = sfeed;
|
|
|
|
} else if (!av_strcasecmp(cmd, "Format")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
if (!strcmp(arg, "status")) {
|
|
|
|
stream->stream_type = STREAM_TYPE_STATUS;
|
|
|
|
stream->fmt = NULL;
|
|
|
|
} else {
|
|
|
|
stream->stream_type = STREAM_TYPE_LIVE;
|
|
|
|
/* JPEG cannot be used here, so use single frame MJPEG */
|
|
|
|
if (!strcmp(arg, "jpeg"))
|
|
|
|
strcpy(arg, "mjpeg");
|
|
|
|
stream->fmt = ffserver_guess_format(arg, NULL, NULL);
|
|
|
|
if (!stream->fmt)
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Unknown Format: '%s'\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
|
|
|
if (stream->fmt) {
|
2014-11-10 22:21:34 +00:00
|
|
|
config->guessed_audio_codec_id = stream->fmt->audio_codec;
|
|
|
|
config->guessed_video_codec_id = stream->fmt->video_codec;
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
|
|
|
} else if (!av_strcasecmp(cmd, "InputFormat")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
stream->ifmt = av_find_input_format(arg);
|
|
|
|
if (!stream->ifmt)
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Unknown input format: '%s'\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "FaviconURL")) {
|
|
|
|
if (stream->stream_type == STREAM_TYPE_STATUS)
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_get_arg(stream->feed_filename,
|
|
|
|
sizeof(stream->feed_filename), p);
|
2014-10-19 14:37:16 +00:00
|
|
|
else
|
|
|
|
ERROR("FaviconURL only permitted for status streams\n");
|
|
|
|
} else if (!av_strcasecmp(cmd, "Author") ||
|
|
|
|
!av_strcasecmp(cmd, "Comment") ||
|
|
|
|
!av_strcasecmp(cmd, "Copyright") ||
|
|
|
|
!av_strcasecmp(cmd, "Title")) {
|
|
|
|
char key[32];
|
2014-10-19 19:29:40 +00:00
|
|
|
int i;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
for (i = 0; i < strlen(cmd); i++)
|
|
|
|
key[i] = av_tolower(cmd[i]);
|
|
|
|
key[i] = 0;
|
2014-12-08 17:12:36 +00:00
|
|
|
WARNING("Deprecated '%s' option in configuration file. Use "
|
|
|
|
"'Metadata %s VALUE' instead.\n", cmd, key);
|
2014-10-19 19:29:40 +00:00
|
|
|
if (av_dict_set(&stream->metadata, key, arg, 0) < 0)
|
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Metadata")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
ffserver_get_arg(arg2, sizeof(arg2), p);
|
2014-10-19 19:29:40 +00:00
|
|
|
if (av_dict_set(&stream->metadata, arg, arg2, 0) < 0)
|
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Preroll")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
stream->prebuffer = atof(arg) * 1000;
|
|
|
|
} else if (!av_strcasecmp(cmd, "StartSendOnKey")) {
|
|
|
|
stream->send_on_key = 1;
|
|
|
|
} else if (!av_strcasecmp(cmd, "AudioCodec")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_codec(config->dummy_actx, arg, config);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoCodec")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_codec(config->dummy_vctx, arg, config);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "MaxTime")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
stream->max_time = atof(arg) * 1000;
|
|
|
|
} else if (!av_strcasecmp(cmd, "AudioBitRate")) {
|
2014-10-19 19:29:40 +00:00
|
|
|
float f;
|
2014-11-01 01:11:52 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
ffserver_set_float_param(&f, arg, 1000, -FLT_MAX, FLT_MAX, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid %s: '%s'\n", cmd, arg);
|
2014-12-08 20:25:35 +00:00
|
|
|
if (ffserver_save_avoption_int("ab", (int64_t)lrintf(f),
|
|
|
|
AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "AudioChannels")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("ac", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "AudioSampleRate")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("ar", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoBitRateRange")) {
|
|
|
|
int minrate, maxrate;
|
2014-11-13 17:45:43 +00:00
|
|
|
char *dash;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
dash = strchr(arg, '-');
|
|
|
|
if (dash) {
|
|
|
|
*dash = '\0';
|
|
|
|
dash++;
|
2014-12-08 17:12:36 +00:00
|
|
|
if (ffserver_set_int_param(&minrate, arg, 1000, 0, INT_MAX, config, "Invalid %s: '%s'", cmd, arg) >= 0 &&
|
|
|
|
ffserver_set_int_param(&maxrate, dash, 1000, 0, INT_MAX, config, "Invalid %s: '%s'", cmd, arg) >= 0) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption_int("minrate", minrate, AV_OPT_FLAG_VIDEO_PARAM, config) < 0 ||
|
|
|
|
ffserver_save_avoption_int("maxrate", maxrate, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-11-13 17:45:43 +00:00
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Incorrect format for VideoBitRateRange. It should be "
|
2014-12-08 20:25:35 +00:00
|
|
|
"<min>-<max>: '%s'.\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Debug")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("debug", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0 ||
|
|
|
|
ffserver_save_avoption("debug", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Strict")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("strict", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0 ||
|
|
|
|
ffserver_save_avoption("strict", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoBufferSize")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 8*1024, 0, INT_MAX, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid %s: '%s'", cmd, arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption_int("bufsize", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoBitRateTolerance")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 1000, INT_MIN, INT_MAX, config,
|
2014-12-08 20:25:35 +00:00
|
|
|
"Invalid %s: '%s'", cmd, arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption_int("bt", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoBitRate")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 1000, INT_MIN, INT_MAX, config,
|
2014-12-08 20:25:35 +00:00
|
|
|
"Invalid %s: '%s'", cmd, arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption_int("b", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoSize")) {
|
2014-10-19 19:29:40 +00:00
|
|
|
int ret, w, h;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-10-19 19:29:40 +00:00
|
|
|
ret = av_parse_video_size(&w, &h, arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
if (ret < 0)
|
|
|
|
ERROR("Invalid video size '%s'\n", arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
else {
|
|
|
|
if (w % 2 || h % 2)
|
|
|
|
WARNING("Image size is not a multiple of 2\n");
|
|
|
|
if (ffserver_save_avoption("video_size", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
2014-11-13 17:45:43 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoFrameRate")) {
|
|
|
|
ffserver_get_arg(&arg[2], sizeof(arg) - 2, p);
|
|
|
|
arg[0] = '1'; arg[1] = '/';
|
|
|
|
if (ffserver_save_avoption("time_base", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "PixelFormat")) {
|
2014-10-19 19:29:40 +00:00
|
|
|
enum AVPixelFormat pix_fmt;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-10-19 19:29:40 +00:00
|
|
|
pix_fmt = av_get_pix_fmt(arg);
|
|
|
|
if (pix_fmt == AV_PIX_FMT_NONE)
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Unknown pixel format: '%s'\n", arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
else if (ffserver_save_avoption("pixel_format", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoGopSize")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("g", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoIntraOnly")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("g", "1", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoHighQuality")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("mbd", "+bits", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Video4MotionVector")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("mbd", "+bits", AV_OPT_FLAG_VIDEO_PARAM, config) < 0 || //FIXME remove
|
|
|
|
ffserver_save_avoption("flags", "+mv4", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "AVOptionVideo") ||
|
|
|
|
!av_strcasecmp(cmd, "AVOptionAudio")) {
|
2014-11-01 18:17:01 +00:00
|
|
|
int ret;
|
2014-10-19 14:37:16 +00:00
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
ffserver_get_arg(arg2, sizeof(arg2), p);
|
2014-10-19 19:29:40 +00:00
|
|
|
if (!av_strcasecmp(cmd, "AVOptionVideo"))
|
2014-12-08 20:25:35 +00:00
|
|
|
ret = ffserver_save_avoption(arg, arg2, AV_OPT_FLAG_VIDEO_PARAM,
|
|
|
|
config);
|
2014-10-19 19:29:40 +00:00
|
|
|
else
|
2014-12-08 20:25:35 +00:00
|
|
|
ret = ffserver_save_avoption(arg, arg2, AV_OPT_FLAG_AUDIO_PARAM,
|
|
|
|
config);
|
2014-11-01 18:17:01 +00:00
|
|
|
if (ret < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "AVPresetVideo") ||
|
|
|
|
!av_strcasecmp(cmd, "AVPresetAudio")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-15 01:21:04 +00:00
|
|
|
if (!av_strcasecmp(cmd, "AVPresetVideo"))
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_opt_preset(arg, AV_OPT_FLAG_VIDEO_PARAM, config);
|
2014-11-15 01:21:04 +00:00
|
|
|
else
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_opt_preset(arg, AV_OPT_FLAG_AUDIO_PARAM, config);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoTag")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (strlen(arg) == 4 &&
|
2014-12-08 20:25:35 +00:00
|
|
|
ffserver_save_avoption_int("codec_tag",
|
|
|
|
MKTAG(arg[0], arg[1], arg[2], arg[3]),
|
2014-11-13 17:45:43 +00:00
|
|
|
AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "BitExact")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("flags", "+bitexact", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "DctFastint")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("dct", "fastint", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "IdctSimple")) {
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("idct", "simple", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "Qscale")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, INT_MIN, INT_MAX, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid Qscale: '%s'\n", arg);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("flags", "+qscale", AV_OPT_FLAG_VIDEO_PARAM, config) < 0 ||
|
|
|
|
ffserver_save_avoption_int("global_quality", FF_QP2LAMBDA * val,
|
|
|
|
AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoQDiff")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("qdiff", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoQMax")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("qmax", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "VideoQMin")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("qmin", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "LumiMask")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("lumi_mask", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "DarkMask")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-13 17:45:43 +00:00
|
|
|
if (ffserver_save_avoption("dark_mask", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
|
2014-10-19 19:29:40 +00:00
|
|
|
goto nomem;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "NoVideo")) {
|
2014-11-10 22:21:34 +00:00
|
|
|
config->no_video = 1;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "NoAudio")) {
|
2014-11-10 22:21:34 +00:00
|
|
|
config->no_audio = 1;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "ACL")) {
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_parse_acl_row(stream, NULL, NULL, *p, config->filename,
|
2014-11-17 01:23:22 +00:00
|
|
|
config->line_num);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "DynamicACL")) {
|
|
|
|
ffserver_get_arg(stream->dynamic_acl, sizeof(stream->dynamic_acl), p);
|
|
|
|
} else if (!av_strcasecmp(cmd, "RTSPOption")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
|
|
|
av_freep(&stream->rtsp_option);
|
|
|
|
stream->rtsp_option = av_strdup(arg);
|
|
|
|
} else if (!av_strcasecmp(cmd, "MulticastAddress")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-03 00:56:04 +00:00
|
|
|
if (resolve_host(&stream->multicast_ip, arg))
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Invalid host/IP address: '%s'\n", arg);
|
2014-10-19 14:37:16 +00:00
|
|
|
stream->is_multicast = 1;
|
|
|
|
stream->loop = 1; /* default is looping */
|
|
|
|
} else if (!av_strcasecmp(cmd, "MulticastPort")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid MulticastPort: '%s'\n", arg);
|
2014-11-01 01:09:44 +00:00
|
|
|
stream->multicast_port = val;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "MulticastTTL")) {
|
|
|
|
ffserver_get_arg(arg, sizeof(arg), p);
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_set_int_param(&val, arg, 0, INT_MIN, INT_MAX, config,
|
2014-12-08 17:12:36 +00:00
|
|
|
"Invalid MulticastTTL: '%s'\n", arg);
|
2014-11-01 01:09:44 +00:00
|
|
|
stream->multicast_ttl = val;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "NoLoop")) {
|
|
|
|
stream->loop = 0;
|
|
|
|
} else if (!av_strcasecmp(cmd, "</Stream>")) {
|
2014-11-15 17:43:41 +00:00
|
|
|
config->stream_use_defaults &= 1;
|
2014-11-03 00:56:04 +00:00
|
|
|
if (stream->feed && stream->fmt && strcmp(stream->fmt->name, "ffm")) {
|
2014-11-10 22:21:34 +00:00
|
|
|
if (config->dummy_actx->codec_id == AV_CODEC_ID_NONE)
|
|
|
|
config->dummy_actx->codec_id = config->guessed_audio_codec_id;
|
2014-12-08 20:25:35 +00:00
|
|
|
if (!config->no_audio &&
|
|
|
|
config->dummy_actx->codec_id != AV_CODEC_ID_NONE) {
|
2014-11-10 22:21:34 +00:00
|
|
|
AVCodecContext *audio_enc = avcodec_alloc_context3(avcodec_find_encoder(config->dummy_actx->codec_id));
|
2014-11-16 00:33:19 +00:00
|
|
|
add_codec(stream, audio_enc, config);
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
2014-11-10 22:21:34 +00:00
|
|
|
if (config->dummy_vctx->codec_id == AV_CODEC_ID_NONE)
|
|
|
|
config->dummy_vctx->codec_id = config->guessed_video_codec_id;
|
2014-12-08 20:25:35 +00:00
|
|
|
if (!config->no_video &&
|
|
|
|
config->dummy_vctx->codec_id != AV_CODEC_ID_NONE) {
|
2014-11-10 22:21:34 +00:00
|
|
|
AVCodecContext *video_enc = avcodec_alloc_context3(avcodec_find_encoder(config->dummy_vctx->codec_id));
|
2014-11-16 00:33:19 +00:00
|
|
|
add_codec(stream, video_enc, config);
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-19 19:29:40 +00:00
|
|
|
av_dict_free(&config->video_opts);
|
|
|
|
av_dict_free(&config->audio_opts);
|
2014-11-10 22:21:34 +00:00
|
|
|
avcodec_free_context(&config->dummy_vctx);
|
|
|
|
avcodec_free_context(&config->dummy_actx);
|
2014-10-19 14:37:16 +00:00
|
|
|
*pstream = NULL;
|
2014-12-08 20:25:35 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "File") ||
|
|
|
|
!av_strcasecmp(cmd, "ReadOnlyFile")) {
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_get_arg(stream->feed_filename, sizeof(stream->feed_filename),
|
|
|
|
p);
|
2014-11-15 17:43:41 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "UseDefaults")) {
|
|
|
|
if (config->stream_use_defaults > 1)
|
|
|
|
WARNING("Multiple UseDefaults/NoDefaults entries.\n");
|
|
|
|
config->stream_use_defaults = 3;
|
|
|
|
} else if (!av_strcasecmp(cmd, "NoDefaults")) {
|
|
|
|
if (config->stream_use_defaults > 1)
|
|
|
|
WARNING("Multiple UseDefaults/NoDefaults entries.\n");
|
|
|
|
config->stream_use_defaults = 2;
|
2014-10-19 14:37:16 +00:00
|
|
|
} else {
|
|
|
|
ERROR("Invalid entry '%s' inside <Stream></Stream>\n", cmd);
|
|
|
|
}
|
|
|
|
return 0;
|
2014-10-19 19:29:40 +00:00
|
|
|
nomem:
|
|
|
|
av_log(NULL, AV_LOG_ERROR, "Out of memory. Aborting.\n");
|
|
|
|
av_dict_free(&config->video_opts);
|
|
|
|
av_dict_free(&config->audio_opts);
|
2014-11-10 22:21:34 +00:00
|
|
|
avcodec_free_context(&config->dummy_vctx);
|
|
|
|
avcodec_free_context(&config->dummy_actx);
|
2014-10-19 19:29:40 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2014-10-19 14:37:16 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 20:25:35 +00:00
|
|
|
static int ffserver_parse_config_redirect(FFServerConfig *config,
|
|
|
|
const char *cmd, const char **p,
|
2014-11-17 01:23:22 +00:00
|
|
|
FFServerStream **predirect)
|
2014-10-19 14:37:16 +00:00
|
|
|
{
|
|
|
|
FFServerStream *redirect;
|
|
|
|
av_assert0(predirect);
|
|
|
|
redirect = *predirect;
|
|
|
|
|
|
|
|
if (!av_strcasecmp(cmd, "<Redirect")) {
|
|
|
|
char *q;
|
|
|
|
redirect = av_mallocz(sizeof(FFServerStream));
|
|
|
|
if (!redirect)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
ffserver_get_arg(redirect->filename, sizeof(redirect->filename), p);
|
|
|
|
q = strrchr(redirect->filename, '>');
|
|
|
|
if (*q)
|
|
|
|
*q = '\0';
|
|
|
|
redirect->stream_type = STREAM_TYPE_REDIRECT;
|
|
|
|
*predirect = redirect;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
av_assert0(redirect);
|
|
|
|
if (!av_strcasecmp(cmd, "URL")) {
|
2014-11-03 00:54:23 +00:00
|
|
|
ffserver_get_arg(redirect->feed_filename,
|
|
|
|
sizeof(redirect->feed_filename), p);
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (!av_strcasecmp(cmd, "</Redirect>")) {
|
|
|
|
if (!redirect->feed_filename[0])
|
|
|
|
ERROR("No URL found for <Redirect>\n");
|
|
|
|
*predirect = NULL;
|
|
|
|
} else {
|
|
|
|
ERROR("Invalid entry '%s' inside <Redirect></Redirect>\n", cmd);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-19 13:39:06 +00:00
|
|
|
int ffserver_parse_ffconfig(const char *filename, FFServerConfig *config)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char line[1024];
|
|
|
|
char cmd[64];
|
|
|
|
const char *p;
|
2014-10-19 14:59:02 +00:00
|
|
|
FFServerStream **last_stream, *stream = NULL, *redirect = NULL;
|
|
|
|
FFServerStream **last_feed, *feed = NULL;
|
2014-10-19 13:39:06 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
av_assert0(config);
|
|
|
|
|
|
|
|
f = fopen(filename, "r");
|
|
|
|
if (!f) {
|
|
|
|
ret = AVERROR(errno);
|
2014-11-03 00:54:23 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR,
|
|
|
|
"Could not open the configuration file '%s'\n", filename);
|
2014-10-19 13:39:06 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
config->first_stream = NULL;
|
|
|
|
config->first_feed = NULL;
|
2014-10-19 14:37:16 +00:00
|
|
|
config->errors = config->warnings = 0;
|
2014-10-19 13:39:06 +00:00
|
|
|
|
2014-12-05 23:38:30 +00:00
|
|
|
last_stream = &config->first_stream;
|
|
|
|
last_feed = &config->first_feed;
|
|
|
|
|
|
|
|
config->line_num = 0;
|
|
|
|
while (fgets(line, sizeof(line), f) != NULL) {
|
2014-11-17 01:23:22 +00:00
|
|
|
config->line_num++;
|
2014-10-19 13:39:06 +00:00
|
|
|
p = line;
|
|
|
|
while (av_isspace(*p))
|
|
|
|
p++;
|
|
|
|
if (*p == '\0' || *p == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ffserver_get_arg(cmd, sizeof(cmd), &p);
|
|
|
|
|
2014-10-19 14:37:16 +00:00
|
|
|
if (feed || !av_strcasecmp(cmd, "<Feed")) {
|
|
|
|
int opening = !av_strcasecmp(cmd, "<Feed");
|
|
|
|
if (opening && (stream || feed || redirect)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
ERROR("Already in a tag\n");
|
|
|
|
} else {
|
2014-12-05 23:38:30 +00:00
|
|
|
ret = ffserver_parse_config_feed(config, cmd, &p, &feed);
|
|
|
|
if (ret < 0)
|
2014-10-19 13:39:06 +00:00
|
|
|
break;
|
2014-10-19 14:37:16 +00:00
|
|
|
if (opening) {
|
2014-12-05 23:38:30 +00:00
|
|
|
/* add in stream & feed list */
|
2014-10-19 14:37:16 +00:00
|
|
|
*last_stream = feed;
|
|
|
|
*last_feed = feed;
|
2014-12-05 23:38:30 +00:00
|
|
|
last_stream = &feed->next;
|
2014-10-19 14:37:16 +00:00
|
|
|
last_feed = &feed->next_feed;
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (stream || !av_strcasecmp(cmd, "<Stream")) {
|
|
|
|
int opening = !av_strcasecmp(cmd, "<Stream");
|
|
|
|
if (opening && (stream || feed || redirect)) {
|
2014-10-19 13:39:06 +00:00
|
|
|
ERROR("Already in a tag\n");
|
|
|
|
} else {
|
2014-12-05 23:38:30 +00:00
|
|
|
ret = ffserver_parse_config_stream(config, cmd, &p, &stream);
|
|
|
|
if (ret < 0)
|
2014-10-19 14:37:16 +00:00
|
|
|
break;
|
|
|
|
if (opening) {
|
|
|
|
/* add in stream list */
|
|
|
|
*last_stream = stream;
|
|
|
|
last_stream = &stream->next;
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
} else if (redirect || !av_strcasecmp(cmd, "<Redirect")) {
|
|
|
|
int opening = !av_strcasecmp(cmd, "<Redirect");
|
|
|
|
if (opening && (stream || feed || redirect))
|
2014-10-19 13:39:06 +00:00
|
|
|
ERROR("Already in a tag\n");
|
2014-10-19 14:37:16 +00:00
|
|
|
else {
|
2014-12-05 23:38:30 +00:00
|
|
|
ret = ffserver_parse_config_redirect(config, cmd, &p,
|
|
|
|
&redirect);
|
|
|
|
if (ret < 0)
|
2014-10-19 14:37:16 +00:00
|
|
|
break;
|
|
|
|
if (opening) {
|
|
|
|
/* add in stream list */
|
|
|
|
*last_stream = redirect;
|
|
|
|
last_stream = &redirect->next;
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-11-17 01:23:22 +00:00
|
|
|
ffserver_parse_config_global(config, cmd, &p);
|
2014-10-19 13:39:06 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-08 18:17:48 +00:00
|
|
|
if (stream || feed || redirect)
|
2014-12-08 17:12:36 +00:00
|
|
|
ERROR("Missing closing </%s> tag\n",
|
|
|
|
stream ? "Stream" : (feed ? "Feed" : "Redirect"));
|
2014-10-19 13:39:06 +00:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2014-10-19 14:37:16 +00:00
|
|
|
if (config->errors)
|
2014-10-19 13:39:06 +00:00
|
|
|
return AVERROR(EINVAL);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2014-10-19 14:37:16 +00:00
|
|
|
|
|
|
|
#undef ERROR
|
|
|
|
#undef WARNING
|
2014-11-19 23:28:03 +00:00
|
|
|
|
|
|
|
void ffserver_free_child_args(void *argsp)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char **args;
|
|
|
|
if (!argsp)
|
|
|
|
return;
|
|
|
|
args = *(char ***)argsp;
|
|
|
|
if (!args)
|
|
|
|
return;
|
|
|
|
for (i = 0; i < MAX_CHILD_ARGS; i++)
|
|
|
|
av_free(args[i]);
|
|
|
|
av_freep(argsp);
|
|
|
|
}
|