summaryrefslogtreecommitdiff
path: root/gr-audio/lib/windows/windows_sink.h
blob: 9a15c33ed93a423070c6689506e0bfe23e930809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* -*- c++ -*- */
/*
 * Copyright 2004-2011,2013 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_AUDIO_WINDOWS_SINK_H
#define INCLUDED_AUDIO_WINDOWS_SINK_H

#define WIN32_LEAN_AND_MEAN
#define NOMINMAX // stops windef.h defining max/min under cygwin

#include <mmsystem.h>
#include <windows.h>

#include <gnuradio/audio/sink.h>
#include <gnuradio/logger.h>
#include <string>

namespace gr {
namespace audio {

/*!
 * \brief audio sink using winmm mmsystem (win32 only)
 * \ingroup audio_blk
 *
 * input signature is one or two streams of floats.
 * Input samples must be in the range [-1,1].
 */
class windows_sink : public sink
{
    int d_sampling_freq;
    std::string d_device_name;
    int d_fd;
    LPWAVEHDR* d_buffers;
    DWORD d_chunk_size;
    DWORD d_buffer_size;
    bool d_ok_to_block;
    HWAVEOUT d_h_waveout;
    HANDLE d_wave_write_event;
    WAVEFORMATEX wave_format;

protected:
    int string_to_int(const std::string& s);
    int open_waveout_device(void);
    int write_waveout(LPWAVEHDR lp_wave_hdr);
    MMRESULT is_format_supported(LPWAVEFORMATEX pwfx, UINT uDeviceID);
    bool is_number(const std::string& s);
    UINT find_device(std::string szDeviceName);

public:
    windows_sink(int sampling_freq, const std::string device_name, bool ok_to_block);
    ~windows_sink();

    int work(int noutput_items,
             gr_vector_const_void_star& input_items,
             gr_vector_void_star& output_items);
};

} /* namespace audio */
} /* namespace gr */

#endif /* INCLUDED_AUDIO_WINDOWS_SINK_H */