linux音频设备驱动问题

发布于 2022-09-18 22:31:24 字数 3997 浏览 11 评论 0

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

后eg是否自 2022-09-25 22:31:24

请分开些,打开设备的时候不要用O_RDWR!
O_RDONLY - record
O_WRONLY - playback

OSS里面好像建议这样做

醉态萌生 2022-09-25 22:31:24

#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这里就运行不了了……

浪漫之都 2022-09-25 22:31:24

我用你的代码编译过,试过了, 代码逻辑没有问题。但是运行时间可能有些久,是不是你说的运行不了就是指的程序没有结束呢?如果是这样,那请你多等一会,如果不是,就再说了。反正在我这边是没有问题的.

时间久的原因:低采样率和采样精度,因为8K 8bit的采样率每秒产生的数据量是很低的。填充总长是2K*500的buffer需要一定时间。可以选择小的循环次数来做测试。

悲歌长辞 2022-09-25 22:31:24

我也用你的編程試過,是可以跑的,只是時間會比較久。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文