minimodem-mirror/src/simple-tone-generator.c

57 lines
1.0 KiB
C
Raw Normal View History

2011-06-18 20:29:00 +02:00
/*
* simple-tone-generator.c
*
* Copyright (C) 2011 Kamal Mostafa <kamal@whence.com>
*
* NO LICENSE HAS BEEN SPECIFIED OR GRANTED FOR THIS WORK.
*
*/
#include <math.h>
#include <strings.h>
2011-06-22 20:14:01 +02:00
#include <malloc.h>
2011-06-18 20:29:00 +02:00
#include <assert.h>
#include "simpleaudio.h"
/* "current" phase state of the tone generator */
static float sa_tone_cphase = 0.0;
void
simpleaudio_tone_reset()
{
sa_tone_cphase = 0.0;
}
void
simpleaudio_tone(simpleaudio *sa_out, float tone_freq, size_t nsamples_dur)
{
2011-06-22 20:14:01 +02:00
float *buf = malloc(nsamples_dur * sizeof(float));
assert(buf);
2011-06-18 20:29:00 +02:00
if ( tone_freq != 0 ) {
float wave_nsamples = 48000.0 / tone_freq; // FIXME rate
size_t i;
2011-06-22 20:14:01 +02:00
for ( i=0; i<nsamples_dur; i++ )
2011-06-18 20:29:00 +02:00
buf[i] = sinf( M_PI*2.0*( i/wave_nsamples + sa_tone_cphase) );
sa_tone_cphase
= fmodf(sa_tone_cphase + (float)nsamples_dur/wave_nsamples, 1.0);
} else {
bzero(buf, nsamples_dur*sizeof(float));
sa_tone_cphase = 0.0;
}
assert ( simpleaudio_write(sa_out, buf, nsamples_dur) > 0 );
2011-06-22 20:14:01 +02:00
free(buf);
2011-06-18 20:29:00 +02:00
}