在我的c代码中调用soundtouch代码,程序崩溃

时间:2015-04-22 13:04:09

标签: android c++ soundtouch

我想在纯c代码中调用C ++方法,并且我跟着一篇文章。桥梁在下面:

extern "C" {
    void setSampleRateForC(SoundTouch *p, uint rate) {p->setSampleRate(rate);}
    void setChannelsForC(SoundTouch *p, uint channels){ p->setChannels(channels);}
    void setTempoChangeForC(SoundTouch *p, float tempo ){ p->setTempoChange(tempo);}
    void setRateChangeForC(SoundTouch *p, float rate ){ p->setRateChange(rate);}
    void setPitchSemiTonesForC(SoundTouch *p, float pitch) {p->setPitchSemiTones(pitch);}
    BOOL setSettingForC(SoundTouch *p, int settingId, int value) { return p->setSetting(settingId, value);}

    void setRateForC(SoundTouch *p, uint rate) {p->setRate(rate);}
    void setTempoForC(SoundTouch *p, float tempo ){ p->setTempo(tempo);}
    void setPitchForC(SoundTouch *p, float pitch) {p->setPitch(pitch);}

    void putSamplesForC(SoundTouch *p,
            const SAMPLETYPE *samples,  ///< Pointer to sample buffer.
            uint numSamples                         ///< Number of samples in buffer. Notice
                                                    ///< that in case of stereo-sound a single sample
                                                    ///< contains data for both channels.
            ){ p->putSamples(samples, numSamples);}

    uint receiveSamplesForC(SoundTouch *p, SAMPLETYPE *output, ///< Buffer where to copy output samples.
                                uint maxSamples                 ///< How many samples to receive at max.
                                ) {
                return p->receiveSamples(output, maxSamples);
    }

    SoundTouch *getInstance(){
       return getInstance();
    }

但是当我在我的c代码中调用getIntance()时,程序崩溃了。所以我想知道,代码有什么问题。

 LOGE("%s init SoundTouch begin", THIS_FILE);
    pSoundTouch = soundtouch::getInstance();
    LOGE("%s", THIS_FILE);

但是只能在logcat中找到init SoundTouch,并且下一个日志不会出现在logcat中。请帮我。谢谢。 getInstance()是:

SoundTouch *SoundTouch::getInstance(){
    return new SoundTouch();
}

1 个答案:

答案 0 :(得分:0)

好的,我通过写一个包装器解决了它:

// uses C calling convention
#include "SoundTouch.h"

#ifdef __cplusplus
extern "C" {
#endif

void* SoundTouch_Create(){
    return new SoundTouch();
}

void SoundTouch_Destroy( void* thisC )
{
    delete static_cast<SoundTouch*>(thisC);
}

void setSampleRateForC(void* thisC , uint rate) {static_cast<SoundTouch*>(thisC)->setSampleRate(rate);}
    void setChannelsForC(void* thisC, uint channels){ static_cast<SoundTouch*>(thisC)->setChannels(channels);}
    void setTempoChangeForC(void* thisC, float tempo ){ static_cast<SoundTouch*>(thisC)->setTempoChange(tempo);}
    void setRateChangeForC(void* thisC, float rate ){ static_cast<SoundTouch*>(thisC)->setRateChange(rate);}
    void setPitchSemiTonesForC(void* thisC, float pitch) {static_cast<SoundTouch*>(thisC)->setPitchSemiTones(pitch);}
    BOOL setSettingForC(void* thisC, int settingId, int value) { return static_cast<SoundTouch*>(thisC)->setSetting(settingId, value);}

    void setRateForC(void* thisC, uint rate) {static_cast<SoundTouch*>(thisC)->setRate(rate);}
    void setTempoForC(void* thisC, float tempo ){ static_cast<SoundTouch*>(thisC)->setTempo(tempo);}
    void setPitchForC(void* thisC, float pitch) {static_cast<SoundTouch*>(thisC)->setPitch(pitch);}

    void putSamplesForC(void* thisC,
            const SAMPLETYPE *samples,  ///< Pointer to sample buffer.
            uint numSamples                         ///< Number of samples in buffer. Notice
                                                    ///< that in case of stereo-sound a single sample
                                                    ///< contains data for both channels.
            ){ 
                static_cast<SoundTouch*>(thisC)->putSamples(samples, numSamples);
             }

    uint receiveSamplesForC(void* thisC, SAMPLETYPE *output, ///< Buffer where to copy output samples.
                                uint maxSamples                 ///< How many samples to receive at max.
                                ) 
    {
        return static_cast<SoundTouch*>(thisC)->receiveSamples(output, maxSamples);
    }

#ifdef __cplusplus
}
#endif