summaryrefslogtreecommitdiff
path: root/gr-atsc
diff options
context:
space:
mode:
authorA. Maitland Bottoms <bottoms@debian.org>2018-03-27 13:11:43 +0200
committerMarcus Müller <marcus@hostalia.de>2018-03-27 16:58:41 +0200
commit2fc6467668c77dd1068ab4020fd3ffed361fb968 (patch)
treed4b09d99403513118d278a7584e3cf8cb5159042 /gr-atsc
parente4114da02bcea805ade2da074ef9c4f5a4f8f38a (diff)
gr-atsc: slicer: fix declaration of dc so that header file compiles
From the debian patch set
Diffstat (limited to 'gr-atsc')
-rw-r--r--gr-atsc/include/gnuradio/atsc/slicer_agc_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-atsc/include/gnuradio/atsc/slicer_agc_impl.h b/gr-atsc/include/gnuradio/atsc/slicer_agc_impl.h
index d55e744fea..78050af3f3 100644
--- a/gr-atsc/include/gnuradio/atsc/slicer_agc_impl.h
+++ b/gr-atsc/include/gnuradio/atsc/slicer_agc_impl.h
@@ -63,7 +63,7 @@ class ATSC_API atsci_slicer_agc {
static const float REFERENCE = 1.25; // pilot reference value
static const float RATE = 1.0e-5; // adjustment rate
float _gain; // current gain
- gr_single_pole_iir<float,float,float> dc;
+ gr::filter::single_pole_iir<float,float,float> dc;
};
#endif /* _ATSC_SLICER_AGC_H_ */