From d1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Fri, 2 Mar 2012 16:15:31 -0500
Subject: examples: fixing synthesizer examples to use new block name.

---
 gnuradio-examples/python/pfb/reconstruction.py | 2 +-
 gnuradio-examples/python/pfb/synth_filter.py   | 2 +-
 gnuradio-examples/python/pfb/synth_to_chan.py  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

(limited to 'gnuradio-examples/python')

diff --git a/gnuradio-examples/python/pfb/reconstruction.py b/gnuradio-examples/python/pfb/reconstruction.py
index 2b6f9a831a..c7909f7a56 100755
--- a/gnuradio-examples/python/pfb/reconstruction.py
+++ b/gnuradio-examples/python/pfb/reconstruction.py
@@ -39,7 +39,7 @@ def main():
     
     # Put the pieces back together again
     syn_taps = [nchans*t for t in proto_taps]
-    synthesizer = gr.pfb_synthesis_filterbank_ccf(nchans, syn_taps, True)
+    synthesizer = gr.pfb_synthesizer_ccf(nchans, syn_taps, True)
     src_snk = gr.vector_sink_c()
     snk = gr.vector_sink_c()
 
diff --git a/gnuradio-examples/python/pfb/synth_filter.py b/gnuradio-examples/python/pfb/synth_filter.py
index 074d9cb2c6..a91edfebf8 100755
--- a/gnuradio-examples/python/pfb/synth_filter.py
+++ b/gnuradio-examples/python/pfb/synth_filter.py
@@ -50,7 +50,7 @@ def main():
     taps = gr.firdes.low_pass_2(len(freqs), fs, fs/float(nchans)/2, 100, 100)
     print "Num. Taps = %d (taps per filter = %d)" % (len(taps), 
                                                      len(taps)/nchans)
-    filtbank = gr.pfb_synthesis_filterbank_ccf(nchans, taps)
+    filtbank = gr.pfb_synthesizer_ccf(nchans, taps)
 
     head = gr.head(gr.sizeof_gr_complex, N)
     snk = gr.vector_sink_c()
diff --git a/gnuradio-examples/python/pfb/synth_to_chan.py b/gnuradio-examples/python/pfb/synth_to_chan.py
index 7e454d9035..c6c80b2f85 100755
--- a/gnuradio-examples/python/pfb/synth_to_chan.py
+++ b/gnuradio-examples/python/pfb/synth_to_chan.py
@@ -56,7 +56,7 @@ def main():
     chtaps = gr.firdes.low_pass_2(len(freqs), fs, fs/float(nchans)/2, 100, 100)
     print "Channelizer Num. Taps = %d (taps per filter = %d)" % (len(chtaps), 
                                                                  len(chtaps)/nchans)
-    filtbank = gr.pfb_synthesis_filterbank_ccf(nchans, syntaps)
+    filtbank = gr.pfb_synthesizer_ccf(nchans, syntaps)
     channelizer = blks2.pfb_channelizer_ccf(nchans, chtaps)
 
     noise_level = 0.01
-- 
cgit v1.2.3