diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-05-13 17:36:10 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-05-17 17:45:15 -0400 |
commit | 5f0247e7cdb7e63e970f009530944e29fb99913c (patch) | |
tree | 69a91cb2635aea8c43841f8797ca8918e4c0d0ab /gr-blocks/lib/deinterleave_impl.h | |
parent | cf84d24e7792aefe8ae7b24536bde23d2ae00770 (diff) |
Revert "blocks: add optional argument to deinterleave and interleave ctors to not set relative rate."
This reverts commit 0c589a7d8f18c9b6f7daf06ecfe2a90e84a004d2.
Not necessary.
Diffstat (limited to 'gr-blocks/lib/deinterleave_impl.h')
-rw-r--r-- | gr-blocks/lib/deinterleave_impl.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gr-blocks/lib/deinterleave_impl.h b/gr-blocks/lib/deinterleave_impl.h index 8ca61e5023..a7a9e0a8fa 100644 --- a/gr-blocks/lib/deinterleave_impl.h +++ b/gr-blocks/lib/deinterleave_impl.h @@ -30,16 +30,15 @@ namespace gr { class BLOCKS_API deinterleave_impl : public deinterleave { - + size_t d_itemsize; unsigned int d_blocksize; unsigned int d_current_output; unsigned int d_noutputs; - bool d_set_rel_rate; + public: - deinterleave_impl(size_t itemsize, unsigned int blocksize, - bool set_rel_rate=true); + deinterleave_impl(size_t itemsize, unsigned int blocksize); bool check_topology(int ninputs, int noutputs); @@ -52,6 +51,6 @@ namespace gr { } /* namespace blocks */ } /* namespace gr */ - + #endif /* INCLUDED_DEINTERLEAVE_IMPL_H */ |