trivial loglevel adjustements
[paraslash.git] / filter_chain.c
index 17f67058df88c9e128b7afdb5a2a3c0f801e90ad..4114ca7743e4987386d6a31bd4cf11809eb9327f 100644 (file)
@@ -122,7 +122,9 @@ void filter_pre_select(__a_unused struct sched *s, struct task *t)
        int conv, conv_total = 0;
 
        t->ret = -E_FC_EOF;
-       if (*fc->output_eof)
+       if (fc->output_eof && *fc->output_eof)
+               goto err_out;
+       if (fc->input_eof && *fc->input_eof)
                goto err_out;
 again:
        ib = fc->inbuf;
@@ -141,7 +143,8 @@ again:
                        *loaded -= t->ret;
                        conv += t->ret;
                        if (*loaded && t->ret) {
-                               PARA_INFO_LOG("moving %zd bytes in input buffer for %s filter\n",
+                               PARA_DEBUG_LOG("moving %zd bytes in input "
+                                       "buffer for %s filter\n",
                                        *loaded,  fn->filter->name);
                                memmove(ib, ib + t->ret, *loaded);
                        }
@@ -150,8 +153,10 @@ again:
                loaded = &fn->loaded;
        }
        conv_total += conv;
-       PARA_INFO_LOG("eof (in/out/fc): %d/%d/%d out_loaded: %d, conv: %d, conv_total: %d\n", *fc->input_eof,
-               *fc->output_eof, fc->eof, *fc->out_loaded, conv, conv_total);
+       PARA_DEBUG_LOG("eof (in/out/fc): %d/%d/%d out_loaded: %d, "
+               "conv: %d, conv_total: %d\n", *fc->input_eof,
+               fc->output_eof? *fc->output_eof : -42,
+               fc->eof, *fc->out_loaded, conv, conv_total);
        if (conv)
                goto again;
        t->ret = 1;