23 #ifndef INCLUDED_DIGITAL_CORR_EST_CC_IMPL_H
24 #define INCLUDED_DIGITAL_CORR_EST_CC_IMPL_H
27 #include <gnuradio/filter/fft_filter.h>
29 using namespace gr::filter;
38 std::vector<gr_complex> d_symbols;
40 unsigned int d_mark_delay;
42 kernel::fft_filter_ccc *d_filter;
49 float sps,
unsigned int mark_delay,
53 std::vector<gr_complex> symbols()
const;
54 void set_symbols(
const std::vector<gr_complex> &symbols);
56 int work(
int noutput_items,
57 gr_vector_const_void_star &input_items,
58 gr_vector_void_star &output_items);
Definition: corr_est_cc_impl.h:34
Correlate stream with a pre-defined sequence and estimate peak.
Definition: corr_est_cc.h:85