From 294a6fd3b811703329eb15ed91d848c65cc6700e Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Sun, 10 Mar 2013 23:52:51 -0400
Subject: blocks: removing file_sink/source file_descriptor_sink/source form
 core and moved all refs to gr-blocks.

---
 gr-vocoder/examples/cvsd_audio_loopback.py | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

(limited to 'gr-vocoder/examples/cvsd_audio_loopback.py')

diff --git a/gr-vocoder/examples/cvsd_audio_loopback.py b/gr-vocoder/examples/cvsd_audio_loopback.py
index ef4c6ded21..b9385b7dc6 100755
--- a/gr-vocoder/examples/cvsd_audio_loopback.py
+++ b/gr-vocoder/examples/cvsd_audio_loopback.py
@@ -50,15 +50,15 @@ def build_graph():
     tb.connect(enc, dec, s2f, decim, sink_scale, sink)
 
     if 0: # debug
-        tb.conect(src, gr.file_sink(gr.sizeof_float, "source.dat"))
-        tb.conect(src_scale, gr.file_sink(gr.sizeof_float, "src_scale.dat"))
-        tb.conect(interp, gr.file_sink(gr.sizeof_float, "interp.dat"))
-        tb.conect(f2s, gr.file_sink(gr.sizeof_short, "f2s.dat"))
-        tb.conect(enc, gr.file_sink(gr.sizeof_char,  "enc.dat"))
-        tb.conect(dec, gr.file_sink(gr.sizeof_short, "dec.dat"))
-        tb.conect(s2f, gr.file_sink(gr.sizeof_float, "s2f.dat"))
-        tb.conect(decim, gr.file_sink(gr.sizeof_float, "decim.dat"))
-        tb.conect(sink_scale, gr.file_sink(gr.sizeof_float, "sink_scale.dat"))
+        tb.conect(src, blocks.file_sink(gr.sizeof_float, "source.dat"))
+        tb.conect(src_scale, blocks.file_sink(gr.sizeof_float, "src_scale.dat"))
+        tb.conect(interp, blocks.file_sink(gr.sizeof_float, "interp.dat"))
+        tb.conect(f2s, blocks.file_sink(gr.sizeof_short, "f2s.dat"))
+        tb.conect(enc, blocks.file_sink(gr.sizeof_char,  "enc.dat"))
+        tb.conect(dec, blocks.file_sink(gr.sizeof_short, "dec.dat"))
+        tb.conect(s2f, blocks.file_sink(gr.sizeof_float, "s2f.dat"))
+        tb.conect(decim, blocks.file_sink(gr.sizeof_float, "decim.dat"))
+        tb.conect(sink_scale, blocks.file_sink(gr.sizeof_float, "sink_scale.dat"))
 
     return tb
 
-- 
cgit v1.2.3