Android OpenSL don't support SL_IID_PLAYBACKRATE?

870 Views Asked by At

I have created a Audio Instrument using NDK, for get low latency performance, I choose OpenSL to play the music files.But I failed to change the playback rate of playing music. Here is the snap code:

int OpenSLSoundPool::createOggAudioPlayer(const char *filename, int rate){
    SLresult result;
    AAsset* asset = AAssetManager_open(mMgr, filename, AASSET_MODE_UNKNOWN);
    if (NULL == asset) {
        return JNI_FALSE;
    }

    // open asset as file descriptor
    off_t start, length;
    int fd = AAsset_openFileDescriptor(asset, &start, &length);
    assert(0 <= fd);
    AAsset_close(asset);

    // configure audio source
    SLDataLocator_AndroidFD loc_fd = {SL_DATALOCATOR_ANDROIDFD, fd, start, length};
    SLDataFormat_MIME format_mime = {SL_DATAFORMAT_MIME, NULL, SL_CONTAINERTYPE_UNSPECIFIED};
    SLDataSource audioSrc = {&loc_fd, &format_mime};

    // configure audio sink
    SLDataLocator_OutputMix loc_outmix = {SL_DATALOCATOR_OUTPUTMIX, outputMixObject};
    SLDataSink audioSnk = {&loc_outmix, NULL};

    // create audio player
    const SLInterfaceID ids[4] = {SL_IID_SEEK, SL_IID_MUTESOLO, SL_IID_VOLUME, SL_IID_PLAYBACKRATE};
    const SLboolean req[4] = {SL_BOOLEAN_TRUE, SL_BOOLEAN_TRUE, SL_BOOLEAN_TRUE, SL_BOOLEAN_TRUE};
    result = (*engineEngine)->CreateAudioPlayer(engineEngine, &fdPlayerObject, &audioSrc, &audioSnk,
            4, ids, req);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // realize the player
    result = (*fdPlayerObject)->Realize(fdPlayerObject, SL_BOOLEAN_FALSE);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // get the play interface
    result = (*fdPlayerObject)->GetInterface(fdPlayerObject, SL_IID_PLAY, &fdPlayerPlay);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // get the seek interface
    result = (*fdPlayerObject)->GetInterface(fdPlayerObject, SL_IID_SEEK, &fdPlayerSeek);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // get the mute/solo interface
    result = (*fdPlayerObject)->GetInterface(fdPlayerObject, SL_IID_MUTESOLO, &fdPlayerMuteSolo);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // get the volume interface
    result = (*fdPlayerObject)->GetInterface(fdPlayerObject, SL_IID_VOLUME, &fdPlayerVolume);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    // get playback rate interface
    result = (*fdPlayerObject)->GetInterface(fdPlayerObject,
            SL_IID_PLAYBACKRATE, &fdPlayerRate);
    assert(SL_RESULT_SUCCESS == result);


    SLuint32 capa;
    result = (*fdPlayerRate)->GetRateRange(fdPlayerRate, 0,
                &playbackMinRate, &playbackMaxRate, &playbackRateStepSize, &capa);
    assert(SL_RESULT_SUCCESS == result);

    result = (*fdPlayerRate)->SetRate(fdPlayerRate, playbackMaxRate);
    assert(SL_RESULT_SUCCESS == result);

    SLpermille SLrate;
    result = (*fdPlayerRate)->GetRate(fdPlayerRate, &SLrate);
    assert(SL_RESULT_SUCCESS == result);

    // enable whole file looping
    result = (*fdPlayerSeek)->SetLoop(fdPlayerSeek, SL_BOOLEAN_FALSE, 0, SL_TIME_UNKNOWN);
    assert(SL_RESULT_SUCCESS == result);
    (void)result;

    return JNI_TRUE;
}

the key point is:

result = (*fdPlayerRate)->SetRate(fdPlayerRate, playbackMaxRate);
assert(SL_RESULT_SUCCESS == result);

I tried set value between playbackMaxRate and playbackMinRate(On my S3 phone, playbackMaxRate is 2000, playbackMinRate is 500). But no effect, the android NDK doc said it support SL_IID_PLAYBACKRATE. Is there any thing wrong with my code? Thanks a lot.

1

There are 1 best solutions below

3
On

You may try to set the current rate property constraints to SL_RATEPROP_PITCHCORAUDIO. The default audio properties are SL_RATEPROP_NOPITCHCORAUDIO. Like this:

SLuint32 capa;
result = (*fdPlayerRate)->GetRateRange(fdPlayerRate, 0,
            &playbackMinRate, &playbackMaxRate, &playbackRateStepSize, &capa);
assert(SL_RESULT_SUCCESS == result);

result = (*fdPlayerRate)->SetPropertyConstraints(fdPlayerRate,
                    SL_RATEPROP_PITCHCORAUDIO);

if (SL_RESULT_PARAMETER_INVALID == result) {
    LOGD("Parameter Invalid");
}
if (SL_RESULT_FEATURE_UNSUPPORTED == result) {
    LOGD("Feature Unsupported");
}
if (SL_RESULT_SUCCESS == result) {
    assert(SL_RESULT_SUCCESS == result);
    LOGD("Success");
}

result = (*fdPlayerRate)->SetRate(fdPlayerRate, playbackMaxRate);
assert(SL_RESULT_SUCCESS == result);

This may vary depending on the platform version and implementation. It works in my Moto G. Hope this helps.