- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
所以我想知道从默认麦克风读取数据并输出到默认扬声器的最短(就有效线路而言)开放 AL 代码是什么?
我在 Visual Studio 2008 下的 windows 7 上开发
最佳答案
一个古老的问题,但这里有一个答案。如果我们真的想要简洁,它肯定可以被修剪,但这比 100 行有效行要少一点:
#include <AL/al.h> // OpenAL header files
#include <AL/alc.h>
#include <list>
using std::list;
#define FREQ 22050 // Sample rate
#define CAP_SIZE 2048 // How much to capture at a time (affects latency)
int main(int argC,char* argV[])
{
list<ALuint> bufferQueue; // A quick and dirty queue of buffer objects
ALenum errorCode=0;
ALuint helloBuffer[16], helloSource[1];
ALCdevice* audioDevice = alcOpenDevice(NULL); // Request default audio device
errorCode = alcGetError(audioDevice);
ALCcontext* audioContext = alcCreateContext(audioDevice,NULL); // Create the audio context
alcMakeContextCurrent(audioContext);
errorCode = alcGetError(audioDevice);
// Request the default capture device with a half-second buffer
ALCdevice* inputDevice = alcCaptureOpenDevice(NULL,FREQ,AL_FORMAT_MONO16,FREQ/2);
errorCode = alcGetError(inputDevice);
alcCaptureStart(inputDevice); // Begin capturing
errorCode = alcGetError(inputDevice);
alGenBuffers(16,&helloBuffer[0]); // Create some buffer-objects
errorCode = alGetError();
// Queue our buffers onto an STL list
for (int ii=0;ii<16;++ii) {
bufferQueue.push_back(helloBuffer[ii]);
}
alGenSources (1, &helloSource[0]); // Create a sound source
errorCode = alGetError();
short buffer[FREQ*2]; // A buffer to hold captured audio
ALCint samplesIn=0; // How many samples are captured
ALint availBuffers=0; // Buffers to be recovered
ALuint myBuff; // The buffer we're using
ALuint buffHolder[16]; // An array to hold catch the unqueued buffers
bool done = false;
while (!done) { // Main loop
// Poll for recoverable buffers
alGetSourcei(helloSource[0],AL_BUFFERS_PROCESSED,&availBuffers);
if (availBuffers>0) {
alSourceUnqueueBuffers(helloSource[0],availBuffers,buffHolder);
for (int ii=0;ii<availBuffers;++ii) {
// Push the recovered buffers back on the queue
bufferQueue.push_back(buffHolder[ii]);
}
}
// Poll for captured audio
alcGetIntegerv(inputDevice,ALC_CAPTURE_SAMPLES,1,&samplesIn);
if (samplesIn>CAP_SIZE) {
// Grab the sound
alcCaptureSamples(inputDevice,buffer,CAP_SIZE);
//***** Process/filter captured data here *****//
//for (int ii=0;ii<CAP_SIZE;++ii) {
// buffer[ii]*=0.1; // Make it quieter
//}
// Stuff the captured data in a buffer-object
if (!bufferQueue.empty()) { // We just drop the data if no buffers are available
myBuff = bufferQueue.front(); bufferQueue.pop_front();
alBufferData(myBuff,AL_FORMAT_MONO16,buffer,CAP_SIZE*sizeof(short),FREQ);
// Queue the buffer
alSourceQueueBuffers(helloSource[0],1,&myBuff);
// Restart the source if needed
// (if we take too long and the queue dries up,
// the source stops playing).
ALint sState=0;
alGetSourcei(helloSource[0],AL_SOURCE_STATE,&sState);
if (sState!=AL_PLAYING) {
alSourcePlay(helloSource[0]);
}
}
}
}
// Stop capture
alcCaptureStop(inputDevice);
alcCaptureCloseDevice(inputDevice);
// Stop the sources
alSourceStopv(1,&helloSource[0]);
for (int ii=0;ii<1;++ii) {
alSourcei(helloSource[ii],AL_BUFFER,0);
}
// Clean-up
alDeleteSources(1,&helloSource[0]);
alDeleteBuffers(16,&helloBuffer[0]);
errorCode = alGetError();
alcMakeContextCurrent(NULL);
errorCode = alGetError();
alcDestroyContext(audioContext);
alcCloseDevice(audioDevice);
return 0;
}
关于c++ - OpenAL:如何创建简单的 "Microphone Echo"程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4087727/
我有一个 HTML 文件,当您单击按钮时,Ajax 会加载一个 PHP 文件,然后 PHP 文件将一些文本回显到 HTML 文件。 问题是,如果我第二次(或第三次、第四次等)单击该按钮,下一个 ech
我正在尝试使用以下方法调用数据库中的 HTML/PHP 内容: 当调用该行时,HTML 会正确显示,但 PHP 不会。我相信这是主 echo 内部 echo 的原因。 Hello \
我正在尝试使用复选框来显示和更新 MySQL 数据库中的记录。我想根据复选框是选中还是未选中来更改复选框的值。但是我收到了这个错误: 解析错误:语法错误,意外的 T_ENCAPSED_AND_WHIT
我遇到了重定向符号的不同位置( > , &2 message message echo message >&2 message >&2 echo message message 对于所有表单,我得到了
这个问题在这里已经有了答案: Source files in a bash script (2 个回答) 2年前关闭。 https://askubuntu.com/questions/250012/h
我注意到当我在 DOS 中使用 echo 将某些内容打印到文件时,会在字符串后附加一个空格。我需要打印没有尾随空格的字符串。有没有办法做到这一点,或者作为一种解决方法,从文件中删除尾随空格? 最佳答案
不确定我在这里做错了什么,但结果总是空的。只有当没有选择答案时,脚本才应该输出“你没有选择答案”,否则它应该输出给定的答案: 我已经按照提到的更新了脚本,但即使给出了答案,仍然得到空输出:/ 感谢到目
不确定我在这里做错了什么,但结果总是空的。只有当没有选择答案时,脚本才应该输出“你没有选择答案”,否则它应该输出给定的答案: 我已经按照提到的更新了脚本,但即使给出了答案,仍然得到空输出:/ 感谢到目
echo 'Welcome echo $_SESSION["username"];'; 在上面的代码中,它没有显示用户名变量。相反,它只是简单地回显 Welcome $_SESSION["userna
我试图在 php echo 语句中回显一个 php 变量。 我在 MySql 数据库中有一个名为 display_code 的列,其中包含一个值,例如 $num_rows_customers。 我从数
如上所述,我想知道为什么我们使用@Echo off/on 而不是Echo off/on。这是有什么原因还是只是为了可见性?根据这个,它在视觉上似乎没有什么不同: C:\Users\Jack> Echo
我希望能够将新的 ECHO 消息连接到先前的 ECHO 消息,如下所示: 命令: ECHO PROCESSING... REM some process here ECHO DONE 结果: PROC
我不了解 jQuery,所以如果这是一个愚蠢的问题,我很抱歉。 当我将值从 php 传递到 javascript 时,即使之前用 echo 打印的消息也被传递,我怎样才能避免这种情况? php $
请有人解释一下下面的结果差异 echo intval(1e10); 输出1410065408 echo 1e10; 输出10000000000 最佳答案 有符号整数有最大值。在 32 位系统上,它
我正在制作导航菜单,我想添加一个事件类这是我的代码 我想输出 CSTYLE 并使用 'if 来回显事件类 %s %s ', $row['CSTYLE'], $row['id'], $row['na
echo -n 的终端手册页如下: -n Do not print the trailing newline character. This may also be achie
直到今天它突然停止工作时,它一直工作得很好......(我知道这不是很有帮助,但我到处都看了看) 我正在遍历从 mySQL 查询返回的值,并将每个值放入一个数组中,然后将这个数组放入另一个数组中。然后
目前我正在这样做: $lines = file('data/index'); foreach ($lines as $value) list($title, $location) =
我在 PHP CLI 中运行以下脚本: 什么都没有显示。如何启用输出? 最佳答案 在您的终端中运行它: php -r 'echo "Hello World!\n";' 关于echo - 在 PHP
希望这是一个简单的问题... 我正在使用批处理文件来移动一些文件,不幸的是,出于各种原因,这有点复杂。要正常运行,需要右键单击并“以管理员身份运行”。 为了提醒未清洗的大众和我执行该步骤,我希望第一行
我是一名优秀的程序员,十分优秀!