X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audiod.c;h=aefac612b480af2d6f1c857b5225f3d042b68ff4;hp=d7765e21c4224d8ff2419f45521effb62cd50492;hb=4744d937c4160898d1fe151257606430750e580c;hpb=88c5dc601a5d1b194da3102566a3fb97947a6aee diff --git a/audiod.c b/audiod.c index d7765e21..aefac612 100644 --- a/audiod.c +++ b/audiod.c @@ -77,6 +77,12 @@ enum vss_status_flags { VSS_STATUS_FLAG_PLAYING = 2, }; +/** + * The scheduler instance of para_audiod. + * + * This is needed also in audiod_command.c (for the tasks command), so it can + * not be made static. + */ struct sched sched = {.max_fileno = 0}; /** @@ -918,10 +924,6 @@ static int parse_filter_args(void) { int i, j, ret, af_mask; - if (conf.no_default_filters_given) { - PARA_WARNING_LOG("--no_default_filters is deprecated\n"); - PARA_WARNING_LOG("It has no effect and will be removed soon\n"); - } for (i = 0; i < conf.filter_given; i++) { char *arg; ret = parse_stream_command(conf.filter_arg[i], &arg);