关于系统输入的重定向
我写了个处理声音的程序 linux下alsa程序 执行命令行时比如 ./replay <test.raw
这样可以正常播放声音
但是我想把声音文件在程序中引入
我使用以下代码 代替 <test.raw 系统输入的重定向
int fd;
if((fd = open("/home/wswhp/Alsa/test.raw", O_RDONLY)) <0){
perror("open");exit(1);
}
printf("fd is %d!\n",fd);
...........
rc = read(fd, buffer, size);
..........
但是不能正常播放原来的声音文件了
请问大家我写的重定向代码有问题吗,应该怎么写才等同于命令行的 <test.raw
alsa 播放的代码写出来
while (loops > 0) {
loops--;
rc = read(0, buffer, size);
if (rc == 0) {
fprintf(stderr, "end of file on input\n");
break;
} else if (rc != size) {
fprintf(stderr,
"short read: read %d bytes\n", rc);
}
rc = snd_pcm_writei(handle, buffer, frames); if (rc == -EPIPE) {
/* EPIPE means underrun */
fprintf(stderr, "underrun occurred\n");
snd_pcm_prepare(handle);
} else if (rc < 0) {
fprintf(stderr,
"error from writei: %s\n",
snd_strerror(rc));
} else if (rc != (int)frames) {
fprintf(stderr,
"short write, write %d frames\n", rc);
}
}