summaryrefslogtreecommitdiff
path: root/src/sms/modify.c
blob: 1afdf823c529345c652a49d6a50bb0a6baf99a82 (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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* 
 * Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
 * 
 * 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 modify.c
 * \brief modify sms data 
 */

#include "sms.h"

/*! \brief initialize a modifications structure based on an SMS_Header
 *
 * \param params pointer to parameter structure
 * \param header pointer to sms header
 */
void sms_initModify(SMS_Header *header, SMS_ModifyParams *params)
{
        static int sizeEnvArray = 0;
        params->maxFreq = header->iMaxFreq;
        params->sizeSinEnv = header->nEnvCoeff;

        if(sizeEnvArray < params->sizeSinEnv)
        {
                if(sizeEnvArray != 0) free(params->sinEnv);
                if ((params->sinEnv = (sfloat *) malloc(params->sizeSinEnv * sizeof(sfloat))) == NULL)
                {
                        sms_error("could not allocate memory for envelope array");
                        return;
                }
                sizeEnvArray = params->sizeSinEnv;
        }
        params->ready = 1;
}

/*! \brief initialize modification parameters
 *
 * \todo call this from sms_initSynth()? some other mod params are updated there
 *
 * \param params pointer to parameters structure
 */
void sms_initModifyParams(SMS_ModifyParams *params)
{
        params->ready = 0;
	params->doResGain = 0;
	params->resGain = 1.;
	params->doTranspose = 0;
	params->transpose = 0;
	params->doSinEnv = 0;
	params->sinEnvInterp = 0.;
	params->sizeSinEnv = 0;
	params->doResEnv = 0;
	params->resEnvInterp = 0.;
	params->sizeResEnv = 0;
}

/*! \brief free memory allocated during initialization
 *
 * \param params pointer to parameter structure
 */
void sms_freeModify(SMS_ModifyParams *params)
{
}

/*! \brief linear interpolation between 2 spectral envelopes.
 *
 * The values in env2 are overwritten by the new interpolated envelope values.
 */
void sms_interpEnvelopes(int sizeEnv, sfloat *env1, sfloat *env2, sfloat interpFactor)
{
        if(sizeEnv <= 0)
        {       
                return;
        }
        
        int i;
        sfloat amp1, amp2;
        
        for(i = 0; i < sizeEnv; i++)
        {
                amp1 = env1[i];
                amp2 = env2[i];
                if(amp1 <= 0) amp1 = amp2;
                if(amp2 <= 0) amp2 = amp1;
                env2[i] = amp1 + (interpFactor * (amp2 - amp1));
        }
}

/*! \brief apply the spectral envelope of 1 sound to another 
 *
 * Changes the amplitude of spectral peaks in a target sound (pFreqs, pMags) to match those
 * in the envelope (pCepEnvFreqs, pCepEnvMags) of another, up to a maximum frequency of maxFreq.
 */
void sms_applyEnvelope(int numPeaks, sfloat *pFreqs, sfloat *pMags, int sizeEnv, sfloat *pEnvMags, int maxFreq)
{
	if(sizeEnv <= 0 || maxFreq <= 0)
        {
                return;
        }

	int i, envPos;
    sfloat frac, binSize = (sfloat)maxFreq / (sfloat)sizeEnv;
        
        for(i = 0; i < numPeaks; i++)
	{
                /* convert peak freqs into bin positions for quicker envelope lookup */
                /* \todo try to remove so many pFreq lookups and get rid of divide */
                pFreqs[i] /= binSize;

		/* if current peak is within envelope range, set its mag to the envelope mag */
		if(pFreqs[i] < (sizeEnv-1) && pFreqs[i] > 0)
		{
                        envPos = (int)pFreqs[i];
                        frac = pFreqs[i] - envPos;
                        if(envPos < sizeEnv - 1)
                        {
			        pMags[i] = ((1.0 - frac) * pEnvMags[envPos]) + (frac * pEnvMags[envPos+1]);
                        }
                        else
                        {       
                                pMags[i] = pEnvMags[sizeEnv-1];
                        }
                }
		else
		{
			pMags[i] = 0;
		}
        
                /* convert back to frequency values */
                pFreqs[i] *= binSize;
	}

}

/*! \brief scale the residual gain factor
 * 
 * \param frame pointer to sms data
 * \param gain factor to scale the residual
 */
void sms_resGain(SMS_Data *frame, sfloat gain)
{
        int i;
        for( i = 0; i < frame->nCoeff; i++)
                frame->pFStocCoeff[i] *= gain;
}


/*! \brief basic transposition
 * Multiply the frequencies of the deterministic component by a constant
 */
void sms_transpose(SMS_Data *frame, sfloat transpositionFactor)
{
        int i;
        for(i = 0; i < frame->nTracks; i++)
        {
                frame->pFSinFreq[i] *= sms_scalarTempered(transpositionFactor);
        }
}


/*! \brief transposition maintaining spectral envelope
 *
 * Multiply the frequencies of the deterministic component by a constant, then change
 * their amplitudes so that the original spectral envelope is maintained
 */
void sms_transposeKeepEnv(SMS_Data *frame, sfloat transpositionFactor, int maxFreq)
{
	sms_transpose(frame, transpositionFactor);
	sms_applyEnvelope(frame->nTracks, frame->pFSinFreq, frame->pFSinAmp, frame->nEnvCoeff, frame->pSpecEnv, maxFreq);
}

/*! \brief modify a frame (SMS_Data object) 
 *
 * Performs a modification on a SMS_Data object. The type of modification and any additional
 * parameters are specified in the given SMS_ModifyParams structure.
 */
void sms_modify(SMS_Data *frame, SMS_ModifyParams *params)
{
	if(params->doResGain)
                sms_resGain(frame, params->resGain);

	if(params->doTranspose)
                sms_transpose(frame, params->transpose);
	
	if(params->doSinEnv)
	{
		if(params->sinEnvInterp < .00001) /* maintain original */
			sms_applyEnvelope(frame->nTracks, frame->pFSinFreq, frame->pFSinAmp,
					  frame->nEnvCoeff, frame->pSpecEnv, params->maxFreq);
		else
		{
		    if(params->sinEnvInterp > .00001 && params->sinEnvInterp < .99999)
			    sms_interpEnvelopes(params->sizeSinEnv, frame->pSpecEnv, params->sinEnv, params->sinEnvInterp);
		   
		    sms_applyEnvelope(frame->nTracks, frame->pFSinFreq, frame->pFSinAmp,
				      params->sizeSinEnv, params->sinEnv, params->maxFreq);

		}
	}
}