2022-08-03 22:10:19 +00:00
|
|
|
/* SoX Resampler Library Copyright (c) 2007-16 robs@users.sourceforge.net
|
2016-03-23 05:33:14 +00:00
|
|
|
* Licence for this file: LGPL v2.1 See LICENCE for details. */
|
|
|
|
|
|
|
|
/* Utility used to help test the library; not for general consumption.
|
|
|
|
*
|
2022-08-03 22:10:19 +00:00
|
|
|
* Generate a swept sine to a file, with `lead-in' section. */
|
2016-03-23 05:33:14 +00:00
|
|
|
|
2022-08-03 22:10:19 +00:00
|
|
|
#define TYPE 0 /* calc/store: 0:flt64/int32 1:flt80/flt64 2:flt128/flt64 */
|
2016-03-23 05:33:14 +00:00
|
|
|
|
2022-08-03 22:10:19 +00:00
|
|
|
#if TYPE > 1
|
2016-03-23 05:33:14 +00:00
|
|
|
#include <quadmath.h>
|
|
|
|
#endif
|
|
|
|
|
2022-08-03 22:10:19 +00:00
|
|
|
#include "math-wrap.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2016-03-23 05:33:14 +00:00
|
|
|
|
2022-08-03 22:10:19 +00:00
|
|
|
#if TYPE
|
|
|
|
#if TYPE > 1
|
|
|
|
#define modf modfq
|
|
|
|
#define cos cosq
|
|
|
|
#define sin sinq
|
|
|
|
#define PI M_PIq
|
|
|
|
#define real __float128
|
|
|
|
#define atof(x) strtoflt128(x, 0)
|
|
|
|
#else
|
|
|
|
#define modf modfl
|
|
|
|
#define cos cosl
|
|
|
|
#define sin sinl
|
|
|
|
#define PI M_PIl
|
|
|
|
#define real long double
|
|
|
|
#endif
|
|
|
|
#define MULT 1
|
|
|
|
#define OUT(d) double output = d
|
2016-03-23 05:33:14 +00:00
|
|
|
#else
|
2022-08-03 22:10:19 +00:00
|
|
|
#define PI M_PI
|
2016-03-23 05:33:14 +00:00
|
|
|
#define real double
|
|
|
|
#include "rint.h"
|
2022-08-03 22:10:19 +00:00
|
|
|
#define MULT (32768. * 65536 - 1/scale)
|
|
|
|
#define OUT(d) int32_t output = rint32(d)
|
2016-03-23 05:33:14 +00:00
|
|
|
#endif
|
|
|
|
|
2022-08-03 22:10:19 +00:00
|
|
|
int main(int argc, char const * argv[])
|
2016-03-23 05:33:14 +00:00
|
|
|
{
|
2022-08-03 22:10:19 +00:00
|
|
|
real rate = atof(argv[1]), /* Rate for this vector */
|
|
|
|
lead_in_len = atof(argv[2]), /* Lead-in length in seconds */
|
|
|
|
len = atof(argv[3]), /* Sweep length (excl. lead_in_len) */
|
|
|
|
f1 = atof(argv[4]),
|
|
|
|
f2 = atof(argv[5]),
|
|
|
|
scale = atof(argv[6]), /* For headroom */
|
|
|
|
n1 = rate * -lead_in_len,
|
|
|
|
m = (f2 - f1) / (rate * len * 2), dummy;
|
|
|
|
FILE * file = fopen(argv[7], "wb");
|
|
|
|
int i = (int)n1, err = !file || i != n1;
|
|
|
|
for (; !err && i < (int)(rate*(len+lead_in_len)+.5); ++i) {
|
|
|
|
real d = sin(2 * PI * modf((f1 + i * m) * i / rate, &dummy));
|
|
|
|
OUT((double)(scale * MULT * d));
|
|
|
|
err = fwrite(&output, sizeof(output), 1, file) != 1;
|
2016-03-23 05:33:14 +00:00
|
|
|
}
|
2022-08-03 22:10:19 +00:00
|
|
|
return err |!argc;
|
2016-03-23 05:33:14 +00:00
|
|
|
}
|