linux音频设备驱动问题
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <linux/soundcard.h>
#define BUF_LENGTH 2000
#define CHANNELS 0 /*0--single channel;2--double channel*/
#define SAMPLE_RATE 8000
int set_fmt(int audio_fd, int bits, int rate, int channel)
{
int status = -1;
if( -1 == ioctl(audio_fd, SNDCTL_DSP_SAMPLESIZE, &bits))
{
perror("ioctl SNDCTL_DSP_SAMPLESIZE");
exit(1);
}
if(-1 == ioctl(audio_fd, SNDCTL_DSP_SPEED, &rate))
{
perror("ioctl SNDCTL_DSP_SPEED");
exit(1);
}
if(-1 == ioctl(audio_fd, SNDCTL_DSP_CHANNELS, &channel))
{
perror("ioctl SNDCTL_DSP_CHANNELS");
exit(1);
}
return(0);
}
main()
{
int audio_fd = 0;
int bytes = 0;
int i = 0;
char buf[BUF_LENGTH];
audio_fd = open("/dev/dsp", O_RDWR);
if(audio_fd < 0)
{
perror("open /dev/dsp");
exit(1);
}
if(-1 == (set_fmt(audio_fd, AFMT_U8, SAMPLE_RATE, CHANNELS)))
{
perror("set_fmt");
exit(1);
}
for(i=0; i<5000; i++)
{
if(-1 == (bytes = read(audio_fd, buf, BUF_LENGTH)))
{
perror("read");
exit(1);
}
if(-1 == write(audio_fd, buf, bytes))
{
perror("write");
exit(1);
}
}
printf("It'll be closed\n");
close(audio_fd);
}
使用这段代码编译后,为什么不能使用阿?没有任何错误信息,就是不出声!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请分开些,打开设备的时候不要用O_RDWR!
O_RDONLY - record
O_WRONLY - playback
OSS里面好像建议这样做
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <linux/soundcard.h>
#define BUF_LENGTH 2000
#define CHANNELS 0 /*0--single channel;2--double channel*/
#define SAMPLE_RATE 8000
int set_fmt(int audio_fd, int bits, int rate, int channel)
{
int status = -1;
if( -1 == ioctl(audio_fd, SNDCTL_DSP_SAMPLESIZE, &bits))
{
perror("ioctl SNDCTL_DSP_SAMPLESIZE");
exit(1);
}
if(-1 == ioctl(audio_fd, SNDCTL_DSP_SPEED, &rate))
{
perror("ioctl SNDCTL_DSP_SPEED");
exit(1);
}
if(-1 == ioctl(audio_fd, SNDCTL_DSP_CHANNELS, &channel))
{
perror("ioctl SNDCTL_DSP_CHANNELS");
exit(1);
}
return(0);
}
main()
{
int audio_fd = 0;
int bytes = 0;
int i = 0;
char buf[BUF_LENGTH];
audio_fd = open("/dev/dsp", O_RDONLY);
if(audio_fd < 0)
{
perror("open /dev/dsp");
exit(1);
}
if(-1 == (set_fmt(audio_fd, AFMT_U8, SAMPLE_RATE, CHANNELS)))
{
perror("set_fmt");
exit(1);
}
for(i=0; i<500; i++)
{
if(-1 == (bytes = read(audio_fd, buf, BUF_LENGTH)))
{
perror("read");
exit(1);
}
}
close(audio_fd);
audio_fd = open("/dev/dsp", O_WRONLY);
if(audio_fd < 0)
{
perror("open /dev/dsp");
exit(1);
}
if(-1 == (set_fmt(audio_fd, AFMT_U8, SAMPLE_RATE, CHANNELS)))
{
perror("set_fmt");
exit(1);
}
for(i=0; i<500; i++)
{
if(-1 == write(audio_fd, buf, bytes))
{
perror("write");
exit(1);
}
}
printf("It'll be closed\n");
close(audio_fd);
}
是这样写马?不行阿,好像打开设备就有问题……程序就是到open这里就运行不了了……
我用你的代码编译过,试过了, 代码逻辑没有问题。但是运行时间可能有些久,是不是你说的运行不了就是指的程序没有结束呢?如果是这样,那请你多等一会,如果不是,就再说了。反正在我这边是没有问题的.
时间久的原因:低采样率和采样精度,因为8K 8bit的采样率每秒产生的数据量是很低的。填充总长是2K*500的buffer需要一定时间。可以选择小的循环次数来做测试。
我也用你的編程試過,是可以跑的,只是時間會比較久。