diff options
Diffstat (limited to 'gr-fec/include/gnuradio/fec/async_decoder.h')
-rw-r--r-- | gr-fec/include/gnuradio/fec/async_decoder.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gr-fec/include/gnuradio/fec/async_decoder.h b/gr-fec/include/gnuradio/fec/async_decoder.h index b68bd7157a..46fa9bef27 100644 --- a/gr-fec/include/gnuradio/fec/async_decoder.h +++ b/gr-fec/include/gnuradio/fec/async_decoder.h @@ -50,12 +50,11 @@ namespace gr { * Build the PDU-based FEC decoder block from an FECAPI decoder object. * * \param my_decoder An FECAPI decoder object child of the generic_decoder class. - * \param input_item_size size of a block of data for the decoder. - * \param output_item_size size of a block of data the decoder will produce. + * \param packed Sets output to packed bytes if true; otherwise, 1 bit per byte + * \param rev_pack If packing bits, should they be reversed? */ static sptr make(generic_decoder::sptr my_decoder, - size_t input_item_size, - size_t output_item_size); + bool packed=false, bool rev_pack=true); virtual int general_work(int noutput_items, gr_vector_int& ninput_items, |