Imported Upstream version 3.0
[debian/gnuradio] / gr-audio-osx / src / audio_osx.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2006 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 2, 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 %feature("autodoc","1");
24
25 %include "exception.i"
26 %import "gnuradio.i"                            // the common stuff
27
28 %{
29 #include "gnuradio_swig_bug_workaround.h"       // mandatory bug fix
30 #include "audio_osx_sink.h"
31 #include "audio_osx_source.h"
32 #include <stdexcept>
33 %}
34
35 // ----------------------------------------------------------------
36
37 GR_SWIG_BLOCK_MAGIC(audio_osx,sink)
38
39 audio_osx_sink_sptr
40 audio_osx_make_sink (int sample_rate = 44100,
41                      const std::string device_name = "2",
42                      bool do_block = TRUE,
43                      int channel_config = -1,
44                      int max_sample_count = -1
45                      ) throw (std::runtime_error);
46
47 class audio_osx_sink : public gr_sync_block {
48  protected:
49   audio_osx_sink (int sample_rate = 44100,
50                   const std::string device_name = "2",
51                   bool do_block = TRUE,
52                   int channel_config = -1,
53                   int max_sample_count = -1);
54
55  public:
56   ~audio_osx_sink ();
57
58   bool start ();
59   bool stop ();
60
61   int work (int noutput_items,
62             gr_vector_const_void_star &input_items,
63             gr_vector_void_star &output_items);
64 };
65
66 // ----------------------------------------------------------------
67
68 GR_SWIG_BLOCK_MAGIC(audio_osx,source)
69
70 audio_osx_source_sptr
71 audio_osx_make_source (int sample_rate = 44100,
72                      const std::string device_name = "2",
73                      bool do_block = TRUE,
74                      int channel_config = -1,
75                      int max_sample_count = -1
76                      ) throw (std::runtime_error);
77
78 class audio_osx_source : public gr_sync_block {
79  protected:
80   audio_osx_source (int sample_rate = 44100,
81                   const std::string device_name = "2",
82                   bool do_block = TRUE,
83                   int channel_config = -1,
84                   int max_sample_count = -1);
85
86  public:
87   ~audio_osx_source ();
88   
89   bool start ();
90   bool stop ();
91
92   int work (int noutput_items,
93             gr_vector_const_void_star &input_items,
94             gr_vector_void_star &output_items);
95 };