summaryrefslogtreecommitdiff
path: root/src/sms/sineSynth.c
blob: 9882062db9e44dc01a31535b35bc21931746053a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/* 
 * Copyright (c) 2008 MUSIC TECHNOLOGY GROUP (MTG)
 *                         UNIVERSITAT POMPEU FABRA 
 * 
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * 
 */
/*! \file sineSynth.c
 * \brief functions for synthesizing evolving sinusoids
 */

#include "sms.h"

/*! \brief generate a sinusoid given two peaks, current and last
 *
 * it interpolation between phase values and magnitudes   
 *
 * \param fFreq                    current frequency
 * \param fMag                    current magnitude
 * \param fPhase                 current phase
 * \param pLastFrame         stucture with values from last frame
 * \param pFWaveform        pointer to output waveform
 * \param sizeBuffer        size of the synthesis buffer 
 * \param iTrack                  current track 
 */
static void SinePhaSynth(sfloat fFreq, sfloat fMag, sfloat fPhase,
                         SMS_Data *pLastFrame, sfloat *pFWaveform, 
                         int sizeBuffer, int iTrack)
{
    sfloat  fMagIncr, fInstMag, fInstPhase, fTmp;
    int iM, i;
    sfloat fAlpha, fBeta, fTmp1, fTmp2;

    /* if no mag in last frame copy freq from current and make phase */
    if(pLastFrame->pFSinAmp[iTrack] <= 0)
    {
        pLastFrame->pFSinFreq[iTrack] = fFreq;
        fTmp = fPhase - (fFreq * sizeBuffer);
        pLastFrame->pFSinPha[iTrack] = fTmp - floor(fTmp / TWO_PI) * TWO_PI;
    }
    /* and the other way */
    else if(fMag <= 0)
    {
        fFreq = pLastFrame->pFSinFreq[iTrack];
        fTmp = pLastFrame->pFSinPha[iTrack] + 
               (pLastFrame->pFSinFreq[iTrack] * sizeBuffer);
        fPhase = fTmp - floor(fTmp / TWO_PI) * TWO_PI;
    }

    /* caculate the instantaneous amplitude */
    fMagIncr = (fMag - pLastFrame->pFSinAmp[iTrack]) / sizeBuffer;
    fInstMag = pLastFrame->pFSinAmp[iTrack];

    /* create instantaneous phase from freq. and phase values */
    fTmp1 = fFreq - pLastFrame->pFSinFreq[iTrack];
    fTmp2 = ((pLastFrame->pFSinPha[iTrack] + 
              pLastFrame->pFSinFreq[iTrack] * sizeBuffer - fPhase) +
             fTmp1 * sizeBuffer / 2.0) / TWO_PI;
    iM = (int)(fTmp2 + .5);
    fTmp2 = fPhase - pLastFrame->pFSinPha[iTrack] - 
            pLastFrame->pFSinFreq[iTrack] * sizeBuffer + TWO_PI * iM;
    fAlpha = (3.0 / (sfloat)(sizeBuffer * sizeBuffer)) * 
             fTmp2 - fTmp1 / sizeBuffer;
    fBeta = (-2.0 / ((sfloat) (sizeBuffer * sizeBuffer * sizeBuffer))) * 
            fTmp2 + fTmp1 / ((sfloat) (sizeBuffer * sizeBuffer));

    for(i=0; i<sizeBuffer; i++)
    {
        fInstMag += fMagIncr;
        fInstPhase = pLastFrame->pFSinPha[iTrack] + 
                     pLastFrame->pFSinFreq[iTrack] * i + 
                     fAlpha * i * i + fBeta * i * i * i;

        /*pFWaveform[i] += sms_dBToMag(fInstMag) * sms_sine(fInstPhase + PI_2);*/
        pFWaveform[i] += sms_dBToMag(fInstMag) * sinf(fInstPhase + PI_2);
    }

    /* save current values into buffer */
    pLastFrame->pFSinFreq[iTrack] = fFreq;
    pLastFrame->pFSinAmp[iTrack] = fMag;
    pLastFrame->pFSinPha[iTrack] = fPhase;
}

/*! \brief generate a sinusoid given two frames, current and last
 * 
 * \param fFreq          current frequency 
 * \param fMag                 current magnitude  
 * \param pLastFrame      stucture with values from last frame 
 * \param pFBuffer           pointer to output waveform 
 * \param sizeBuffer     size of the synthesis buffer 
 * \param iTrack               current track 
 */
static void SineSynth(sfloat fFreq, sfloat fMag, SMS_Data *pLastFrame,
                      sfloat *pFBuffer, int sizeBuffer, int iTrack)
{
    sfloat  fMagIncr, fInstMag, fFreqIncr, fInstPhase, fInstFreq;
    int i;

    /* if no mag in last frame copy freq from current */
    if(pLastFrame->pFSinAmp[iTrack] <= 0)
    {
        pLastFrame->pFSinFreq[iTrack] = fFreq;
        pLastFrame->pFSinPha[iTrack] = TWO_PI * sms_random();
    }
    /* and the other way */
    else if(fMag <= 0)
        fFreq = pLastFrame->pFSinFreq[iTrack];

    /* calculate the instantaneous amplitude */
    fMagIncr = (fMag - pLastFrame->pFSinAmp[iTrack]) / sizeBuffer;
    fInstMag = pLastFrame->pFSinAmp[iTrack];
    /* calculate instantaneous frequency */
    fFreqIncr = (fFreq - pLastFrame->pFSinFreq[iTrack]) / sizeBuffer;
    fInstFreq = pLastFrame->pFSinFreq[iTrack];
    fInstPhase = pLastFrame->pFSinPha[iTrack];

    /* generate all the samples */    
    for(i = 0; i < sizeBuffer; i++)
    {
        fInstMag += fMagIncr;
        fInstFreq += fFreqIncr;
        fInstPhase += fInstFreq;
        pFBuffer[i] += sms_dBToMag(fInstMag) * sms_sine(fInstPhase);
    }

    /* save current values into last values */
    pLastFrame->pFSinFreq[iTrack] = fFreq;
    pLastFrame->pFSinAmp[iTrack] = fMag;
    pLastFrame->pFSinPha[iTrack] = fInstPhase - floor(fInstPhase / TWO_PI) * TWO_PI;
}

/*! \brief generate all the sinusoids for a given frame
 * 
 * \param pSmsData       SMS data for current frame 
 * \param pFBuffer         pointer to output waveform 
 * \param sizeBuffer        size of the synthesis buffer
 * \param pLastFrame    SMS data from last frame 
 * \param iSamplingRate sampling rate to synthesize for
 */
void sms_sineSynthFrame(SMS_Data *pSmsData, sfloat *pFBuffer, 
                        int sizeBuffer, SMS_Data *pLastFrame, 
                        int iSamplingRate)
{
    sfloat fMag, fFreq;
    int i;
    int nTracks = pSmsData->nTracks;
    int iHalfSamplingRate = iSamplingRate >> 1;

    /* go through all the tracks */    
    for(i = 0; i < nTracks; i++)
    {
        fMag = pSmsData->pFSinAmp[i];
        fFreq = pSmsData->pFSinFreq[i];

        /* make that sure transposed frequencies don't alias */
        if(fFreq > iHalfSamplingRate || fFreq < 0) 
            fMag = 0;

        /* generate sines if there are magnitude values */
        if((fMag > 0) || (pLastFrame->pFSinAmp[i] > 0))
        {  
            /* frequency from Hz to radians */
            fFreq = (fFreq == 0) ? 0 : TWO_PI * fFreq / iSamplingRate;

            /* \todo make seperate function for SineSynth /wo phase */
            if(pSmsData->pFSinPha == NULL)
            {                
                SineSynth(fFreq, fMag, pLastFrame, pFBuffer, sizeBuffer, i);
            }
            else
            {
                SinePhaSynth(fFreq, fMag, pSmsData->pFSinPha[i], pLastFrame, 
                             pFBuffer, sizeBuffer, i);
            }
        }
    }
}