blob: a74ca7d446cb3f262aec2aea1938a3a3cb346f06 [file] [log] [blame]
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +05301/* tinywavinfo.c
2**
3** Copyright 2015, 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 <stdio.h>
30#include <stdlib.h>
31#include <stdint.h>
32#include <string.h>
33#include <signal.h>
34#include <math.h>
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +053035
36#define ID_RIFF 0x46464952
37#define ID_WAVE 0x45564157
38#define ID_FMT 0x20746d66
39#define ID_DATA 0x61746164
40
41struct riff_wave_header {
42 uint32_t riff_id;
43 uint32_t riff_sz;
44 uint32_t wave_id;
45};
46
47struct chunk_header {
48 uint32_t id;
49 uint32_t sz;
50};
51
52struct chunk_fmt {
53 uint16_t audio_format;
54 uint16_t num_channels;
55 uint32_t sample_rate;
56 uint32_t byte_rate;
57 uint16_t block_align;
58 uint16_t bits_per_sample;
59};
60
61static int close = 0;
62
63void analyse_sample(FILE *file, unsigned int channels, unsigned int bits,
64 unsigned int data_chunk_size);
65
66void stream_close(int sig)
67{
68 /* allow the stream to be closed gracefully */
69 signal(sig, SIG_IGN);
70 close = 1;
71}
72
Ethan Sommerce30db42020-06-03 22:05:06 -040073size_t xfread(void *ptr, size_t size, size_t nmemb, FILE *stream)
74{
75 size_t sz = fread(ptr, size, nmemb, stream);
76
77 if (sz != nmemb && ferror(stream)) {
78 fprintf(stderr, "Error: fread failed\n");
79 exit(1);
80 }
81 return sz;
82}
83
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +053084int main(int argc, char **argv)
85{
86 FILE *file;
87 struct riff_wave_header riff_wave_header;
88 struct chunk_header chunk_header;
89 struct chunk_fmt chunk_fmt;
90 char *filename;
91 int more_chunks = 1;
92
93 if (argc < 2) {
94 fprintf(stderr, "Usage: %s file.wav \n", argv[0]);
95 return 1;
96 }
97
98 filename = argv[1];
99 file = fopen(filename, "rb");
100 if (!file) {
101 fprintf(stderr, "Unable to open file '%s'\n", filename);
102 return 1;
103 }
104
Ethan Sommerce30db42020-06-03 22:05:06 -0400105 xfread(&riff_wave_header, sizeof(riff_wave_header), 1, file);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530106 if ((riff_wave_header.riff_id != ID_RIFF) ||
107 (riff_wave_header.wave_id != ID_WAVE)) {
108 fprintf(stderr, "Error: '%s' is not a riff/wave file\n", filename);
109 fclose(file);
110 return 1;
111 }
112
113 do {
Ethan Sommerce30db42020-06-03 22:05:06 -0400114 xfread(&chunk_header, sizeof(chunk_header), 1, file);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530115
116 switch (chunk_header.id) {
117 case ID_FMT:
Ethan Sommerce30db42020-06-03 22:05:06 -0400118 xfread(&chunk_fmt, sizeof(chunk_fmt), 1, file);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530119 /* If the format header is larger, skip the rest */
120 if (chunk_header.sz > sizeof(chunk_fmt))
121 fseek(file, chunk_header.sz - sizeof(chunk_fmt), SEEK_CUR);
122 break;
123 case ID_DATA:
124 /* Stop looking for chunks */
125 more_chunks = 0;
126 break;
127 default:
128 /* Unknown chunk, skip bytes */
129 fseek(file, chunk_header.sz, SEEK_CUR);
130 }
131 } while (more_chunks);
132
133 printf("Input File : %s \n", filename);
134 printf("Channels : %u \n", chunk_fmt.num_channels);
135 printf("Sample Rate : %u \n", chunk_fmt.sample_rate);
136 printf("Bits per sample : %u \n\n", chunk_fmt.bits_per_sample);
137
138 analyse_sample(file, chunk_fmt.num_channels, chunk_fmt.bits_per_sample,
139 chunk_header.sz);
140
141 fclose(file);
142
143 return 0;
144}
145
146void analyse_sample(FILE *file, unsigned int channels, unsigned int bits,
147 unsigned int data_chunk_size)
148{
149 void *buffer;
150 int size;
151 int num_read;
152 int i;
153 unsigned int ch;
154 int frame_size = 1024;
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400155 unsigned int bytes_per_sample = 0;
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530156 float *power;
157 int total_sample_per_channel;
158 float normalization_factor;
159
160 if (bits == 32)
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400161 bytes_per_sample = 4;
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530162 else if (bits == 16)
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400163 bytes_per_sample = 2;
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530164
165 normalization_factor = (float)pow(2.0, (bits-1));
166
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400167 size = channels * bytes_per_sample * frame_size;
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530168
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400169 buffer = malloc(size);
170 if (!buffer) {
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530171 fprintf(stderr, "Unable to allocate %d bytes\n", size);
172 free(buffer);
173 return;
174 }
175
176 power = (float *) calloc(channels, sizeof(float));
177
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400178 total_sample_per_channel = data_chunk_size / (channels * bytes_per_sample);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530179
180 /* catch ctrl-c to shutdown cleanly */
181 signal(SIGINT, stream_close);
182
183 do {
Ethan Sommerce30db42020-06-03 22:05:06 -0400184 num_read = xfread(buffer, 1, size, file);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530185 if (num_read > 0) {
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400186 if (2 == bytes_per_sample) {
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530187 short *buffer_ptr = (short *)buffer;
188 for (i = 0; i < num_read; i += channels) {
189 for (ch = 0; ch < channels; ch++) {
190 int temp = *buffer_ptr++;
191 /* Signal Normalization */
192 float f = (float) temp / normalization_factor;
193 *(power + ch) += (float) (f * f);
194 }
195 }
196 }
Taylor Holberton9c9b2a52020-06-03 21:31:48 -0400197 if (4 == bytes_per_sample) {
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530198 int *buffer_ptr = (int *)buffer;
199 for (i = 0; i < num_read; i += channels) {
200 for (ch = 0; ch < channels; ch++) {
201 int temp = *buffer_ptr++;
202 /* Signal Normalization */
203 float f = (float) temp / normalization_factor;
204 *(power + ch) += (float) (f * f);
205 }
206 }
207 }
208 }
209 }while (!close && num_read > 0);
210
211 for (ch = 0; ch < channels; ch++) {
212 float average_power = 10 * log10((*(power + ch)) / total_sample_per_channel);
213 if(isinf (average_power)) {
Svyatoslav Mishyn9d3cdd02016-01-24 20:06:48 +0200214 printf("Channel [%2u] Average Power : NO signal or ZERO signal\n", ch);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530215 } else {
Svyatoslav Mishyn9d3cdd02016-01-24 20:06:48 +0200216 printf("Channel [%2u] Average Power : %.2f dB\n", ch, average_power);
Jaydeep Dholed4b7bcb2015-07-15 20:46:32 +0530217 }
218 }
219
220 free(buffer);
221 free(power);
222
223}
224