From 0644b009591f4c63ed05a8095a0c54c1501bac71 Mon Sep 17 00:00:00 2001
From: Josh Blum
Date: Wed, 9 Mar 2011 11:44:35 -0800
Subject: audio: moved the grc audio blocks into gr-audio dir
---
grc/blocks/Makefile.am | 2 --
grc/blocks/audio_sink.xml | 85 ---------------------------------------------
grc/blocks/audio_source.xml | 85 ---------------------------------------------
grc/blocks/block_tree.xml | 2 --
4 files changed, 174 deletions(-)
delete mode 100644 grc/blocks/audio_sink.xml
delete mode 100644 grc/blocks/audio_source.xml
(limited to 'grc')
diff --git a/grc/blocks/Makefile.am b/grc/blocks/Makefile.am
index 18420a013..c218a59c2 100644
--- a/grc/blocks/Makefile.am
+++ b/grc/blocks/Makefile.am
@@ -24,8 +24,6 @@ include $(top_srcdir)/Makefile.common
ourdatadir = $(grc_blocksdir)
dist_ourdata_DATA = \
block_tree.xml \
- audio_sink.xml \
- audio_source.xml \
band_pass_filter.xml \
band_reject_filter.xml \
blks2_am_demod_cf.xml \
diff --git a/grc/blocks/audio_sink.xml b/grc/blocks/audio_sink.xml
deleted file mode 100644
index 75d583470..000000000
--- a/grc/blocks/audio_sink.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
- Audio Sink
- audio_sink
- from gnuradio import audio
- audio.sink($samp_rate, $device_name, $ok_to_block)
-
- Sample Rate
- samp_rate
- 32000
- int
-
-
-
-
-
-
-
-
- Device Name
- device_name
-
- string
- #if $device_name() then 'none' else 'part'#
-
-
- OK to Block
- ok_to_block
- True
- enum
- part
-
-
-
-
- Num Inputs
- num_inputs
- 1
- int
-
- 0 < $num_inputs
-
- in
- float
- $num_inputs
-
-
-Not all sampling rates will be supported by your hardware.
-
-Leave the device name blank to choose deafult audio device. \
-ALSA users with audio trouble may try setting the device name to plughw:0,0
-
-The audio sink can have multiple inputs depending upon your hardware. \
-For example, set the inputs to 2 for stereo audio.
-
-
diff --git a/grc/blocks/audio_source.xml b/grc/blocks/audio_source.xml
deleted file mode 100644
index 1f5d1033e..000000000
--- a/grc/blocks/audio_source.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
- Audio Source
- audio_source
- from gnuradio import audio
- audio.source($samp_rate, $device_name, $ok_to_block)
-
- Sample Rate
- samp_rate
- 32000
- int
-
-
-
-
-
-
-
-
- Device Name
- device_name
-
- string
- #if $device_name() then 'none' else 'part'#
-
-
- OK to Block
- ok_to_block
- True
- enum
- part
-
-
-
-
- Num Outputs
- num_outputs
- 1
- int
-
- 0 < $num_outputs
-
- out
- float
- $num_outputs
-
-
-Not all sampling rates will be supported by your hardware.
-
-Leave the device name blank to choose deafult audio device. \
-ALSA users with audio trouble may try setting the device name to plughw:0,0
-
-The audio source can have multiple outputs depending upon your hardware. \
-For example, set the outputs to 2 for stereo audio.
-
-
diff --git a/grc/blocks/block_tree.xml b/grc/blocks/block_tree.xml
index 610a88102..82b9e58f3 100644
--- a/grc/blocks/block_tree.xml
+++ b/grc/blocks/block_tree.xml
@@ -18,7 +18,6 @@
gr_file_source
blks2_tcp_source
gr_udp_source
- audio_source
gr_wavfile_source
gr_message_source
pad_source
@@ -32,7 +31,6 @@
gr_file_sink
blks2_tcp_sink
gr_udp_sink
- audio_sink
gr_wavfile_sink
gr_message_sink
pad_sink
--
cgit