Lin*_*äck 0 c++ audio g++ pulseaudio
我正在尝试使用pulseaudio来参加vorbis-stream的比赛但是遇到了问题.基本上我被告知:
‘pa_simple’ was not declared in this scope
‘pa_simple_new’ was not declared in this scope
‘pa_simple_write’ was not declared in this scope
Run Code Online (Sandbox Code Playgroud)
一些代码如下所示:
#include <pulse/pulseaudio.h>
Run Code Online (Sandbox Code Playgroud)
pa_simple *s;
pa_sample_spec ss;
ss.format = PA_SAMPLE_S16NE;
ss.channels = 2;
ss.rate = 44100;
s = pa_simple_new(
NULL, // Use the default server.
"Fooapp", // Our application's name.
PA_STREAM_PLAYBACK, // Playback
NULL, // Use the default device.
"Music", // Description of our stream.
&ss, // Our sample format.
NULL, // Use default channel map
NULL, // Use default buffering attributes.
NULL, // Ignore error code.
);
Run Code Online (Sandbox Code Playgroud)
while((samples=vorbis_synthesis_pcmout(&vd,&pcm))>0){
int j;
int bout=(samples<convsize?samples:convsize);
cout << "D" << endl;
for(i=0;i<vi.channels;i++){
ogg_int16_t *ptr=convbuffer+i;
float *mono=pcm[i];
for(j=0;j<bout;j++){
int val=floor(mono[j]*32767.f+.5f);
*ptr=val;
ptr+=vi.channels;
}
}
cout << "E" << endl;
#ifdef PulseAudio
pa_simple_write(s,convbuffer,2*vi.channels,NULL);
#else
fwrite(convbuffer,2*vi.channels,bout,output);
#endif
vorbis_synthesis_read(&vd,bout);
cout << "F" << endl;
}
Run Code Online (Sandbox Code Playgroud)
这可能是一个简单的错误,但如果有人能指出我正确的方向,那就太棒了!
这些都是在simple.h中定义的,所以#include
在文件的顶部添加一个新的:
#include <pulse/simple.h>
Run Code Online (Sandbox Code Playgroud)