diff options
Diffstat (limited to 'gr-fec/python')
-rw-r--r-- | gr-fec/python/fec/bindings/decoder_python.cc | 7 | ||||
-rw-r--r-- | gr-fec/python/fec/bindings/encoder_python.cc | 7 |
2 files changed, 0 insertions, 14 deletions
diff --git a/gr-fec/python/fec/bindings/decoder_python.cc b/gr-fec/python/fec/bindings/decoder_python.cc index 4a6e5b6a2b..4eda9cb0d6 100644 --- a/gr-fec/python/fec/bindings/decoder_python.cc +++ b/gr-fec/python/fec/bindings/decoder_python.cc @@ -63,12 +63,5 @@ void bind_decoder(py::module& m) py::arg("noutput"), D(decoder, fixed_rate_noutput_to_ninput)) - - .def("forecast", - &decoder::forecast, - py::arg("noutput_items"), - py::arg("ninput_items_required"), - D(decoder, forecast)) - ; } diff --git a/gr-fec/python/fec/bindings/encoder_python.cc b/gr-fec/python/fec/bindings/encoder_python.cc index e73375551c..05c6ceea5e 100644 --- a/gr-fec/python/fec/bindings/encoder_python.cc +++ b/gr-fec/python/fec/bindings/encoder_python.cc @@ -63,12 +63,5 @@ void bind_encoder(py::module& m) py::arg("noutput"), D(encoder, fixed_rate_noutput_to_ninput)) - - .def("forecast", - &encoder::forecast, - py::arg("noutput_items"), - py::arg("ninput_items_required"), - D(encoder, forecast)) - ; } |