diff options
author | jblum | 2009-06-23 20:38:18 +0000 |
---|---|---|
committer | jblum | 2009-06-23 20:38:18 +0000 |
commit | 9988664127b367fa8fee4409f8460673d6f265e1 (patch) | |
tree | 96752c15b7f1447e5e78a7282d1de141f9e0000b /grc/blocks/audio_sink.xml | |
parent | 885e6fe1fd0e06476511c79515f34ffcef50287d (diff) | |
download | gnuradio-9988664127b367fa8fee4409f8460673d6f265e1.tar.gz gnuradio-9988664127b367fa8fee4409f8460673d6f265e1.tar.bz2 gnuradio-9988664127b367fa8fee4409f8460673d6f265e1.zip |
Merging r11186:11273 from grc branch.
Fixes, features, and reorganization for grc.
Minor fixes and features for wxgui forms.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11274 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/blocks/audio_sink.xml')
-rw-r--r-- | grc/blocks/audio_sink.xml | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/grc/blocks/audio_sink.xml b/grc/blocks/audio_sink.xml new file mode 100644 index 000000000..75d583470 --- /dev/null +++ b/grc/blocks/audio_sink.xml @@ -0,0 +1,85 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Audio Sink +################################################### + --> +<block> + <name>Audio Sink</name> + <key>audio_sink</key> + <import>from gnuradio import audio</import> + <make>audio.sink($samp_rate, $device_name, $ok_to_block)</make> + <param> + <name>Sample Rate</name> + <key>samp_rate</key> + <value>32000</value> + <type>int</type> + <option> + <name>16KHz</name> + <key>16000</key> + </option> + <option> + <name>22.05KHz</name> + <key>22050</key> + </option> + <option> + <name>24KHz</name> + <key>24000</key> + </option> + <option> + <name>32KHz</name> + <key>32000</key> + </option> + <option> + <name>44.1KHz</name> + <key>44100</key> + </option> + <option> + <name>48KHz</name> + <key>48000</key> + </option> + </param> + <param> + <name>Device Name</name> + <key>device_name</key> + <value></value> + <type>string</type> + <hide>#if $device_name() then 'none' else 'part'#</hide> + </param> + <param> + <name>OK to Block</name> + <key>ok_to_block</key> + <value>True</value> + <type>enum</type> + <hide>part</hide> + <option> + <name>Yes</name> + <key>True</key> + </option> + <option> + <name>No</name> + <key>False</key> + </option> + </param> + <param> + <name>Num Inputs</name> + <key>num_inputs</key> + <value>1</value> + <type>int</type> + </param> + <check>0 < $num_inputs</check> + <sink> + <name>in</name> + <type>float</type> + <nports>$num_inputs</nports> + </sink> + <doc> +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. + </doc> +</block> |