blob: c5bb71f65f4628c41b2f3e566c71c65eff9cd7bc [file] [log] [blame]
Simon Wilsonedff7082011-06-06 15:33:34 -07001/* tinyplay.c
2**
3** Copyright 2011, The Android Open Source Project
4**
5** Redistribution and use in source and binary forms, with or without
6** modification, are permitted provided that the following conditions are met:
7** * Redistributions of source code must retain the above copyright
8** notice, this list of conditions and the following disclaimer.
9** * Redistributions in binary form must reproduce the above copyright
10** notice, this list of conditions and the following disclaimer in the
11** documentation and/or other materials provided with the distribution.
12** * Neither the name of The Android Open Source Project nor the names of
13** its contributors may be used to endorse or promote products derived
14** from this software without specific prior written permission.
15**
16** THIS SOFTWARE IS PROVIDED BY The Android Open Source Project ``AS IS'' AND
17** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19** ARE DISCLAIMED. IN NO EVENT SHALL The Android Open Source Project BE LIABLE
20** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26** DAMAGE.
27*/
28
29#include <tinyalsa/asoundlib.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <stdint.h>
Simon Wilsonda39e0b2012-11-09 15:16:47 -080033#include <string.h>
34#include <signal.h>
David Lie95e65a2020-12-09 02:11:18 +000035#include <endian.h>
David Lia0cab9c2022-05-24 14:56:43 +080036#include <unistd.h>
Simon Wilsonedff7082011-06-06 15:33:34 -070037
38#define ID_RIFF 0x46464952
39#define ID_WAVE 0x45564157
40#define ID_FMT 0x20746d66
41#define ID_DATA 0x61746164
42
Simon Wilson85dc38f2012-05-15 17:37:19 -070043struct riff_wave_header {
Simon Wilsonedff7082011-06-06 15:33:34 -070044 uint32_t riff_id;
45 uint32_t riff_sz;
Simon Wilson85dc38f2012-05-15 17:37:19 -070046 uint32_t wave_id;
47};
48
49struct chunk_header {
50 uint32_t id;
51 uint32_t sz;
52};
53
54struct chunk_fmt {
Simon Wilsonedff7082011-06-06 15:33:34 -070055 uint16_t audio_format;
56 uint16_t num_channels;
57 uint32_t sample_rate;
58 uint32_t byte_rate;
59 uint16_t block_align;
60 uint16_t bits_per_sample;
Simon Wilsonedff7082011-06-06 15:33:34 -070061};
62
David Lia0cab9c2022-05-24 14:56:43 +080063static int closing = 0;
Simon Wilsonda39e0b2012-11-09 15:16:47 -080064
David Lie95e65a2020-12-09 02:11:18 +000065void play_sample(FILE *file, unsigned int card, unsigned int device, unsigned int channels,
66 unsigned int rate, unsigned int bits, unsigned int period_size,
67 unsigned int period_count, uint32_t data_sz);
Simon Wilsonedff7082011-06-06 15:33:34 -070068
Simon Wilsonda39e0b2012-11-09 15:16:47 -080069void stream_close(int sig)
70{
71 /* allow the stream to be closed gracefully */
72 signal(sig, SIG_IGN);
David Lia0cab9c2022-05-24 14:56:43 +080073 closing = 1;
Simon Wilsonda39e0b2012-11-09 15:16:47 -080074}
75
Simon Wilsonedff7082011-06-06 15:33:34 -070076int main(int argc, char **argv)
77{
David Lie95e65a2020-12-09 02:11:18 +000078 FILE *file;
79 struct riff_wave_header riff_wave_header;
80 struct chunk_header chunk_header;
81 struct chunk_fmt chunk_fmt;
82 unsigned int device = 0;
83 unsigned int card = 0;
84 unsigned int period_size = 1024;
85 unsigned int period_count = 4;
86 char *filename;
87 int more_chunks = 1;
Simon Wilsonedff7082011-06-06 15:33:34 -070088
Simon Wilson62104732011-08-05 12:00:00 -070089 if (argc < 2) {
David Lie95e65a2020-12-09 02:11:18 +000090 fprintf(stderr, "Usage: %s file.wav [-D card] [-d device] [-p period_size]"
91 " [-n n_periods] \n", argv[0]);
92 return 1;
Simon Wilsonedff7082011-06-06 15:33:34 -070093 }
94
David Lie95e65a2020-12-09 02:11:18 +000095 filename = argv[1];
96 file = fopen(filename, "rb");
97 if (!file) {
98 fprintf(stderr, "Unable to open file '%s'\n", filename);
99 return 1;
100 }
101
102 fread(&riff_wave_header, sizeof(riff_wave_header), 1, file);
103 if ((riff_wave_header.riff_id != ID_RIFF) ||
104 (riff_wave_header.wave_id != ID_WAVE)) {
105 fprintf(stderr, "Error: '%s' is not a riff/wave file\n", filename);
106 fclose(file);
107 return 1;
108 }
109
110 do {
111 fread(&chunk_header, sizeof(chunk_header), 1, file);
112
113 switch (chunk_header.id) {
114 case ID_FMT:
115 fread(&chunk_fmt, sizeof(chunk_fmt), 1, file);
116 /* If the format header is larger, skip the rest */
117 if (chunk_header.sz > sizeof(chunk_fmt))
118 fseek(file, chunk_header.sz - sizeof(chunk_fmt), SEEK_CUR);
Simon Wilson85dc38f2012-05-15 17:37:19 -0700119 break;
David Lie95e65a2020-12-09 02:11:18 +0000120 case ID_DATA:
121 /* Stop looking for chunks */
122 more_chunks = 0;
123 chunk_header.sz = le32toh(chunk_header.sz);
Simon Wilson85dc38f2012-05-15 17:37:19 -0700124 break;
David Lie95e65a2020-12-09 02:11:18 +0000125 default:
126 /* Unknown chunk, skip bytes */
127 fseek(file, chunk_header.sz, SEEK_CUR);
Simon Wilson85dc38f2012-05-15 17:37:19 -0700128 }
David Lie95e65a2020-12-09 02:11:18 +0000129 } while (more_chunks);
Simon Wilson85dc38f2012-05-15 17:37:19 -0700130
David Lie95e65a2020-12-09 02:11:18 +0000131 /* parse command line arguments */
132 argv += 2;
133 while (*argv) {
134 if (strcmp(*argv, "-d") == 0) {
135 argv++;
136 if (*argv)
137 device = atoi(*argv);
138 }
139 if (strcmp(*argv, "-p") == 0) {
140 argv++;
141 if (*argv)
142 period_size = atoi(*argv);
143 }
144 if (strcmp(*argv, "-n") == 0) {
145 argv++;
146 if (*argv)
147 period_count = atoi(*argv);
148 }
149 if (strcmp(*argv, "-D") == 0) {
150 argv++;
151 if (*argv)
152 card = atoi(*argv);
153 }
154 if (*argv)
155 argv++;
Simon Wilson62104732011-08-05 12:00:00 -0700156 }
157
David Lie95e65a2020-12-09 02:11:18 +0000158 play_sample(file, card, device, chunk_fmt.num_channels, chunk_fmt.sample_rate,
159 chunk_fmt.bits_per_sample, period_size, period_count, chunk_header.sz);
Simon Wilsonedff7082011-06-06 15:33:34 -0700160
David Lie95e65a2020-12-09 02:11:18 +0000161 fclose(file);
Simon Wilsonedff7082011-06-06 15:33:34 -0700162
David Lie95e65a2020-12-09 02:11:18 +0000163 return 0;
Simon Wilsonedff7082011-06-06 15:33:34 -0700164}
165
Simon Wilson9673f572013-05-01 15:10:34 -0700166int check_param(struct pcm_params *params, unsigned int param, unsigned int value,
167 char *param_name, char *param_unit)
168{
169 unsigned int min;
170 unsigned int max;
171 int is_within_bounds = 1;
172
173 min = pcm_params_get_min(params, param);
174 if (value < min) {
175 fprintf(stderr, "%s is %u%s, device only supports >= %u%s\n", param_name, value,
176 param_unit, min, param_unit);
177 is_within_bounds = 0;
178 }
179
180 max = pcm_params_get_max(params, param);
181 if (value > max) {
182 fprintf(stderr, "%s is %u%s, device only supports <= %u%s\n", param_name, value,
183 param_unit, max, param_unit);
184 is_within_bounds = 0;
185 }
186
187 return is_within_bounds;
188}
189
David Lie95e65a2020-12-09 02:11:18 +0000190int sample_is_playable(unsigned int card, unsigned int device, unsigned int channels,
191 unsigned int rate, unsigned int bits, unsigned int period_size,
192 unsigned int period_count)
Simon Wilson9673f572013-05-01 15:10:34 -0700193{
194 struct pcm_params *params;
195 int can_play;
196
David Lie95e65a2020-12-09 02:11:18 +0000197 params = pcm_params_get(card, device, PCM_OUT);
Simon Wilson9673f572013-05-01 15:10:34 -0700198 if (params == NULL) {
David Lie95e65a2020-12-09 02:11:18 +0000199 fprintf(stderr, "Unable to open PCM device %u.\n", device);
Simon Wilson9673f572013-05-01 15:10:34 -0700200 return 0;
201 }
202
David Lie95e65a2020-12-09 02:11:18 +0000203 can_play = check_param(params, PCM_PARAM_RATE, rate, "Sample rate", "Hz");
204 can_play &= check_param(params, PCM_PARAM_CHANNELS, channels, "Sample", " channels");
Xinhui Zhouacd55992021-10-13 22:53:10 -0700205 can_play &= check_param(params, PCM_PARAM_SAMPLE_BITS, bits, "Bitwidth", " bits");
David Lie95e65a2020-12-09 02:11:18 +0000206 can_play &= check_param(params, PCM_PARAM_PERIOD_SIZE, period_size, "Period size", " frames");
207 can_play &= check_param(params, PCM_PARAM_PERIODS, period_count, "Period count", " periods");
Simon Wilson9673f572013-05-01 15:10:34 -0700208
209 pcm_params_free(params);
210
211 return can_play;
212}
213
David Lie95e65a2020-12-09 02:11:18 +0000214void play_sample(FILE *file, unsigned int card, unsigned int device, unsigned int channels,
215 unsigned int rate, unsigned int bits, unsigned int period_size,
216 unsigned int period_count, uint32_t data_sz)
Simon Wilsonedff7082011-06-06 15:33:34 -0700217{
David Lie95e65a2020-12-09 02:11:18 +0000218 struct pcm_config config;
219 struct pcm *pcm;
Simon Wilsonedff7082011-06-06 15:33:34 -0700220 char *buffer;
David Lie95e65a2020-12-09 02:11:18 +0000221 unsigned int size, read_sz;
222 int num_read;
Simon Wilsonedff7082011-06-06 15:33:34 -0700223
David Lie95e65a2020-12-09 02:11:18 +0000224 memset(&config, 0, sizeof(config));
225 config.channels = channels;
226 config.rate = rate;
227 config.period_size = period_size;
228 config.period_count = period_count;
229 if (bits == 32)
230 config.format = PCM_FORMAT_S32_LE;
231 else if (bits == 24)
232 config.format = PCM_FORMAT_S24_3LE;
233 else if (bits == 16)
234 config.format = PCM_FORMAT_S16_LE;
235 config.start_threshold = 0;
236 config.stop_threshold = 0;
237 config.silence_threshold = 0;
238
239 if (!sample_is_playable(card, device, channels, rate, bits, period_size, period_count)) {
240 return;
Simon Wilson9673f572013-05-01 15:10:34 -0700241 }
242
David Lie95e65a2020-12-09 02:11:18 +0000243 pcm = pcm_open(card, device, PCM_OUT, &config);
244 if (!pcm || !pcm_is_ready(pcm)) {
245 fprintf(stderr, "Unable to open PCM device %u (%s)\n",
246 device, pcm_get_error(pcm));
247 return;
248 }
249
250 size = pcm_frames_to_bytes(pcm, pcm_get_buffer_size(pcm));
251 buffer = malloc(size);
Simon Wilsonedff7082011-06-06 15:33:34 -0700252 if (!buffer) {
David Lie95e65a2020-12-09 02:11:18 +0000253 fprintf(stderr, "Unable to allocate %d bytes\n", size);
254 free(buffer);
255 pcm_close(pcm);
256 return;
Simon Wilsonedff7082011-06-06 15:33:34 -0700257 }
258
David Lie95e65a2020-12-09 02:11:18 +0000259 printf("Playing sample: %u ch, %u hz, %u bit %u bytes\n", channels, rate, bits, data_sz);
260
Simon Wilsonda39e0b2012-11-09 15:16:47 -0800261 /* catch ctrl-c to shutdown cleanly */
262 signal(SIGINT, stream_close);
263
Simon Wilsonedff7082011-06-06 15:33:34 -0700264 do {
David Lie95e65a2020-12-09 02:11:18 +0000265 read_sz = size < data_sz ? size : data_sz;
266 num_read = fread(buffer, 1, read_sz, file);
Simon Wilsonedff7082011-06-06 15:33:34 -0700267 if (num_read > 0) {
David Lie95e65a2020-12-09 02:11:18 +0000268 if (pcm_write(pcm, buffer, num_read)) {
269 fprintf(stderr, "Error playing sample\n");
Simon Wilsonedff7082011-06-06 15:33:34 -0700270 break;
271 }
David Lie95e65a2020-12-09 02:11:18 +0000272 data_sz -= num_read;
Simon Wilsonedff7082011-06-06 15:33:34 -0700273 }
David Lia0cab9c2022-05-24 14:56:43 +0800274 } while (!closing && num_read > 0 && data_sz > 0);
275
276 if (!closing) {
277 // drain the data in the ALSA ring buffer before closing the PCM device
278 unsigned long sleep_time_in_us =
279 (unsigned long) pcm_get_buffer_size(pcm) * 1000UL / ((unsigned long) rate / 1000UL);
280 printf("Draining... Wait %lu us\n", sleep_time_in_us);
281 usleep(sleep_time_in_us);
282 }
Simon Wilsonedff7082011-06-06 15:33:34 -0700283
284 free(buffer);
David Lie95e65a2020-12-09 02:11:18 +0000285 pcm_close(pcm);
Simon Wilsonedff7082011-06-06 15:33:34 -0700286}
287