write: Rename main_btr() to setup_and_schedule().
[paraslash.git] / alsa_write.c
index 6850221a83d861e04cfcd8254d3114f837013a2e..5965159ed9e50af87401f4f2968d7155439bb568 100644 (file)
@@ -150,10 +150,14 @@ static void alsa_write_pre_select(struct sched *s, struct task *t)
 
        if (ret == 0)
                return;
-       if (!pad)
-               return sched_min_delay(s);
-       if (ret < 0)
-               return sched_request_barrier_or_min_delay(&pad->drain_barrier, s);
+       if (!pad) {
+               sched_min_delay(s);
+               return;
+       }
+       if (ret < 0) {
+               sched_request_barrier_or_min_delay(&pad->drain_barrier, s);
+               return;
+       }
        /*
         * Data is available to be written to the alsa handle.  Compute number
         * of milliseconds until next buffer underrun would occur.
@@ -276,7 +280,6 @@ __malloc static void *alsa_parse_config_or_die(const char *options)
 {
        struct alsa_write_args_info *conf = para_calloc(sizeof(*conf));
 
-       PARA_INFO_LOG("options: %s, %zd\n", options, strcspn(options, " \t"));
        /* exits on errors */
        alsa_cmdline_parser_string(options, conf, "alsa_write");
        return conf;