X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=filter_common.c;h=7ffc50a760fca12b91db898dab9da625d3532a2c;hb=81f6ec36f467795d7f17fcc669395f8a5d1223bb;hp=7c71ff39243a7a63f7026c11726418377790c87e;hpb=8970261c6574f5a46941308ac68a17dc01bbd11f;p=paraslash.git diff --git a/filter_common.c b/filter_common.c index 7c71ff39..7ffc50a7 100644 --- a/filter_common.c +++ b/filter_common.c @@ -9,12 +9,14 @@ #include #include #include +#include #include "para.h" #include "list.h" #include "sched.h" #include "fd.h" #include "ggo.h" +#include "buffer_tree.h" #include "filter.h" #include "error.h" #include "string.h" @@ -273,3 +275,23 @@ void print_filter_helps(int detailed) } } + +/** 640K ought to be enough for everybody ;) */ +#define FILTER_MAX_PENDING (640 * 1024) + +int prepare_filter_node(struct btr_node *btrn, size_t min_len) +{ + size_t iqs; + + if (btr_eof(btrn)) + return -E_FC_EOF; + if (btr_bytes_pending(btrn) > FILTER_MAX_PENDING) + return 0; + iqs = btr_get_input_queue_size(btrn); + if (iqs < min_len && !btr_no_parent(btrn)) + return 0; + assert(iqs != 0); + /* avoid "buffer too small" errors from the decoder */ + btr_merge(btrn, min_len); + return 1; +}