我想製作一些代碼,在我的音源應用程序中生成振盪器波型。在這個例子中的一個是正弦波,有人能告訴我代碼是如何工作的,因爲我想在將來製作自定義波形類型和方形,鋸齒形和三角形類型。正在生成制定振盪器波型代碼並創建新的波型
OSStatus RenderTone(
void *inRefCon,
AudioUnitRenderActionFlags *ioActionFlags,
const AudioTimeStamp *inTimeStamp,
UInt32 inBusNumber,
UInt32 inNumberFrames,
AudioBufferList *ioData)
{
// Fixed amplitude is good enough for our purposes
const double amplitude = 0.25;
// Get the tone parameters out of the view controller
ToneGeneratorViewController *viewController =
(ToneGeneratorViewController *)inRefCon;
double theta = viewController->theta;
double theta_increment = 2.0 * M_PI * viewController->frequency/viewController->sampleRate;
// This is a mono tone generator so we only need the first buffer
const int channel = 0;
Float32 *buffer = (Float32 *)ioData->mBuffers[channel].mData;
// Generate the samples
for (UInt32 frame = 0; frame < inNumberFrames; frame++)
{
buffer[frame] = sin(theta) * amplitude;
theta += theta_increment;
if (theta > 2.0 * M_PI)
{
theta -= 2.0 * M_PI;
}
}
// Store the theta back in the view controller
viewController->theta = theta;
return noErr;
}
什麼是你的問題,具體是? – Brad 2012-02-08 17:32:37
我想知道「生成樣本」是如何工作的。以及如何修改它以產生不同的波形,如鋸齒形,三角形和方形。 – user1197773 2012-02-08 17:38:32