0

我收到错误

pa_simple_new() failed: Connection refused

在尝试调用pa_simple_new函数时。这是代码。

int error;
static const pa_sample_spec ss = {
    .format = PA_SAMPLE_S16LE,
    .rate = 44100,
    .channels = 2
};

/* Create the recording stream */
if (!(m_pAudioIn = pa_simple_new(NULL, "APPNAME", PA_STREAM_RECORD, NULL, "record", &ss, NULL, NULL, &error)))
{
    fprintf(stderr, "pa_simple_new() failed: %s\n", pa_strerror(error));
    return -1;
}
4

1 回答 1

0

重新安装 PulseAudio 解决问题

于 2013-12-18T20:12:53.393 回答