1

Android NDK と OpenSL ES を使用して、基本的なレコーダー アプリを作成しました。コンパイルとリンクは正常に行われますが、Galaxy Nexus デバイスで実行しようとすると、次のエラーが発生します。

W/libOpenSLES(10708): Leaving Object::GetInterface (SL_RESULT_FEATURE_UNSUPPORTED)

これは次の行で発生します。

res = (*recorderObj)->GetInterface(recorderObj, SL_IID_ANDROIDSIMPLEBUFFERQUEUE, &recorderBufferQueueItf);

これは、Galaxy Nexus デバイスでの OpenSL ES を使用した記録がサポートされていないということですか、それとも単に私のミスでしょうか? 以下は関連するコードです。

    static SLObjectItf recorderObj;
    static SLEngineItf EngineItf;
    static SLRecordItf recordItf;
    static SLAndroidSimpleBufferQueueItf recorderBufferQueueItf;
    static SLDataSink recDest;
    static SLDataLocator_AndroidSimpleBufferQueue recBuffQueue;
    static SLDataFormat_PCM pcm;

    /* Setup the data source structure */
    locator_mic.locatorType = SL_DATALOCATOR_IODEVICE;
    locator_mic.deviceType = SL_IODEVICE_AUDIOINPUT;
    locator_mic.deviceID   = SL_DEFAULTDEVICEID_AUDIOINPUT;
    locator_mic.device = NULL;
    audioSource.pLocator = (void *) &locator_mic;
    audioSource.pFormat = NULL;

    /* Setup the data sink structure */
    recBuffQueue.locatorType = SL_DATALOCATOR_ANDROIDSIMPLEBUFFERQUEUE;
    recBuffQueue.numBuffers = NB_BUFFERS_IN_QUEUE;

    /* set up the format of the data in the buffer queue */
    pcm.formatType = SL_DATAFORMAT_PCM;
    pcm.numChannels = 1;
    pcm.samplesPerSec = SL_SAMPLINGRATE_44_1;
    pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
    pcm.containerSize = SL_PCMSAMPLEFORMAT_FIXED_16;
    pcm.channelMask = SL_SPEAKER_FRONT_CENTER;
    pcm.endianness = SL_BYTEORDER_LITTLEENDIAN;

    recDest.pLocator = (void *) &recBuffQueue;
    recDest.pFormat = (void * ) &pcm;

    /* Create audio recorder */
    res = (*EngineItf)->CreateAudioRecorder(EngineItf, &recorderObj, &audioSource, &recDest, 0, iidArray, required);
    CheckErr(res);

    /* Realizing the recorder in synchronous mode. */
    res = (*recorderObj)->Realize(recorderObj, SL_BOOLEAN_FALSE);
    CheckErr(res);

    /* Get the RECORD interface - it is an implicit interface */
    LOGI("GetInterface: Recorder");
    res = (*recorderObj)->GetInterface(recorderObj, SL_IID_RECORD, &recordItf);
    CheckErr(res);

    /* Get the buffer queue interface which was explicitly requested */
    LOGI("GetInterface: Buffer Queue");
    res = (*recorderObj)->GetInterface(recorderObj, SL_IID_ANDROIDSIMPLEBUFFERQUEUE, &recorderBufferQueueItf);
    CheckErr(res);

この問題に関するヘルプは大歓迎です:)

4

1 に答える 1

2

Audio Recorder を作成するときは、最後から 3 番目の引数として「0」を指定します。これは、サポートされる非暗黙的インターフェイスの数です。バッファ キューは、レコーダーの暗黙的なインターフェイスではありません。

変更してみる

res = (*EngineItf)->CreateAudioRecorder(EngineItf, &recorderObj, &audioSource, &recDest, 0, iidArray, required);

res = (*EngineItf)->CreateAudioRecorder(EngineItf, &recorderObj, &audioSource, &recDest, 1, iidArray, required);
于 2013-09-30T18:11:02.297 に答える