2 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/opt.h"
23 #include "libavutil/parseutils.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/pixdesc.h"
26 #include "libavutil/avassert.h"
29 #include "ffserver_config.h"
31 #define MAX_CHILD_ARGS 64
33 static int ffserver_save_avoption(const char *opt, const char *arg, int type,
34 FFServerConfig *config);
35 static void vreport_config_error(const char *filename, int line_num,
36 int log_level, int *errors, const char *fmt,
38 static void report_config_error(const char *filename, int line_num,
39 int log_level, int *errors, const char *fmt,
42 #define ERROR(...) report_config_error(config->filename, config->line_num,\
43 AV_LOG_ERROR, &config->errors, __VA_ARGS__)
44 #define WARNING(...) report_config_error(config->filename, config->line_num,\
45 AV_LOG_WARNING, &config->warnings, __VA_ARGS__)
47 /* FIXME: make ffserver work with IPv6 */
48 /* resolve host with also IP address parsing */
49 static int resolve_host(struct in_addr *sin_addr, const char *hostname)
52 if (!ff_inet_aton(hostname, sin_addr)) {
54 struct addrinfo *ai, *cur;
55 struct addrinfo hints = { 0 };
56 hints.ai_family = AF_INET;
57 if (getaddrinfo(hostname, NULL, &hints, &ai))
59 /* getaddrinfo returns a linked list of addrinfo structs.
60 * Even if we set ai_family = AF_INET above, make sure
61 * that the returned one actually is of the correct type. */
62 for (cur = ai; cur; cur = cur->ai_next) {
63 if (cur->ai_family == AF_INET) {
64 *sin_addr = ((struct sockaddr_in *)cur->ai_addr)->sin_addr;
73 hp = gethostbyname(hostname);
76 memcpy(sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
82 void ffserver_get_arg(char *buf, int buf_size, const char **pp)
91 while (av_isspace(*p)) p++;
93 if (*p == '\"' || *p == '\'')
97 if (quote && *p == quote || !quote && av_isspace(*p))
99 if ((q - buf) < buf_size - 1)
105 if (quote && *p == quote)
110 void ffserver_parse_acl_row(FFServerStream *stream, FFServerStream* feed,
111 FFServerIPAddressACL *ext_acl,
112 const char *p, const char *filename, int line_num)
115 FFServerIPAddressACL acl;
116 FFServerIPAddressACL *nacl;
117 FFServerIPAddressACL **naclp;
119 ffserver_get_arg(arg, sizeof(arg), &p);
120 if (av_strcasecmp(arg, "allow") == 0)
121 acl.action = IP_ALLOW;
122 else if (av_strcasecmp(arg, "deny") == 0)
123 acl.action = IP_DENY;
125 fprintf(stderr, "%s:%d: ACL action '%s' should be ALLOW or DENY.\n",
126 filename, line_num, arg);
130 ffserver_get_arg(arg, sizeof(arg), &p);
132 if (resolve_host(&acl.first, arg)) {
134 "%s:%d: ACL refers to invalid host or IP address '%s'\n",
135 filename, line_num, arg);
139 acl.last = acl.first;
141 ffserver_get_arg(arg, sizeof(arg), &p);
144 if (resolve_host(&acl.last, arg)) {
146 "%s:%d: ACL refers to invalid host or IP address '%s'\n",
147 filename, line_num, arg);
152 nacl = av_mallocz(sizeof(*nacl));
154 fprintf(stderr, "Failed to allocate FFServerIPAddressACL\n");
164 naclp = &stream->acl;
170 fprintf(stderr, "%s:%d: ACL found not in <Stream> or <Feed>\n",
175 naclp = &(*naclp)->next;
186 /* add a codec and set the default parameters */
187 static void add_codec(FFServerStream *stream, AVCodecContext *av,
188 FFServerConfig *config)
191 AVDictionary **opts, *recommended = NULL;
194 if(stream->nb_streams >= FF_ARRAY_ELEMS(stream->streams))
197 opts = av->codec_type == AVMEDIA_TYPE_AUDIO ?
198 &config->audio_opts : &config->video_opts;
199 av_dict_copy(&recommended, *opts, 0);
200 av_opt_set_dict2(av->priv_data, opts, AV_OPT_SEARCH_CHILDREN);
201 av_opt_set_dict2(av, opts, AV_OPT_SEARCH_CHILDREN);
203 if (av_dict_count(*opts))
204 av_log(NULL, AV_LOG_WARNING,
205 "Something is wrong, %d options are not set!\n",
206 av_dict_count(*opts));
208 if (!config->stream_use_defaults) {
209 switch(av->codec_type) {
210 case AVMEDIA_TYPE_AUDIO:
211 if (av->bit_rate == 0)
212 report_config_error(config->filename, config->line_num,
213 AV_LOG_ERROR, &config->errors,
214 "audio bit rate is not set\n");
215 if (av->sample_rate == 0)
216 report_config_error(config->filename, config->line_num,
217 AV_LOG_ERROR, &config->errors,
218 "audio sample rate is not set\n");
220 case AVMEDIA_TYPE_VIDEO:
221 if (av->width == 0 || av->height == 0)
222 report_config_error(config->filename, config->line_num,
223 AV_LOG_ERROR, &config->errors,
224 "video size is not set\n");
232 /* stream_use_defaults = true */
234 /* compute default parameters */
235 switch(av->codec_type) {
236 case AVMEDIA_TYPE_AUDIO:
237 if (!av_dict_get(recommended, "b", NULL, 0)) {
238 av->bit_rate = 64000;
239 av_dict_set_int(&recommended, "b", av->bit_rate, 0);
240 WARNING("Setting default value for audio bit rate = %d. "
241 "Use NoDefaults to disable it.\n",
244 if (!av_dict_get(recommended, "ar", NULL, 0)) {
245 av->sample_rate = 22050;
246 av_dict_set_int(&recommended, "ar", av->sample_rate, 0);
247 WARNING("Setting default value for audio sample rate = %d. "
248 "Use NoDefaults to disable it.\n",
251 if (!av_dict_get(recommended, "ac", NULL, 0)) {
253 av_dict_set_int(&recommended, "ac", av->channels, 0);
254 WARNING("Setting default value for audio channel count = %d. "
255 "Use NoDefaults to disable it.\n",
259 case AVMEDIA_TYPE_VIDEO:
260 if (!av_dict_get(recommended, "b", NULL, 0)) {
261 av->bit_rate = 64000;
262 av_dict_set_int(&recommended, "b", av->bit_rate, 0);
263 WARNING("Setting default value for video bit rate = %d. "
264 "Use NoDefaults to disable it.\n",
267 if (!av_dict_get(recommended, "time_base", NULL, 0)){
268 av->time_base.den = 5;
269 av->time_base.num = 1;
270 av_dict_set(&recommended, "time_base", "1/5", 0);
271 WARNING("Setting default value for video frame rate = %d. "
272 "Use NoDefaults to disable it.\n",
275 if (!av_dict_get(recommended, "video_size", NULL, 0)) {
278 av_dict_set(&recommended, "video_size", "160x128", 0);
279 WARNING("Setting default value for video size = %dx%d. "
280 "Use NoDefaults to disable it.\n",
281 av->width, av->height);
283 /* Bitrate tolerance is less for streaming */
284 if (!av_dict_get(recommended, "bt", NULL, 0)) {
285 av->bit_rate_tolerance = FFMAX(av->bit_rate / 4,
286 (int64_t)av->bit_rate*av->time_base.num/av->time_base.den);
287 av_dict_set_int(&recommended, "bt", av->bit_rate_tolerance, 0);
288 WARNING("Setting default value for video bit rate tolerance = %d. "
289 "Use NoDefaults to disable it.\n",
290 av->bit_rate_tolerance);
293 if (!av_dict_get(recommended, "rc_eq", NULL, 0)) {
294 av->rc_eq = av_strdup("tex^qComp");
295 av_dict_set(&recommended, "rc_eq", "tex^qComp", 0);
296 WARNING("Setting default value for video rate control equation = "
297 "%s. Use NoDefaults to disable it.\n",
300 if (!av_dict_get(recommended, "maxrate", NULL, 0)) {
301 av->rc_max_rate = av->bit_rate * 2;
302 av_dict_set_int(&recommended, "maxrate", av->rc_max_rate, 0);
303 WARNING("Setting default value for video max rate = %d. "
304 "Use NoDefaults to disable it.\n",
308 if (av->rc_max_rate && !av_dict_get(recommended, "bufsize", NULL, 0)) {
309 av->rc_buffer_size = av->rc_max_rate;
310 av_dict_set_int(&recommended, "bufsize", av->rc_buffer_size, 0);
311 WARNING("Setting default value for video buffer size = %d. "
312 "Use NoDefaults to disable it.\n",
321 st = av_mallocz(sizeof(*st));
324 av_dict_get_string(recommended, &enc_config, '=', ',');
325 av_dict_free(&recommended);
326 st->recommended_encoder_configuration = enc_config;
328 st->codecpar = avcodec_parameters_alloc();
329 avcodec_parameters_from_context(st->codecpar, av);
330 stream->streams[stream->nb_streams++] = st;
333 static int ffserver_set_codec(AVCodecContext *ctx, const char *codec_name,
334 FFServerConfig *config)
337 AVCodec *codec = avcodec_find_encoder_by_name(codec_name);
338 if (!codec || codec->type != ctx->codec_type) {
339 report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
341 "Invalid codec name: '%s'\n", codec_name);
344 if (ctx->codec_id == AV_CODEC_ID_NONE && !ctx->priv_data) {
345 if ((ret = avcodec_get_context_defaults3(ctx, codec)) < 0)
349 if (ctx->codec_id != codec->id)
350 report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
352 "Inconsistent configuration: trying to set '%s' "
353 "codec option, but '%s' codec is used previously\n",
354 codec_name, avcodec_get_name(ctx->codec_id));
358 static int ffserver_opt_preset(const char *arg, int type, FFServerConfig *config)
361 char filename[1000], tmp[1000], tmp2[1000], line[1000];
363 AVCodecContext *avctx;
364 const AVCodec *codec;
367 case AV_OPT_FLAG_AUDIO_PARAM:
368 avctx = config->dummy_actx;
370 case AV_OPT_FLAG_VIDEO_PARAM:
371 avctx = config->dummy_vctx;
376 codec = avcodec_find_encoder(avctx->codec_id);
378 if (!(f = get_preset_file(filename, sizeof(filename), arg, 0,
379 codec ? codec->name : NULL))) {
380 av_log(NULL, AV_LOG_ERROR, "File for preset '%s' not found\n", arg);
381 return AVERROR(EINVAL);
385 int e= fscanf(f, "%999[^\n]\n", line) - 1;
386 if(line[0] == '#' && !e)
388 e|= sscanf(line, "%999[^=]=%999[^\n]\n", tmp, tmp2) - 2;
390 av_log(NULL, AV_LOG_ERROR, "%s: Invalid syntax: '%s'\n", filename,
392 ret = AVERROR(EINVAL);
395 if (!strcmp(tmp, "acodec") && avctx->codec_type == AVMEDIA_TYPE_AUDIO ||
396 !strcmp(tmp, "vcodec") && avctx->codec_type == AVMEDIA_TYPE_VIDEO)
398 if (ffserver_set_codec(avctx, tmp2, config) < 0)
400 } else if (!strcmp(tmp, "scodec")) {
401 av_log(NULL, AV_LOG_ERROR, "Subtitles preset found.\n");
402 ret = AVERROR(EINVAL);
404 } else if (ffserver_save_avoption(tmp, tmp2, type, config) < 0)
413 static AVOutputFormat *ffserver_guess_format(const char *short_name,
414 const char *filename,
415 const char *mime_type)
417 AVOutputFormat *fmt = av_guess_format(short_name, filename, mime_type);
420 AVOutputFormat *stream_fmt;
421 char stream_format_name[64];
423 snprintf(stream_format_name, sizeof(stream_format_name), "%s_stream",
425 stream_fmt = av_guess_format(stream_format_name, NULL, NULL);
434 static void vreport_config_error(const char *filename, int line_num,
435 int log_level, int *errors, const char *fmt,
438 av_log(NULL, log_level, "%s:%d: ", filename, line_num);
439 av_vlog(NULL, log_level, fmt, vl);
444 static void report_config_error(const char *filename, int line_num,
445 int log_level, int *errors,
446 const char *fmt, ...)
450 vreport_config_error(filename, line_num, log_level, errors, fmt, vl);
454 static int ffserver_set_int_param(int *dest, const char *value, int factor,
455 int min, int max, FFServerConfig *config,
456 const char *error_msg, ...)
460 if (!value || !value[0])
463 tmp = strtol(value, &tailp, 0);
464 if (tmp < min || tmp > max)
467 if (tmp == INT_MIN || FFABS(tmp) > INT_MAX / FFABS(factor))
471 if (tailp[0] || errno)
479 va_start(vl, error_msg);
480 vreport_config_error(config->filename, config->line_num, AV_LOG_ERROR,
481 &config->errors, error_msg, vl);
484 return AVERROR(EINVAL);
487 static int ffserver_set_float_param(float *dest, const char *value,
488 float factor, float min, float max,
489 FFServerConfig *config,
490 const char *error_msg, ...)
494 if (!value || !value[0])
497 tmp = strtod(value, &tailp);
498 if (tmp < min || tmp > max)
502 if (tailp[0] || errno)
510 va_start(vl, error_msg);
511 vreport_config_error(config->filename, config->line_num, AV_LOG_ERROR,
512 &config->errors, error_msg, vl);
515 return AVERROR(EINVAL);
518 static int ffserver_save_avoption(const char *opt, const char *arg, int type,
519 FFServerConfig *config)
521 static int hinted = 0;
523 AVDictionaryEntry *e;
524 const AVOption *o = NULL;
525 const char *option = NULL;
526 const char *codec_name = NULL;
530 enum AVCodecID guessed_codec_id;
533 case AV_OPT_FLAG_VIDEO_PARAM:
534 ctx = config->dummy_vctx;
535 dict = &config->video_opts;
536 guessed_codec_id = config->guessed_video_codec_id != AV_CODEC_ID_NONE ?
537 config->guessed_video_codec_id : AV_CODEC_ID_H264;
539 case AV_OPT_FLAG_AUDIO_PARAM:
540 ctx = config->dummy_actx;
541 dict = &config->audio_opts;
542 guessed_codec_id = config->guessed_audio_codec_id != AV_CODEC_ID_NONE ?
543 config->guessed_audio_codec_id : AV_CODEC_ID_AAC;
549 if (strchr(opt, ':')) {
550 //explicit private option
551 snprintf(buff, sizeof(buff), "%s", opt);
553 if(!(option = strchr(buff, ':'))){
554 report_config_error(config->filename, config->line_num,
555 AV_LOG_ERROR, &config->errors,
556 "Syntax error. Unmatched ':'\n");
560 buff[option - buff] = '\0';
562 if ((ret = ffserver_set_codec(ctx, codec_name, config)) < 0)
564 if (!ctx->codec || !ctx->priv_data)
570 o = av_opt_find(ctx, option, NULL, type | AV_OPT_FLAG_ENCODING_PARAM,
571 AV_OPT_SEARCH_CHILDREN);
573 (!strcmp(option, "time_base") || !strcmp(option, "pixel_format") ||
574 !strcmp(option, "video_size") || !strcmp(option, "codec_tag")))
575 o = av_opt_find(ctx, option, NULL, 0, 0);
577 report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
578 &config->errors, "Option not found: '%s'\n", opt);
579 if (!hinted && ctx->codec_id == AV_CODEC_ID_NONE) {
581 report_config_error(config->filename, config->line_num,
582 AV_LOG_ERROR, NULL, "If '%s' is a codec private"
583 "option, then prefix it with codec name, for "
584 "example '%s:%s %s' or define codec earlier.\n",
585 opt, avcodec_get_name(guessed_codec_id) ,opt,
588 } else if ((ret = av_opt_set(ctx, option, arg, AV_OPT_SEARCH_CHILDREN)) < 0) {
589 report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
590 &config->errors, "Invalid value for option %s (%s): %s\n", opt,
591 arg, av_err2str(ret));
592 } else if ((e = av_dict_get(*dict, option, NULL, 0))) {
593 if ((o->type == AV_OPT_TYPE_FLAGS) && arg &&
594 (arg[0] == '+' || arg[0] == '-'))
595 return av_dict_set(dict, option, arg, AV_DICT_APPEND);
596 report_config_error(config->filename, config->line_num, AV_LOG_ERROR,
597 &config->errors, "Redeclaring value of option '%s'."
598 "Previous value was: '%s'.\n", opt, e->value);
599 } else if (av_dict_set(dict, option, arg, 0) < 0) {
600 return AVERROR(ENOMEM);
605 static int ffserver_save_avoption_int(const char *opt, int64_t arg,
606 int type, FFServerConfig *config)
609 snprintf(buf, sizeof(buf), "%"PRId64, arg);
610 return ffserver_save_avoption(opt, buf, type, config);
613 static int ffserver_parse_config_global(FFServerConfig *config, const char *cmd,
618 if (!av_strcasecmp(cmd, "Port") || !av_strcasecmp(cmd, "HTTPPort")) {
619 if (!av_strcasecmp(cmd, "Port"))
620 WARNING("Port option is deprecated. Use HTTPPort instead.\n");
621 ffserver_get_arg(arg, sizeof(arg), p);
622 ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
623 "Invalid port: %s\n", arg);
625 WARNING("Trying to use IETF assigned system port: '%d'\n", val);
626 config->http_addr.sin_port = htons(val);
627 } else if (!av_strcasecmp(cmd, "HTTPBindAddress") ||
628 !av_strcasecmp(cmd, "BindAddress")) {
629 if (!av_strcasecmp(cmd, "BindAddress"))
630 WARNING("BindAddress option is deprecated. Use HTTPBindAddress "
632 ffserver_get_arg(arg, sizeof(arg), p);
633 if (resolve_host(&config->http_addr.sin_addr, arg))
634 ERROR("Invalid host/IP address: '%s'\n", arg);
635 } else if (!av_strcasecmp(cmd, "NoDaemon")) {
636 WARNING("NoDaemon option has no effect. You should remove it.\n");
637 } else if (!av_strcasecmp(cmd, "RTSPPort")) {
638 ffserver_get_arg(arg, sizeof(arg), p);
639 ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
640 "Invalid port: %s\n", arg);
641 config->rtsp_addr.sin_port = htons(val);
642 } else if (!av_strcasecmp(cmd, "RTSPBindAddress")) {
643 ffserver_get_arg(arg, sizeof(arg), p);
644 if (resolve_host(&config->rtsp_addr.sin_addr, arg))
645 ERROR("Invalid host/IP address: %s\n", arg);
646 } else if (!av_strcasecmp(cmd, "MaxHTTPConnections")) {
647 ffserver_get_arg(arg, sizeof(arg), p);
648 ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
649 "Invalid MaxHTTPConnections: %s\n", arg);
650 config->nb_max_http_connections = val;
651 if (config->nb_max_connections > config->nb_max_http_connections) {
652 ERROR("Inconsistent configuration: MaxClients(%d) > "
653 "MaxHTTPConnections(%d)\n", config->nb_max_connections,
654 config->nb_max_http_connections);
656 } else if (!av_strcasecmp(cmd, "MaxClients")) {
657 ffserver_get_arg(arg, sizeof(arg), p);
658 ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
659 "Invalid MaxClients: '%s'\n", arg);
660 config->nb_max_connections = val;
661 if (config->nb_max_connections > config->nb_max_http_connections) {
662 ERROR("Inconsistent configuration: MaxClients(%d) > "
663 "MaxHTTPConnections(%d)\n", config->nb_max_connections,
664 config->nb_max_http_connections);
666 } else if (!av_strcasecmp(cmd, "MaxBandwidth")) {
669 ffserver_get_arg(arg, sizeof(arg), p);
671 llval = strtoll(arg, &tailp, 10);
672 if (llval < 10 || llval > 10000000 || tailp[0] || errno)
673 ERROR("Invalid MaxBandwidth: '%s'\n", arg);
675 config->max_bandwidth = llval;
676 } else if (!av_strcasecmp(cmd, "CustomLog")) {
677 if (!config->debug) {
678 ffserver_get_arg(config->logfilename, sizeof(config->logfilename),
681 } else if (!av_strcasecmp(cmd, "LoadModule")) {
682 ERROR("Loadable modules are no longer supported\n");
683 } else if (!av_strcasecmp(cmd, "NoDefaults")) {
684 config->use_defaults = 0;
685 } else if (!av_strcasecmp(cmd, "UseDefaults")) {
686 config->use_defaults = 1;
688 ERROR("Incorrect keyword: '%s'\n", cmd);
692 static int ffserver_parse_config_feed(FFServerConfig *config, const char *cmd,
693 const char **p, FFServerStream **pfeed)
695 FFServerStream *feed;
699 if (!av_strcasecmp(cmd, "<Feed")) {
702 feed = av_mallocz(sizeof(FFServerStream));
704 return AVERROR(ENOMEM);
705 ffserver_get_arg(feed->filename, sizeof(feed->filename), p);
706 q = strrchr(feed->filename, '>');
710 for (s = config->first_feed; s; s = s->next) {
711 if (!strcmp(feed->filename, s->filename))
712 ERROR("Feed '%s' already registered\n", s->filename);
715 feed->fmt = av_guess_format("ffm", NULL, NULL);
716 /* default feed file */
717 snprintf(feed->feed_filename, sizeof(feed->feed_filename),
718 "/tmp/%s.ffm", feed->filename);
719 feed->feed_max_size = 5 * 1024 * 1024;
721 feed->feed = feed; /* self feeding :-) */
726 if (!av_strcasecmp(cmd, "Launch")) {
729 feed->child_argv = av_mallocz_array(MAX_CHILD_ARGS, sizeof(char *));
730 if (!feed->child_argv)
731 return AVERROR(ENOMEM);
732 for (i = 0; i < MAX_CHILD_ARGS - 2; i++) {
733 ffserver_get_arg(arg, sizeof(arg), p);
737 feed->child_argv[i] = av_strdup(arg);
738 if (!feed->child_argv[i])
739 return AVERROR(ENOMEM);
742 feed->child_argv[i] =
743 av_asprintf("http://%s:%d/%s",
744 (config->http_addr.sin_addr.s_addr == INADDR_ANY) ?
745 "127.0.0.1" : inet_ntoa(config->http_addr.sin_addr),
746 ntohs(config->http_addr.sin_port), feed->filename);
747 if (!feed->child_argv[i])
748 return AVERROR(ENOMEM);
749 } else if (!av_strcasecmp(cmd, "ACL")) {
750 ffserver_parse_acl_row(NULL, feed, NULL, *p, config->filename,
752 } else if (!av_strcasecmp(cmd, "File") ||
753 !av_strcasecmp(cmd, "ReadOnlyFile")) {
754 ffserver_get_arg(feed->feed_filename, sizeof(feed->feed_filename), p);
755 feed->readonly = !av_strcasecmp(cmd, "ReadOnlyFile");
756 } else if (!av_strcasecmp(cmd, "Truncate")) {
757 ffserver_get_arg(arg, sizeof(arg), p);
758 /* assume Truncate is true in case no argument is specified */
762 WARNING("Truncate N syntax in configuration file is deprecated. "
763 "Use Truncate alone with no arguments.\n");
764 feed->truncate = strtod(arg, NULL);
766 } else if (!av_strcasecmp(cmd, "FileMaxSize")) {
770 ffserver_get_arg(arg, sizeof(arg), p);
772 fsize = strtod(p1, &p1);
773 switch(av_toupper(*p1)) {
778 fsize *= 1024 * 1024;
781 fsize *= 1024 * 1024 * 1024;
784 ERROR("Invalid file size: '%s'\n", arg);
787 feed->feed_max_size = (int64_t)fsize;
788 if (feed->feed_max_size < FFM_PACKET_SIZE*4) {
789 ERROR("Feed max file size is too small. Must be at least %d.\n",
792 } else if (!av_strcasecmp(cmd, "</Feed>")) {
795 ERROR("Invalid entry '%s' inside <Feed></Feed>\n", cmd);
800 static int ffserver_parse_config_stream(FFServerConfig *config, const char *cmd,
802 FFServerStream **pstream)
804 char arg[1024], arg2[1024];
805 FFServerStream *stream;
811 if (!av_strcasecmp(cmd, "<Stream")) {
814 stream = av_mallocz(sizeof(FFServerStream));
816 return AVERROR(ENOMEM);
817 config->dummy_actx = avcodec_alloc_context3(NULL);
818 config->dummy_vctx = avcodec_alloc_context3(NULL);
819 if (!config->dummy_vctx || !config->dummy_actx) {
821 avcodec_free_context(&config->dummy_vctx);
822 avcodec_free_context(&config->dummy_actx);
823 return AVERROR(ENOMEM);
825 config->dummy_actx->codec_type = AVMEDIA_TYPE_AUDIO;
826 config->dummy_vctx->codec_type = AVMEDIA_TYPE_VIDEO;
827 ffserver_get_arg(stream->filename, sizeof(stream->filename), p);
828 q = strrchr(stream->filename, '>');
832 for (s = config->first_stream; s; s = s->next) {
833 if (!strcmp(stream->filename, s->filename))
834 ERROR("Stream '%s' already registered\n", s->filename);
837 stream->fmt = ffserver_guess_format(NULL, stream->filename, NULL);
839 config->guessed_audio_codec_id = stream->fmt->audio_codec;
840 config->guessed_video_codec_id = stream->fmt->video_codec;
842 config->guessed_audio_codec_id = AV_CODEC_ID_NONE;
843 config->guessed_video_codec_id = AV_CODEC_ID_NONE;
845 config->stream_use_defaults = config->use_defaults;
850 if (!av_strcasecmp(cmd, "Feed")) {
851 FFServerStream *sfeed;
852 ffserver_get_arg(arg, sizeof(arg), p);
853 sfeed = config->first_feed;
855 if (!strcmp(sfeed->filename, arg))
857 sfeed = sfeed->next_feed;
860 ERROR("Feed with name '%s' for stream '%s' is not defined\n", arg,
863 stream->feed = sfeed;
864 } else if (!av_strcasecmp(cmd, "Format")) {
865 ffserver_get_arg(arg, sizeof(arg), p);
866 if (!strcmp(arg, "status")) {
867 stream->stream_type = STREAM_TYPE_STATUS;
870 stream->stream_type = STREAM_TYPE_LIVE;
871 /* JPEG cannot be used here, so use single frame MJPEG */
872 if (!strcmp(arg, "jpeg")) {
873 strcpy(arg, "singlejpeg");
874 stream->single_frame=1;
876 stream->fmt = ffserver_guess_format(arg, NULL, NULL);
878 ERROR("Unknown Format: '%s'\n", arg);
881 config->guessed_audio_codec_id = stream->fmt->audio_codec;
882 config->guessed_video_codec_id = stream->fmt->video_codec;
884 } else if (!av_strcasecmp(cmd, "InputFormat")) {
885 ffserver_get_arg(arg, sizeof(arg), p);
886 stream->ifmt = av_find_input_format(arg);
888 ERROR("Unknown input format: '%s'\n", arg);
889 } else if (!av_strcasecmp(cmd, "FaviconURL")) {
890 if (stream->stream_type == STREAM_TYPE_STATUS)
891 ffserver_get_arg(stream->feed_filename,
892 sizeof(stream->feed_filename), p);
894 ERROR("FaviconURL only permitted for status streams\n");
895 } else if (!av_strcasecmp(cmd, "Author") ||
896 !av_strcasecmp(cmd, "Comment") ||
897 !av_strcasecmp(cmd, "Copyright") ||
898 !av_strcasecmp(cmd, "Title")) {
901 ffserver_get_arg(arg, sizeof(arg), p);
902 for (i = 0; i < strlen(cmd); i++)
903 key[i] = av_tolower(cmd[i]);
905 WARNING("Deprecated '%s' option in configuration file. Use "
906 "'Metadata %s VALUE' instead.\n", cmd, key);
907 if (av_dict_set(&stream->metadata, key, arg, 0) < 0)
909 } else if (!av_strcasecmp(cmd, "Metadata")) {
910 ffserver_get_arg(arg, sizeof(arg), p);
911 ffserver_get_arg(arg2, sizeof(arg2), p);
912 if (av_dict_set(&stream->metadata, arg, arg2, 0) < 0)
914 } else if (!av_strcasecmp(cmd, "Preroll")) {
915 ffserver_get_arg(arg, sizeof(arg), p);
916 stream->prebuffer = atof(arg) * 1000;
917 } else if (!av_strcasecmp(cmd, "StartSendOnKey")) {
918 stream->send_on_key = 1;
919 } else if (!av_strcasecmp(cmd, "AudioCodec")) {
920 ffserver_get_arg(arg, sizeof(arg), p);
921 ffserver_set_codec(config->dummy_actx, arg, config);
922 } else if (!av_strcasecmp(cmd, "VideoCodec")) {
923 ffserver_get_arg(arg, sizeof(arg), p);
924 ffserver_set_codec(config->dummy_vctx, arg, config);
925 } else if (!av_strcasecmp(cmd, "MaxTime")) {
926 ffserver_get_arg(arg, sizeof(arg), p);
927 stream->max_time = atof(arg) * 1000;
928 } else if (!av_strcasecmp(cmd, "AudioBitRate")) {
930 ffserver_get_arg(arg, sizeof(arg), p);
931 ffserver_set_float_param(&f, arg, 1000, -FLT_MAX, FLT_MAX, config,
932 "Invalid %s: '%s'\n", cmd, arg);
933 if (ffserver_save_avoption_int("b", (int64_t)lrintf(f),
934 AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
936 } else if (!av_strcasecmp(cmd, "AudioChannels")) {
937 ffserver_get_arg(arg, sizeof(arg), p);
938 if (ffserver_save_avoption("ac", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
940 } else if (!av_strcasecmp(cmd, "AudioSampleRate")) {
941 ffserver_get_arg(arg, sizeof(arg), p);
942 if (ffserver_save_avoption("ar", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0)
944 } else if (!av_strcasecmp(cmd, "VideoBitRateRange")) {
945 int minrate, maxrate;
947 ffserver_get_arg(arg, sizeof(arg), p);
948 dash = strchr(arg, '-');
952 if (ffserver_set_int_param(&minrate, arg, 1000, 0, INT_MAX, config, "Invalid %s: '%s'", cmd, arg) >= 0 &&
953 ffserver_set_int_param(&maxrate, dash, 1000, 0, INT_MAX, config, "Invalid %s: '%s'", cmd, arg) >= 0) {
954 if (ffserver_save_avoption_int("minrate", minrate, AV_OPT_FLAG_VIDEO_PARAM, config) < 0 ||
955 ffserver_save_avoption_int("maxrate", maxrate, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
959 ERROR("Incorrect format for VideoBitRateRange. It should be "
960 "<min>-<max>: '%s'.\n", arg);
961 } else if (!av_strcasecmp(cmd, "Debug")) {
962 ffserver_get_arg(arg, sizeof(arg), p);
963 if (ffserver_save_avoption("debug", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0 ||
964 ffserver_save_avoption("debug", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
966 } else if (!av_strcasecmp(cmd, "Strict")) {
967 ffserver_get_arg(arg, sizeof(arg), p);
968 if (ffserver_save_avoption("strict", arg, AV_OPT_FLAG_AUDIO_PARAM, config) < 0 ||
969 ffserver_save_avoption("strict", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
971 } else if (!av_strcasecmp(cmd, "VideoBufferSize")) {
972 ffserver_get_arg(arg, sizeof(arg), p);
973 ffserver_set_int_param(&val, arg, 8*1024, 0, INT_MAX, config,
974 "Invalid %s: '%s'", cmd, arg);
975 if (ffserver_save_avoption_int("bufsize", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
977 } else if (!av_strcasecmp(cmd, "VideoBitRateTolerance")) {
978 ffserver_get_arg(arg, sizeof(arg), p);
979 ffserver_set_int_param(&val, arg, 1000, INT_MIN, INT_MAX, config,
980 "Invalid %s: '%s'", cmd, arg);
981 if (ffserver_save_avoption_int("bt", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
983 } else if (!av_strcasecmp(cmd, "VideoBitRate")) {
984 ffserver_get_arg(arg, sizeof(arg), p);
985 ffserver_set_int_param(&val, arg, 1000, INT_MIN, INT_MAX, config,
986 "Invalid %s: '%s'", cmd, arg);
987 if (ffserver_save_avoption_int("b", val, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
989 } else if (!av_strcasecmp(cmd, "VideoSize")) {
991 ffserver_get_arg(arg, sizeof(arg), p);
992 ret = av_parse_video_size(&w, &h, arg);
994 ERROR("Invalid video size '%s'\n", arg);
997 WARNING("Image size is not a multiple of 2\n");
998 if (ffserver_save_avoption("video_size", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1001 } else if (!av_strcasecmp(cmd, "VideoFrameRate")) {
1002 ffserver_get_arg(&arg[2], sizeof(arg) - 2, p);
1003 arg[0] = '1'; arg[1] = '/';
1004 if (ffserver_save_avoption("time_base", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1006 } else if (!av_strcasecmp(cmd, "PixelFormat")) {
1007 enum AVPixelFormat pix_fmt;
1008 ffserver_get_arg(arg, sizeof(arg), p);
1009 pix_fmt = av_get_pix_fmt(arg);
1010 if (pix_fmt == AV_PIX_FMT_NONE)
1011 ERROR("Unknown pixel format: '%s'\n", arg);
1012 else if (ffserver_save_avoption("pixel_format", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1014 } else if (!av_strcasecmp(cmd, "VideoGopSize")) {
1015 ffserver_get_arg(arg, sizeof(arg), p);
1016 if (ffserver_save_avoption("g", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1018 } else if (!av_strcasecmp(cmd, "VideoIntraOnly")) {
1019 if (ffserver_save_avoption("g", "1", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1021 } else if (!av_strcasecmp(cmd, "VideoHighQuality")) {
1022 if (ffserver_save_avoption("mbd", "+bits", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1024 } else if (!av_strcasecmp(cmd, "Video4MotionVector")) {
1025 if (ffserver_save_avoption("mbd", "+bits", AV_OPT_FLAG_VIDEO_PARAM, config) < 0 || //FIXME remove
1026 ffserver_save_avoption("flags", "+mv4", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1028 } else if (!av_strcasecmp(cmd, "AVOptionVideo") ||
1029 !av_strcasecmp(cmd, "AVOptionAudio")) {
1031 ffserver_get_arg(arg, sizeof(arg), p);
1032 ffserver_get_arg(arg2, sizeof(arg2), p);
1033 if (!av_strcasecmp(cmd, "AVOptionVideo"))
1034 ret = ffserver_save_avoption(arg, arg2, AV_OPT_FLAG_VIDEO_PARAM,
1037 ret = ffserver_save_avoption(arg, arg2, AV_OPT_FLAG_AUDIO_PARAM,
1041 } else if (!av_strcasecmp(cmd, "AVPresetVideo") ||
1042 !av_strcasecmp(cmd, "AVPresetAudio")) {
1043 ffserver_get_arg(arg, sizeof(arg), p);
1044 if (!av_strcasecmp(cmd, "AVPresetVideo"))
1045 ffserver_opt_preset(arg, AV_OPT_FLAG_VIDEO_PARAM, config);
1047 ffserver_opt_preset(arg, AV_OPT_FLAG_AUDIO_PARAM, config);
1048 } else if (!av_strcasecmp(cmd, "VideoTag")) {
1049 ffserver_get_arg(arg, sizeof(arg), p);
1050 if (strlen(arg) == 4 &&
1051 ffserver_save_avoption_int("codec_tag",
1052 MKTAG(arg[0], arg[1], arg[2], arg[3]),
1053 AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1055 } else if (!av_strcasecmp(cmd, "BitExact")) {
1056 config->bitexact = 1;
1057 if (ffserver_save_avoption("flags", "+bitexact", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1059 } else if (!av_strcasecmp(cmd, "DctFastint")) {
1060 if (ffserver_save_avoption("dct", "fastint", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1062 } else if (!av_strcasecmp(cmd, "IdctSimple")) {
1063 if (ffserver_save_avoption("idct", "simple", AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1065 } else if (!av_strcasecmp(cmd, "Qscale")) {
1066 ffserver_get_arg(arg, sizeof(arg), p);
1067 ffserver_set_int_param(&val, arg, 0, INT_MIN, INT_MAX, config,
1068 "Invalid Qscale: '%s'\n", arg);
1069 if (ffserver_save_avoption("flags", "+qscale", AV_OPT_FLAG_VIDEO_PARAM, config) < 0 ||
1070 ffserver_save_avoption_int("global_quality", FF_QP2LAMBDA * val,
1071 AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1073 } else if (!av_strcasecmp(cmd, "VideoQDiff")) {
1074 ffserver_get_arg(arg, sizeof(arg), p);
1075 if (ffserver_save_avoption("qdiff", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1077 } else if (!av_strcasecmp(cmd, "VideoQMax")) {
1078 ffserver_get_arg(arg, sizeof(arg), p);
1079 if (ffserver_save_avoption("qmax", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1081 } else if (!av_strcasecmp(cmd, "VideoQMin")) {
1082 ffserver_get_arg(arg, sizeof(arg), p);
1083 if (ffserver_save_avoption("qmin", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1085 } else if (!av_strcasecmp(cmd, "LumiMask")) {
1086 ffserver_get_arg(arg, sizeof(arg), p);
1087 if (ffserver_save_avoption("lumi_mask", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1089 } else if (!av_strcasecmp(cmd, "DarkMask")) {
1090 ffserver_get_arg(arg, sizeof(arg), p);
1091 if (ffserver_save_avoption("dark_mask", arg, AV_OPT_FLAG_VIDEO_PARAM, config) < 0)
1093 } else if (!av_strcasecmp(cmd, "NoVideo")) {
1094 config->no_video = 1;
1095 } else if (!av_strcasecmp(cmd, "NoAudio")) {
1096 config->no_audio = 1;
1097 } else if (!av_strcasecmp(cmd, "ACL")) {
1098 ffserver_parse_acl_row(stream, NULL, NULL, *p, config->filename,
1100 } else if (!av_strcasecmp(cmd, "DynamicACL")) {
1101 ffserver_get_arg(stream->dynamic_acl, sizeof(stream->dynamic_acl), p);
1102 } else if (!av_strcasecmp(cmd, "RTSPOption")) {
1103 ffserver_get_arg(arg, sizeof(arg), p);
1104 av_freep(&stream->rtsp_option);
1105 stream->rtsp_option = av_strdup(arg);
1106 } else if (!av_strcasecmp(cmd, "MulticastAddress")) {
1107 ffserver_get_arg(arg, sizeof(arg), p);
1108 if (resolve_host(&stream->multicast_ip, arg))
1109 ERROR("Invalid host/IP address: '%s'\n", arg);
1110 stream->is_multicast = 1;
1111 stream->loop = 1; /* default is looping */
1112 } else if (!av_strcasecmp(cmd, "MulticastPort")) {
1113 ffserver_get_arg(arg, sizeof(arg), p);
1114 ffserver_set_int_param(&val, arg, 0, 1, 65535, config,
1115 "Invalid MulticastPort: '%s'\n", arg);
1116 stream->multicast_port = val;
1117 } else if (!av_strcasecmp(cmd, "MulticastTTL")) {
1118 ffserver_get_arg(arg, sizeof(arg), p);
1119 ffserver_set_int_param(&val, arg, 0, INT_MIN, INT_MAX, config,
1120 "Invalid MulticastTTL: '%s'\n", arg);
1121 stream->multicast_ttl = val;
1122 } else if (!av_strcasecmp(cmd, "NoLoop")) {
1124 } else if (!av_strcasecmp(cmd, "</Stream>")) {
1125 config->stream_use_defaults &= 1;
1126 if (stream->feed && stream->fmt && strcmp(stream->fmt->name, "ffm")) {
1127 if (config->dummy_actx->codec_id == AV_CODEC_ID_NONE)
1128 config->dummy_actx->codec_id = config->guessed_audio_codec_id;
1129 if (!config->no_audio &&
1130 config->dummy_actx->codec_id != AV_CODEC_ID_NONE) {
1131 AVCodecContext *audio_enc = avcodec_alloc_context3(avcodec_find_encoder(config->dummy_actx->codec_id));
1132 add_codec(stream, audio_enc, config);
1134 if (config->dummy_vctx->codec_id == AV_CODEC_ID_NONE)
1135 config->dummy_vctx->codec_id = config->guessed_video_codec_id;
1136 if (!config->no_video &&
1137 config->dummy_vctx->codec_id != AV_CODEC_ID_NONE) {
1138 AVCodecContext *video_enc = avcodec_alloc_context3(avcodec_find_encoder(config->dummy_vctx->codec_id));
1139 add_codec(stream, video_enc, config);
1142 av_dict_free(&config->video_opts);
1143 av_dict_free(&config->audio_opts);
1144 avcodec_free_context(&config->dummy_vctx);
1145 avcodec_free_context(&config->dummy_actx);
1146 config->no_video = 0;
1147 config->no_audio = 0;
1149 } else if (!av_strcasecmp(cmd, "File") ||
1150 !av_strcasecmp(cmd, "ReadOnlyFile")) {
1151 ffserver_get_arg(stream->feed_filename, sizeof(stream->feed_filename),
1153 } else if (!av_strcasecmp(cmd, "UseDefaults")) {
1154 if (config->stream_use_defaults > 1)
1155 WARNING("Multiple UseDefaults/NoDefaults entries.\n");
1156 config->stream_use_defaults = 3;
1157 } else if (!av_strcasecmp(cmd, "NoDefaults")) {
1158 if (config->stream_use_defaults > 1)
1159 WARNING("Multiple UseDefaults/NoDefaults entries.\n");
1160 config->stream_use_defaults = 2;
1162 ERROR("Invalid entry '%s' inside <Stream></Stream>\n", cmd);
1166 av_log(NULL, AV_LOG_ERROR, "Out of memory. Aborting.\n");
1167 av_dict_free(&config->video_opts);
1168 av_dict_free(&config->audio_opts);
1169 avcodec_free_context(&config->dummy_vctx);
1170 avcodec_free_context(&config->dummy_actx);
1171 return AVERROR(ENOMEM);
1174 static int ffserver_parse_config_redirect(FFServerConfig *config,
1175 const char *cmd, const char **p,
1176 FFServerStream **predirect)
1178 FFServerStream *redirect;
1179 av_assert0(predirect);
1180 redirect = *predirect;
1182 if (!av_strcasecmp(cmd, "<Redirect")) {
1184 redirect = av_mallocz(sizeof(FFServerStream));
1186 return AVERROR(ENOMEM);
1188 ffserver_get_arg(redirect->filename, sizeof(redirect->filename), p);
1189 q = strrchr(redirect->filename, '>');
1192 redirect->stream_type = STREAM_TYPE_REDIRECT;
1193 *predirect = redirect;
1196 av_assert0(redirect);
1197 if (!av_strcasecmp(cmd, "URL")) {
1198 ffserver_get_arg(redirect->feed_filename,
1199 sizeof(redirect->feed_filename), p);
1200 } else if (!av_strcasecmp(cmd, "</Redirect>")) {
1201 if (!redirect->feed_filename[0])
1202 ERROR("No URL found for <Redirect>\n");
1205 ERROR("Invalid entry '%s' inside <Redirect></Redirect>\n", cmd);
1210 int ffserver_parse_ffconfig(const char *filename, FFServerConfig *config)
1216 FFServerStream **last_stream, *stream = NULL, *redirect = NULL;
1217 FFServerStream **last_feed, *feed = NULL;
1222 f = fopen(filename, "r");
1224 ret = AVERROR(errno);
1225 av_log(NULL, AV_LOG_ERROR,
1226 "Could not open the configuration file '%s'\n", filename);
1230 config->first_stream = NULL;
1231 config->first_feed = NULL;
1232 config->errors = config->warnings = 0;
1234 last_stream = &config->first_stream;
1235 last_feed = &config->first_feed;
1237 config->line_num = 0;
1238 while (fgets(line, sizeof(line), f) != NULL) {
1241 while (av_isspace(*p))
1243 if (*p == '\0' || *p == '#')
1246 ffserver_get_arg(cmd, sizeof(cmd), &p);
1248 if (feed || !av_strcasecmp(cmd, "<Feed")) {
1249 int opening = !av_strcasecmp(cmd, "<Feed");
1250 if (opening && (stream || feed || redirect)) {
1251 ERROR("Already in a tag\n");
1253 ret = ffserver_parse_config_feed(config, cmd, &p, &feed);
1257 /* add in stream & feed list */
1258 *last_stream = feed;
1260 last_stream = &feed->next;
1261 last_feed = &feed->next_feed;
1264 } else if (stream || !av_strcasecmp(cmd, "<Stream")) {
1265 int opening = !av_strcasecmp(cmd, "<Stream");
1266 if (opening && (stream || feed || redirect)) {
1267 ERROR("Already in a tag\n");
1269 ret = ffserver_parse_config_stream(config, cmd, &p, &stream);
1273 /* add in stream list */
1274 *last_stream = stream;
1275 last_stream = &stream->next;
1278 } else if (redirect || !av_strcasecmp(cmd, "<Redirect")) {
1279 int opening = !av_strcasecmp(cmd, "<Redirect");
1280 if (opening && (stream || feed || redirect))
1281 ERROR("Already in a tag\n");
1283 ret = ffserver_parse_config_redirect(config, cmd, &p,
1288 /* add in stream list */
1289 *last_stream = redirect;
1290 last_stream = &redirect->next;
1294 ffserver_parse_config_global(config, cmd, &p);
1297 if (stream || feed || redirect)
1298 ERROR("Missing closing </%s> tag\n",
1299 stream ? "Stream" : (feed ? "Feed" : "Redirect"));
1305 return AVERROR(EINVAL);
1313 void ffserver_free_child_args(void *argsp)
1319 args = *(char ***)argsp;
1322 for (i = 0; i < MAX_CHILD_ARGS; i++)