diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2019-08-10 10:49:59 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-10 19:09:13 +0200 |
commit | a6e5672d7e570e32962cd1669cbfe577031d018e (patch) | |
tree | e4260f0bf9dd1e67ff492f765a6eceaf0b570088 /gr-vocoder/examples | |
parent | 421c243765f40353934208c949b2af2f7e3428ba (diff) |
Fix for source typos
Diffstat (limited to 'gr-vocoder/examples')
-rw-r--r-- | gr-vocoder/examples/cvsd_audio_loopback.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gr-vocoder/examples/cvsd_audio_loopback.py b/gr-vocoder/examples/cvsd_audio_loopback.py index 15074d62cd..0fc7cc5577 100644 --- a/gr-vocoder/examples/cvsd_audio_loopback.py +++ b/gr-vocoder/examples/cvsd_audio_loopback.py @@ -52,15 +52,15 @@ def build_graph(): tb.connect(enc, dec, s2f, decim, sink_scale, sink) if 0: # debug - 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")) + tb.connect(src, blocks.file_sink(gr.sizeof_float, "source.dat")) + tb.connect(src_scale, blocks.file_sink(gr.sizeof_float, "src_scale.dat")) + tb.connect(interp, blocks.file_sink(gr.sizeof_float, "interp.dat")) + tb.connect(f2s, blocks.file_sink(gr.sizeof_short, "f2s.dat")) + tb.connect(enc, blocks.file_sink(gr.sizeof_char, "enc.dat")) + tb.connect(dec, blocks.file_sink(gr.sizeof_short, "dec.dat")) + tb.connect(s2f, blocks.file_sink(gr.sizeof_float, "s2f.dat")) + tb.connect(decim, blocks.file_sink(gr.sizeof_float, "decim.dat")) + tb.connect(sink_scale, blocks.file_sink(gr.sizeof_float, "sink_scale.dat")) return tb |