在AUHAL上设置采样率

时间:2013-08-08 13:19:28

标签: macos core-audio voip audiounit sample-rate

我正在使用Audio Unit Framework在mac os x上开发VOIP应用程序。 在我的程序中,我设置了输入AUHAL并使用默认流格式(44.1kHz,32位/通道)从麦克风中捕获音频。在这种情况下,我的程序运行正常。

以下是代码:

//The default setting in my program
CheckError(AudioUnitGetProperty(m_audCapUnit,
                                        kAudioUnitProperty_StreamFormat,
                                        kAudioUnitScope_Output,     //the value is 0
                                        inputBus,           //the value is 1
                                        &m_audCapUnitOutputStreamFormat,
                                        &propertySize),
                   "Couldn't get OutputSample ASBD from input unit") ;  

    //the inOutputSampleRate is 44100.0
        m_audCapUnitOutputStreamFormat.mSampleRate = inOutputSampleRate ; 

CheckError(AudioUnitSetProperty(m_audCapUnit,
                                        kAudioUnitProperty_StreamFormat,
                                        kAudioUnitScope_Output,
                                        inputBus,
                                        &m_audCapUnitOutputStreamFormat,
                                        propertySize),
                   "Couldn't set OutputSample ASBD on input unit"); 

//

由于我正在开发VOIP应用程序,默认格式(44.1kHz,32位/通道)不适合我的程序,因此我想将采样率更改为8kHz。 我写了这段代码来改变程序中的格式:

//......
    inOutputFormat.mSampleRate = 8000.  ;
    inOutputFormat.mFormatID = kAudioFormatLinearPCM ;
    inOutputFormat.mChannelsPerFrame = 2 ;
    inOutputFormat.mBitsPerChannel  = 16 ;
    inOutputFormat.mBytesPerFrame = 2 ;
    inOutputFormat.mBytesPerPacket = 2 ;
    inOutputFormat.mFramesPerPacket = 1 ;
    inOutputFormat.mFormatFlags = kAudioFormatFlagsAudioUnitCanonical ;   
    inOutputFormat.mReserved = 0 ;



    CheckError(AudioUnitSetProperty(m_audCapUnit,
                                    kAudioUnitProperty_StreamFormat,
                                    kAudioUnitScope_Output,
                                    inputBus, 
                                    &inOutputFormat, 
                                    ui32PropSize),
               "Couldn't set AUHAL Unit Output Format") ;

//.......

在这种情况下,程序正常工作,直到我的程序调用回调函数中的AudioUnitRender;它无法使用错误代码AudioUnitRender调用-10876,这意味着 文档中的kAudioUnitErr_NoConnection。错误代码让我很困惑,所以我用谷歌搜索它但我找不到任何有用的信息。有人能告诉我这个错误究竟意味着什么吗?

这不是结束,我通过此代码再次更改了格式:

//.....
    inOutputFormat.mSampleRate = 8000.  ;
    inOutputFormat.mFormatID = kAudioFormatLinearPCM ;
    inOutputFormat.mChannelsPerFrame = 2 ;
    inOutputFormat.mBitsPerChannel  = 32 ;
    inOutputFormat.mBytesPerFrame = 4 ;
    inOutputFormat.mBytesPerPacket = 4 ;
    inOutputFormat.mFramesPerPacket = 1 ;
    inOutputFormat.mFormatFlags = kAudioFormatFlagsAudioUnitCanonical ;   
    inOutputFormat.mReserved = 0 ;



    CheckError(AudioUnitSetProperty(m_audCapUnit,
                                    kAudioUnitProperty_StreamFormat,
                                    kAudioUnitScope_Output,
                                    inputBus, 
                                    &inOutputFormat, 
                                    ui32PropSize),
               "Couldn't set AUHAL Unit Output Format") ;
//........

在这种情况下,程序无法再次调用AudioUnitRender并返回另一个错误代码-10863(kAudioUnitErr_CannotDoInCurrentContext)。我用谷歌搜索了,但我找到了 something useful。在那里读取信息后,我想我在AUHAL上设置的采样率或格式可能不受硬件支持。

所以我写了一些代码来检查默认输入设备上的可用采样率:

//..........
    UInt32 propertySize = sizeof(AudioDeviceID) ;
    Boolean isWritable = false ;

    CheckError(AudioDeviceGetPropertyInfo(inDeviceID,       //the inDeviceID is the default input device
                                          0,
                                          true,
                                          kAudioDevicePropertyAvailableNominalSampleRates,
                                          &propertySize, 
                                          &isWritable), 
               "Get the Available Sample Rate Count Failed") ;

    m_valueCount = propertySize / sizeof(AudioValueRange) ;
    printf("Available %d Sample Rate\n",m_valueCount) ;

    CheckError(AudioDeviceGetProperty(inDeviceID,
                                      0,
                                      false,
                                      kAudioDevicePropertyAvailableNominalSampleRates, 
                                      &propertySize, 
                                      m_valueTabe), 
               "Get the Available Sample Rate Count Failed") ;


    for(UInt32 i = 0 ; i < m_valueCount ; ++i)
    {
        printf("Available Sample Rate value : %ld\n",(long)m_valueTabe[i].mMinimum) ;
    }
//..............

然后我发现可用的采样率是8000,16000,32000,44100,48000,88200和96000。

8000采样率是我之前设定的,但是我通过调用AudioUnitRender得到了错误代码,我只是想说,为什么?

我有谷歌这么多,也阅读了很多文件,但我无法得到答案,有人能解决我遇到的问题吗?

换句话说;如何在仅输入AUHAL上更改采样率或格式?

3 个答案:

答案 0 :(得分:4)

最后我自己昨天解决了这个问题。

这是我的解决方案:

  1. 首先,我使用AudioDeviceGetProperty在我的defaut输入设备上获取可用的格式列表,然后我发现可用的格式列表包含:8khz, 16khz, 32khz, 44.1khz, 48khz, 88.2khz,96khz(我只是在这里列出了采样率字段,但那里是其他的 列表中的字段)。
  2. 然后我选择第一步中获得的可用格式之一。以我的程序为例,我选择格式(8khz,32bits/Channel)并使用AudioDeviceSetProperty在默认设备上设置它而不是AUHAL,这是我的程序在设置之后工作正常的关键AUHAL上的格式(OutputScope,inputBus)。
  3. 最后一步,我使用AudioUnitSetProperty设置我想要的格式,程序运行正常。
  4. 通过这个问题和解决方案,我想如果我想在仅输入AUHAL上设置格式,格式必须匹配或 可以转换为输入设备正在使用的可用格式。所以我需要做的是首先在输入设备上设置格式,然后在仅输入AUHAL上设置格式。

答案 1 :(得分:1)

根据我的经验,使用44.1kHz和16位音频以外的设置会导致各种奇怪的错误。一些通用的建议可能会让您走上正确的道路:

  • 尝试使用Novocaine(https://github.com/alexbw/novocaine)。使用AudioUnits真的很痛苦。
  • 尝试让您的应用以44.1kHz工作,然后自行下采样音频。
  • 您设置的比特率可能与所需的采样率不兼容。

答案 2 :(得分:1)

你的回答对我很有帮助。但是,AudioDeviceGetProperty的使用已被折旧。 以下列表可能有助于使事情更新。例如,采样率设置为32 kHz。

 // Get the available sample rates of the default input device.
defaultDeviceProperty.mSelector = kAudioDevicePropertyAvailableNominalSampleRates;


CheckError    (AudioObjectGetPropertyDataSize(defaultDevice,
                                   &defaultDeviceProperty,
                                   0,
                                   NULL,
                                   &propertySize),
            "Couldn't get sample rate count");
int m_valueCount = propertySize / sizeof(AudioValueRange) ;

printf("Available %d Sample Rates\n",m_valueCount) ;

AudioValueRange m_valueTabe[m_valueCount];

CheckError    (AudioObjectGetPropertyData(defaultDevice,
                                          &defaultDeviceProperty,
                                          0,
                                          NULL,
                                          &propertySize,
                                          m_valueTabe),
               "Couldn't get available sample rates");


for(UInt32 i = 0 ; i < m_valueCount ; ++i)
{
    printf("Available Sample Rate value : %f\n", m_valueTabe[i].mMinimum) ;
}

// Set the sample rate to one of the available values.
AudioValueRange inputSampleRate;
inputSampleRate.mMinimum = 32000;
inputSampleRate.mMaximum = 32000;
defaultDeviceProperty.mSelector = kAudioDevicePropertyNominalSampleRate;
CheckError    (AudioObjectSetPropertyData(defaultDevice,
                                          &defaultDeviceProperty,
                                          0,
                                          NULL,
                                          sizeof(inputSampleRate),
                                          &inputSampleRate),
               "Couldn't get available sample rates");