Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-examples / python / audio / test_resampler.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004,2005,2007 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 from gnuradio import gr, gru, blks2
24 from gnuradio import audio
25 from gnuradio.eng_option import eng_option
26 from optparse import OptionParser
27
28
29 class my_top_block(gr.top_block):
30
31     def __init__(self):
32         gr.top_block.__init__(self)
33
34         parser = OptionParser(option_class=eng_option)
35         parser.add_option("-O", "--audio-output", type="string", default="",
36                           help="pcm output device name.  E.g., hw:0,0 or /dev/dsp")
37         parser.add_option("-i", "--input-rate", type="eng_float", default=8000,
38                           help="set input sample rate to RATE (%default)")
39         parser.add_option("-o", "--output-rate", type="eng_float", default=48000,
40                           help="set output sample rate to RATE (%default)")
41         (options, args) = parser.parse_args ()
42         if len(args) != 0:
43             parser.print_help()
44             raise SystemExit, 1
45
46         input_rate = int(options.input_rate)
47         output_rate = int(options.output_rate)
48
49         interp = gru.lcm(input_rate, output_rate) / input_rate
50         decim = gru.lcm(input_rate, output_rate) / output_rate
51
52         print "interp =", interp
53         print "decim  =", decim
54
55         ampl = 0.1
56         src0 = gr.sig_source_f (input_rate, gr.GR_SIN_WAVE, 650, ampl)
57         rr = blks2.rational_resampler_fff(interp, decim)
58         dst = audio.sink (output_rate, options.audio_output)
59         self.connect (src0, rr, (dst, 0))
60
61
62 if __name__ == '__main__':
63     try:
64         my_top_block().run()
65     except KeyboardInterrupt:
66         pass