1

音声合成マネージャーへの C CoreFoundation インターフェイスを使用しようとしています。kSpeechSpeechDoneCallBack音声コールバック (やなど) を登録するにはどうすればよいですkSpeechTextDoneCallBackか? SetSpeechInfo古い非推奨関数の使用方法を知っています。新しいものをどうするのSetSpeechPropertyですか?使おうとすると、登録した関数が呼び出される代わりに「Segmentation fault: 11」が発生します。

Speech-Channel Propertiesによるとlong CFNumberRef、値が目的の関数ポインターであるを渡すことになっていると思います。

メイン スレッドがコールバックを登録し、スピーチが終了するのを待つ簡単な例を次に示します。しかし、コールバックを呼び出す代わりに、ディスパッチ スレッドはエラー「EXC_BAD_ACCESS (code=13, address=0x0)」を返します。非推奨の関数 ( --old) を使用すると、コールバックはエラーなしで呼び出されます。

// clang -g -framework ApplicationServices main.c && ./a.out
#include <stdio.h>
#include <pthread.h>
#include <ApplicationServices/ApplicationServices.h>

void checkResult(OSErr error, const char *description) {
    if (error == 0)
        return;
    fprintf(stderr, "Error: %d during %s. exiting.", error, description);
    exit(error);
}

struct SpeechState {
    pthread_mutex_t mutex;
    pthread_cond_t speakingDone;
    int stillSpeakingCount;
};

void speechDone(SpeechChannel chan, SRefCon refCon) {
    printf("Speech done!\n");
    struct SpeechState *speechState = (struct SpeechState*)refCon;

    pthread_mutex_lock(&speechState->mutex);
    speechState->stillSpeakingCount--;
    pthread_cond_broadcast(&speechState->speakingDone);
    pthread_mutex_unlock(&speechState->mutex);
}

int main(int argc, const char * argv[])
{
    bool old = false;
    for (int i = 1; i < argc; i++) {
        if (0 == strcmp(argv[i], "--old"))
            old = true;
    }
    SpeechChannel chan;
    checkResult(NewSpeechChannel((VoiceSpec*)NULL, &chan), "NewSpeechChannel");

    struct SpeechState speechState;
    pthread_mutex_init(&speechState.mutex, NULL);
    pthread_cond_init(&speechState.speakingDone, NULL);

    if (! old) {
        // The new way seems to crash.
        CFNumberRef doneCallbackNumber = CFNumberCreate(NULL, kCFNumberLongType, speechDone);
        CFNumberRef refConNumber = CFNumberCreate(NULL, kCFNumberLongType, &speechState);
        printf("Registering speechDone callback for address %p\n", speechDone);
        checkResult(SetSpeechProperty(chan, kSpeechSpeechDoneCallBack, doneCallbackNumber), "SetSpeechProperty(sdcb)");
        checkResult(SetSpeechProperty(chan, kSpeechRefConProperty, refConNumber), "SetSpeechProperty(refc)");
        CFRelease(doneCallbackNumber);
        CFRelease(refConNumber);
    } else {
        // The deprecated way to do it works.
        checkResult(SetSpeechInfo(chan, soSpeechDoneCallBack, &speechDone), "SetSpeechInfo(sdcb)");
        checkResult(SetSpeechInfo(chan, soRefCon, &speechState), "SetSpeechInfo(refc)");
    }

    printf("Speaking...\n");
    CFStringRef string = CFStringCreateWithCString(NULL, "Most people recognize me by my voice!", kCFStringEncodingUTF8);
    checkResult(SpeakCFString(chan, string, NULL), "SpeakCFString");
    CFRelease(string);

    pthread_mutex_lock(&speechState.mutex);
    speechState.stillSpeakingCount++;
    while (speechState.stillSpeakingCount > 0) {
        pthread_cond_wait(&speechState.speakingDone, &speechState.mutex);
    }
    pthread_mutex_unlock(&speechState.mutex);

    printf("Done!\n");
    return 0;
}
4

1 に答える 1

1

ドキュメントを読み直した後、私はCFNumberCreate間違って呼び出したことに気付きました。数値の値を指定しましたが、実際には数値へのポインターが必要です。したがって、この場合、関数ポインターへのポインターと構造体ポインターへのポインターを渡す必要がありました。

void (*speechDonePtr)(SpeechChannel, SRefCon) = speechDone;
struct SpeechState *speechStatePtr = &speechState;
CFNumberRef doneCallbackNumber = CFNumberCreate(NULL, kCFNumberLongType, &speechDonePtr);
CFNumberRef refConNumber = CFNumberCreate(NULL, kCFNumberLongType, &speechStatePtr);

ばかげた間違いだ!

于 2013-07-16T19:45:30.463 に答える