Imported Upstream version 3.0.4
[debian/gnuradio] / gr-audio-windows / src / audio_windows_sink.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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 #ifndef INCLUDED_AUDIO_WINDOWS_SINK_H
24 #define INCLUDED_AUDIO_WINDOWS_SINK_H
25
26 #define WIN32_LEAN_AND_MEAN
27 #define NOMINMAX                // stops windef.h defining max/min under cygwin
28
29 #include <windows.h>
30 #include <mmsystem.h>
31
32 #include <gr_sync_block.h>
33 #include <string>
34
35
36 class audio_windows_sink;
37 typedef boost::shared_ptr <audio_windows_sink> audio_windows_sink_sptr;
38
39 audio_windows_sink_sptr
40 audio_windows_make_sink (int sampling_freq, const std::string dev = "");
41
42 /*!
43  * \brief audio sink using winmm mmsystem (win32 only)
44  *
45  * input signature is one or two streams of floats.
46  * Input samples must be in the range [-1,1].
47  */
48
49 class audio_windows_sink : public gr_sync_block
50 {
51   friend
52     audio_windows_sink_sptr
53   audio_windows_make_sink (int sampling_freq, const std::string device_name);
54
55   int           d_sampling_freq;
56   std::string   d_device_name;
57   int           d_fd;
58   short        *d_buffer;
59   int           d_chunk_size;
60   HWAVEOUT      d_h_waveout;
61   HGLOBAL       d_h_wave_hdr;
62   LPWAVEHDR     d_lp_wave_hdr;
63   HANDLE        d_wave_write_event;
64
65 protected:
66   int
67   string_to_int (const std::string & s);
68   audio_windows_sink (int sampling_freq, const std::string device_name = "");
69   int
70   open_waveout_device (void);
71   int
72   write_waveout (HPSTR lp_data, DWORD dw_data_size);
73
74 public:
75   ~audio_windows_sink ();
76
77   int
78   work (int noutput_items,
79         gr_vector_const_void_star & input_items,
80         gr_vector_void_star & output_items);
81 };
82
83 #endif /* INCLUDED_AUDIO_WINDOWS_SINK_H */