教你怎么在i.mx283上面播放出MP3

2020-02-11 09:09发布

本帖最后由 jxcylxh 于 2014-9-22 22:30 编辑

哈哈,高兴之余给大家分享一下哦,其实非常简单的,这里我用的是EasyARM283,这个板子没有提供声卡,那么这里我们使用一张USB DAC ,步骤如下:
1:编译内核,解压linux-2.6.35.3.tar.bz2,这里我使用的是arm-linux-gcc这个交叉编译链,所以要修改一下Makefile:

root@LinuxUser:/opt/fslkernel# cd linux-2.6.35.3
root@LinuxUser:/opt/fslkernel/linux-2.6.35.3# vi Makefile

找到CROSS_COMPILE让他等于你的编译器

export KBUILD_BUILDHOST := $(SUBARCH)
#ARCH           ?= $(SUBARCH)
ARCH            ?= arm

CROSS_COMPILE   ?= arm-linux-

好后面我们直接执行 make menuconfig
我们把USB DAC编译到内核里面去,如下:

support.jpg (330.2 KB, 下载次数: 0) 下载附件 2014-9-22 21:48 上传


好我们保存退出,执行make zImage -j8
后面就用Uboot更新一下内核,或者网络NFS加载也可以,具体的我就不讲了。

2.编译Libmad,这个是一个MP3的解码器,使用定点运算,输出的是24Bit的PCM,这个其实也很多教程,大家可以网上找,把编译好的 .so库拷贝到开发板下面去,要是你不想编译,这里有: Libmad.zip (177.23 KB, 下载次数: 6) 2014-9-22 22:14 上传 点击文件名下载附件
解压以后拷贝到你开发板上面的lib文件夹下面,

3.写一个简单的播放程序,贴上一个我在CSDN上面下载的:
  1. /*
  2. * 本程序是从 minimad 改进而来,如要更详细的说明请参看 minimad.c
  3. * 编译: arm-linux-gcc minimad.c -o MyMinimad -lmad -g -Wall
  4. * 运行: ./MyMinimad filename.mp3
  5. */
  6. # include <stdio.h>
  7. # include <stdlib.h>
  8. # include <unistd.h>
  9. # include <sys/stat.h>
  10. # include <sys/mman.h>
  11. # include <sys/soundcard.h>
  12. # include <sys/ioctl.h>
  13. # include <sys/fcntl.h>
  14. # include <sys/types.h>
  15. # include <mad.h>
  16. struct buffer {
  17.     unsigned char const *start;
  18.     unsigned long length;
  19. };

  20. static int sfd;                        /*声音设备的描述符 */
  21. static int decode(unsigned char const *, unsigned long);

  22.   

  23. int main(int argc, char *argv[])
  24. {
  25.     struct stat stat;
  26.     void *fdm;
  27.     char const *file;
  28.     int fd;

  29.     file = argv[1];
  30.     fd = open(file, O_RDONLY);
  31.     if ((sfd = open("/dev/dsp", O_WRONLY)) < 0) {
  32.         printf("can not open device!!!/n");
  33.         return 5;
  34.     }

  35.        
  36.     ioctl(sfd, SNDCTL_DSP_SYNC, 0);        /*此句可以不要 */
  37.     if (fstat(fd, &stat) == -1 || stat.st_size == 0)
  38.         return 2;
  39.     fdm = mmap(0, stat.st_size, PROT_READ, MAP_SHARED, fd, 0);
  40.     if (fdm == MAP_FAILED)
  41.         return 3;
  42.     decode(fdm, stat.st_size);
  43.     if (munmap(fdm, stat.st_size) == -1)
  44.         return 4;
  45.     ioctl(sfd, SNDCTL_DSP_RESET, 0);
  46.     close(sfd);
  47.     return 0;
  48. }
  49. static
  50. enum mad_flow input(void *data, struct mad_stream *stream)
  51. {
  52.     struct buffer *buffer = data;
  53.     if (!buffer->length)
  54.         return MAD_FLOW_STOP;
  55.     mad_stream_buffer(stream, buffer->start, buffer->length);
  56.     buffer->length = 0;
  57.     return MAD_FLOW_CONTINUE;
  58. }
  59. /*这一段是处理采样后的pcm音频 */
  60. static inline signed int scale(mad_fixed_t sample)
  61. {
  62.    
  63.     if (sample >= MAD_F_ONE)
  64.         sample = MAD_F_ONE - 1;
  65.     else if (sample < -MAD_F_ONE)
  66.         sample = -MAD_F_ONE;

  67.     return (sample /8192);  //28 -16 = 13
  68.     //return sample;
  69. }
  70. static
  71. enum mad_flow output(void *data,
  72.                      struct mad_header const *header, struct mad_pcm *pcm)
  73. {
  74.     unsigned int nchannels, nsamples, n;
  75.     mad_fixed_t const *left_ch, *right_ch;
  76.     unsigned char Output[6912*10], *OutputPtr;
  77.     int fmt, wrote, speed;

  78.     nchannels = pcm->channels;
  79.     n = nsamples = pcm->length;
  80.     left_ch = pcm->samples[0];
  81.     right_ch = pcm->samples[1];

  82.     fmt = AFMT_S16_LE;
  83.     speed = (pcm->samplerate <<1 );        /*播放速度是采样率的两倍 */
  84.     ioctl(sfd, SNDCTL_DSP_SPEED, &(speed));
  85.     ioctl(sfd, SNDCTL_DSP_SETFMT, &fmt);
  86.     ioctl(sfd, SNDCTL_DSP_CHANNELS, &(pcm->channels));
  87.     OutputPtr = Output;
  88.     while (nsamples--) {
  89.         signed int sample;
  90.         sample = scale(*left_ch++);
  91.         *(OutputPtr++) = ( unsigned char)(sample >> 0);
  92.         *(OutputPtr++) = ( unsigned char)(sample >> 8);
  93.        
  94.         if (nchannels == 2) {
  95.          sample = scale(*right_ch++);
  96.     *(OutputPtr++) = ( unsigned char)(sample >> 0);
  97.         *(OutputPtr++) = ( unsigned char)(sample >> 8);

  98.         }
  99.     }
  100.     n *= 4;                        /*数据长度为pcm音频采样的4倍 */
  101.     OutputPtr = Output;
  102.     while (n) {
  103.         wrote = write(sfd, OutputPtr, n);
  104.         OutputPtr += wrote;
  105.         n -= wrote;
  106.     }
  107.     OutputPtr = Output;
  108.     return MAD_FLOW_CONTINUE;
  109. }

  110. static
  111. enum mad_flow error(void *data,
  112.                     struct mad_stream *stream, struct mad_frame *frame)
  113. {
  114.     return MAD_FLOW_CONTINUE;
  115. }

  116. static
  117. int decode(unsigned char const *start, unsigned long length)
  118. {
  119.     struct buffer buffer;
  120.     struct mad_decoder decoder;
  121.     int result;
  122.     buffer.start = start;
  123.     buffer.length = length;
  124.     mad_decoder_init(&decoder, &buffer, input, 0, 0, output, error, 0);
  125.     mad_decoder_options(&decoder, 0);
  126.     result = mad_decoder_run(&decoder, MAD_DECODER_MODE_SYNC);
  127.     mad_decoder_finish(&decoder);
  128.     return result;
  129. }
复制代码

看到这里是16位的,如果你的声卡支持24位,也可以修改为24位输出,怎么改,自己查咯。
/*这一段是处理采样后的pcm音频 */
static inline signed int scale(mad_fixed_t sample)
{
   
    if (sample >= MAD_F_ONE)
        sample = MAD_F_ONE - 1;
    else if (sample < -MAD_F_ONE)
        sample = -MAD_F_ONE;

    return (sample /8192);  //28 -16 = 13
    //return sample;
}



编译的话上面有提示怎么编译,我自己还简单的写了个Makefile,但是貌似不见了,大家直接执行上面那个编译命令就可以了,这里也有编译出来的可执行文件: miniplay.rar (3.71 KB, 下载次数: 5) 2014-9-22 22:21 上传 点击文件名下载附件


好了,把他通过NFS拷贝到开发板,弄一首自己喜欢的歌,这样 ./miniplay  ****.mp3
插上耳机,应该有声音了吧,好了,先到这里,我也是刚刚才玩15天,之前都没有接触过这些东西,哎,万里长征只跨出第一步。加油。。。。。。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。