]> git.sesse.net Git - nageru/blob - alsa_output.cpp
Add an editor for the MIDI mappings.
[nageru] / alsa_output.cpp
1 #include "alsa_output.h"
2
3 #include <vector>
4
5 using namespace std;
6
7 namespace {
8
9 void die_on_error(const char *func_name, int err)
10 {
11         if (err < 0) {
12                 fprintf(stderr, "%s: %s\n", func_name, snd_strerror(err));
13                 exit(1);
14         }
15 }
16
17 }  // namespace
18
19 ALSAOutput::ALSAOutput(int sample_rate, int num_channels)
20         : sample_rate(sample_rate), num_channels(num_channels)
21 {
22         die_on_error("snd_pcm_open()", snd_pcm_open(&pcm_handle, "default", SND_PCM_STREAM_PLAYBACK, 0));
23
24         // Set format.
25         snd_pcm_hw_params_t *hw_params;
26         snd_pcm_hw_params_alloca(&hw_params);
27         die_on_error("snd_pcm_hw_params_any()", snd_pcm_hw_params_any(pcm_handle, hw_params));
28         die_on_error("snd_pcm_hw_params_set_access()", snd_pcm_hw_params_set_access(pcm_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED));
29         die_on_error("snd_pcm_hw_params_set_format()", snd_pcm_hw_params_set_format(pcm_handle, hw_params, SND_PCM_FORMAT_FLOAT_LE));
30         die_on_error("snd_pcm_hw_params_set_rate()", snd_pcm_hw_params_set_rate(pcm_handle, hw_params, sample_rate, 0));
31         die_on_error("snd_pcm_hw_params_set_channels", snd_pcm_hw_params_set_channels(pcm_handle, hw_params, num_channels));
32
33         // Fragment size of 512 samples. (A frame at 60 fps/48 kHz is 800 samples.)
34         // We ask for 16 such periods (~170 ms buffer).
35         unsigned int num_periods = 16;
36         int dir = 0;
37         die_on_error("snd_pcm_hw_params_set_periods_near()", snd_pcm_hw_params_set_periods_near(pcm_handle, hw_params, &num_periods, &dir));
38         period_size = 512;
39         dir = 0;
40         die_on_error("snd_pcm_hw_params_set_period_size_near()", snd_pcm_hw_params_set_period_size_near(pcm_handle, hw_params, &period_size, &dir));
41         die_on_error("snd_pcm_hw_params()", snd_pcm_hw_params(pcm_handle, hw_params));
42         //snd_pcm_hw_params_free(hw_params);
43
44         snd_pcm_sw_params_t *sw_params;
45         snd_pcm_sw_params_alloca(&sw_params);
46         die_on_error("snd_pcm_sw_params_current()", snd_pcm_sw_params_current(pcm_handle, sw_params));
47         die_on_error("snd_pcm_sw_params_set_start_threshold", snd_pcm_sw_params_set_start_threshold(pcm_handle, sw_params, num_periods * period_size / 2));
48         die_on_error("snd_pcm_sw_params()", snd_pcm_sw_params(pcm_handle, sw_params));
49
50         die_on_error("snd_pcm_nonblock", snd_pcm_nonblock(pcm_handle, 1));
51         die_on_error("snd_pcm_prepare()", snd_pcm_prepare(pcm_handle));
52 }
53
54 void ALSAOutput::write(const vector<float> &samples)
55 {
56         buffer.insert(buffer.end(), samples.begin(), samples.end());
57
58 try_again:
59         int periods_to_write = buffer.size() / (period_size * num_channels);
60         if (periods_to_write == 0) {
61                 return;
62         }
63
64         int ret = snd_pcm_writei(pcm_handle, buffer.data(), periods_to_write * period_size);
65         if (ret == -EPIPE) {
66                 fprintf(stderr, "warning: snd_pcm_writei() reported underrun\n");
67                 snd_pcm_recover(pcm_handle, ret, 1);
68                 goto try_again;
69         } else if (ret == -EAGAIN) {
70                 ret = 0;
71         } else if (ret < 0) {
72                 fprintf(stderr, "error: snd_pcm_writei() returned '%s'\n", snd_strerror(ret));
73                 exit(1);
74         } else if (ret > 0) {
75                 buffer.erase(buffer.begin(), buffer.begin() + ret * num_channels);
76         }
77
78         if (buffer.size() >= period_size * num_channels) {  // Still more to write.
79                 if (ret == 0) {
80                         if (buffer.size() >= period_size * num_channels * 8) {
81                                 // OK, almost 100 ms. Giving up.
82                                 fprintf(stderr, "warning: ALSA overrun, dropping some audio (%d ms)\n",
83                                         int(buffer.size() * 1000 / (num_channels * sample_rate)));
84                                 buffer.clear();
85                         }
86                 } else if (ret > 0) {
87                         // Not a completely failure (effectively a short write),
88                         // possibly due to a signal.
89                         goto try_again;
90                 }
91         }
92 }