我正在用java(c ++和汇编语言)编写音频应用程序,我需要连续播放一组整数,这些整数存储了我想要的音频样本(这必须在java中完成)。 / p>
所以我需要一个能让我在音频流中随时输出样本的功能。
int sample; //The integer i want to play
while(true)
{
//here i will modify the array of samples
}
//.....in another thread:
{
// Here i need a function that plays a samples
FunctionThatPlaysinteger(sample);
}