summaryrefslogtreecommitdiff
path: root/gr-fec
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2015-01-05 12:07:32 -0500
committerTom Rondeau <tom@trondeau.com>2015-01-05 12:07:32 -0500
commit88631c6dc15eda8ce9429d2ab241e9f9dc5403fe (patch)
treec5d465367a5baa8783dc02242161820319890bb2 /gr-fec
parentda122a977c9afe60f9696c5b0e452078ba75328d (diff)
fec: no need for this forecasting.
Addresses issue #754 as it caused non-deterministic issues with limited input.
Diffstat (limited to 'gr-fec')
-rw-r--r--gr-fec/lib/ber_bf_impl.cc8
-rw-r--r--gr-fec/lib/ber_bf_impl.h3
2 files changed, 0 insertions, 11 deletions
diff --git a/gr-fec/lib/ber_bf_impl.cc b/gr-fec/lib/ber_bf_impl.cc
index a7c38700d6..ebc19bc1c2 100644
--- a/gr-fec/lib/ber_bf_impl.cc
+++ b/gr-fec/lib/ber_bf_impl.cc
@@ -52,14 +52,6 @@ namespace gr {
{
}
- void
- ber_bf_impl::forecast(int noutput_items,
- gr_vector_int& ninput_items_required)
- {
- ninput_items_required[0] = 1<<10 * noutput_items;
- ninput_items_required[1] = 1<<10 * noutput_items;
- }
-
int
ber_bf_impl::general_work(int noutput_items,
gr_vector_int& ninput_items,
diff --git a/gr-fec/lib/ber_bf_impl.h b/gr-fec/lib/ber_bf_impl.h
index c7faf123ab..f1a7bfc7f4 100644
--- a/gr-fec/lib/ber_bf_impl.h
+++ b/gr-fec/lib/ber_bf_impl.h
@@ -45,9 +45,6 @@ namespace gr {
gr_vector_int& ninput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
-
- void forecast(int noutput_items,
- gr_vector_int& ninput_items_required);
};
} /* namespace fec */