实例介绍
基于韦东山三期视频第一个项目,在此基础上添加了 MP3 播放器,可以播放大多数 MP3 文件,播放页面有音量控制,进度条以及歌曲名等
【实例截图】
【核心代码】
项目打包
└── 项目打包
├── USB
│ ├── Makefile
│ ├── Module.symvers
│ ├── usb.c
│ ├── usb.ko
│ ├── usb.mod.c
│ ├── usb.mod.o
│ └── usb.o
├── alsa-sound
│ ├── minimad.c
│ ├── miniplay.c
│ └── wav.c
├── digital_book
│ ├── HZK16
│ ├── Makefile
│ ├── Makefile.build
│ ├── TB-ansi.txt
│ ├── TB-utf16be.txt
│ ├── TB-utf16le.txt
│ ├── TB-utf8.txt
│ ├── TB.txt
│ ├── display
│ │ ├── Makefile
│ │ ├── dis_manag.c
│ │ └── fb.c
│ ├── draw
│ │ ├── Makefile
│ │ └── draw.c
│ ├── draw_line_test.c
│ ├── encoding
│ │ ├── Makefile
│ │ ├── e_ansi.c
│ │ ├── e_gbk.c
│ │ ├── encoding_manag.c
│ │ ├── utf-16be.c
│ │ ├── utf-16le.c
│ │ └── utf-8.c
│ ├── encoding_test.c
│ ├── font
│ │ ├── Makefile
│ │ ├── ascii.c
│ │ ├── font_manag.c
│ │ ├── freetype.c
│ │ ├── gbk.c
│ │ └── 新建文本文档.txt
│ ├── fonts_test.c
│ ├── include
│ │ ├── dis_manag.h
│ │ ├── draw.h
│ │ ├── encoding_manag.h
│ │ ├── font_manag.h
│ │ ├── input_manag.h
│ │ ├── print_manag.h
│ │ └── system
│ │ ├── common_config.h
│ │ └── common_st.h
│ ├── input
│ │ ├── Makefile
│ │ ├── board_key.c
│ │ ├── console.c
│ │ ├── input_manag.c
│ │ └── touchscreen.c
│ ├── input_select
│ │ ├── Makefile
│ │ ├── board_key.c
│ │ ├── console.c
│ │ ├── input_manag.c
│ │ └── touchscreen.c
│ ├── main.c
│ ├── netprint
│ │ ├── Makefile
│ │ ├── client.c
│ │ ├── consoleprint.c
│ │ ├── netprint.c
│ │ └── print_manag.c
│ ├── simfang.ttf
│ ├── stdin.c
│ ├── system
│ │ ├── Makefile
│ │ └── common_st.c
│ ├── test.c
│ ├── test1.c
│ ├── 简单说明.txt
│ └── 《刘慈欣作品全集》(v1.0).rar
├── fs_mini_mdev_new.jffs2
├── fs_mini_mdev_new.yaffs2
├── lcd
│ ├── Makefile
│ ├── common.h
│ └── lcd.c
├── lcd_ts
│ ├── Makefile
│ └── lcd_ts.c
├── linux-3.4.3-jz2440.patch
├── mp3-online
│ ├── alsa
│ │ ├── alsa-lib-1.1.2
│ │ │ ├── COPYING
│ │ │ ├── ChangeLog
│ │ │ ├── INSTALL
│ │ │ ├── MEMORY-LEAK
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── NOTES
│ │ │ ├── TODO
│ │ │ ├── acinclude.m4
│ │ │ ├── aclocal.m4
│ │ │ ├── alsalisp
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── alsalisp.c
│ │ │ ├── aserver
│ │ │ │ ├── COPYING
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── aserver.c
│ │ │ ├── config.guess
│ │ │ ├── config.sub
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── depcomp
│ │ │ ├── doc
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README.1st
│ │ │ │ ├── asoundrc.txt
│ │ │ │ ├── doxygen.cfg
│ │ │ │ ├── doxygen.cfg.in
│ │ │ │ ├── index.doxygen
│ │ │ │ └── pictures
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── wave1.gif
│ │ │ │ └── wave2.gif
│ │ │ ├── gitcompile
│ │ │ ├── include
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alisp.h
│ │ │ │ ├── alsa
│ │ │ │ ├── alsa-symbols.h
│ │ │ │ ├── aserver.h
│ │ │ │ ├── asoundef.h
│ │ │ │ ├── asoundlib-head.h
│ │ │ │ ├── asoundlib-tail.h
│ │ │ │ ├── asoundlib.h
│ │ │ │ ├── bswap.h
│ │ │ │ ├── conf.h
│ │ │ │ ├── config.h.in
│ │ │ │ ├── control.h
│ │ │ │ ├── control_external.h
│ │ │ │ ├── error.h
│ │ │ │ ├── global.h
│ │ │ │ ├── hwdep.h
│ │ │ │ ├── input.h
│ │ │ │ ├── list.h
│ │ │ │ ├── local.h
│ │ │ │ ├── mixer.h
│ │ │ │ ├── mixer_abst.h
│ │ │ │ ├── output.h
│ │ │ │ ├── pcm.h
│ │ │ │ ├── pcm_external.h
│ │ │ │ ├── pcm_extplug.h
│ │ │ │ ├── pcm_ioplug.h
│ │ │ │ ├── pcm_old.h
│ │ │ │ ├── pcm_plugin.h
│ │ │ │ ├── pcm_rate.h
│ │ │ │ ├── rawmidi.h
│ │ │ │ ├── search.h
│ │ │ │ ├── seq.h
│ │ │ │ ├── seq_event.h
│ │ │ │ ├── seq_midi_event.h
│ │ │ │ ├── seqmid.h
│ │ │ │ ├── sound
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── asequencer.h
│ │ │ │ │ ├── asoc.h
│ │ │ │ │ ├── asound.h
│ │ │ │ │ ├── asound_fm.h
│ │ │ │ │ ├── asoundef.h
│ │ │ │ │ ├── emu10k1.h
│ │ │ │ │ ├── hdsp.h
│ │ │ │ │ ├── hdspm.h
│ │ │ │ │ ├── sb16_csp.h
│ │ │ │ │ ├── sscape_ioctl.h
│ │ │ │ │ ├── tlv.h
│ │ │ │ │ └── type_compat.h
│ │ │ │ ├── sys.h
│ │ │ │ ├── timer.h
│ │ │ │ ├── topology.h
│ │ │ │ ├── type_compat.h
│ │ │ │ ├── use-case.h
│ │ │ │ └── version.h
│ │ │ ├── install-sh
│ │ │ ├── libtool
│ │ │ ├── ltconfig
│ │ │ ├── ltmain.sh
│ │ │ ├── m4
│ │ │ │ └── attributes.m4
│ │ │ ├── missing
│ │ │ ├── modules
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── mixer
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── simple
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── ac97.c
│ │ │ │ ├── hda.c
│ │ │ │ ├── python.c
│ │ │ │ ├── sbase.c
│ │ │ │ ├── sbase.h
│ │ │ │ └── sbasedl.c
│ │ │ ├── src
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── Versions
│ │ │ │ ├── Versions.in
│ │ │ │ ├── alisp
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── alisp.c
│ │ │ │ │ ├── alisp_local.h
│ │ │ │ │ └── alisp_snd.c
│ │ │ │ ├── async.c
│ │ │ │ ├── conf
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── alsa.conf
│ │ │ │ │ ├── alsa.conf.d
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── cards
│ │ │ │ │ │ ├── AACI.conf
│ │ │ │ │ │ ├── ATIIXP-MODEM.conf
│ │ │ │ │ │ ├── ATIIXP-SPDMA.conf
│ │ │ │ │ │ ├── ATIIXP.conf
│ │ │ │ │ │ ├── AU8810.conf
│ │ │ │ │ │ ├── AU8820.conf
│ │ │ │ │ │ ├── AU8830.conf
│ │ │ │ │ │ ├── Audigy.conf
│ │ │ │ │ │ ├── Audigy2.conf
│ │ │ │ │ │ ├── Aureon51.conf
│ │ │ │ │ │ ├── Aureon71.conf
│ │ │ │ │ │ ├── CA0106.conf
│ │ │ │ │ │ ├── CMI8338-SWIEC.conf
│ │ │ │ │ │ ├── CMI8338.conf
│ │ │ │ │ │ ├── CMI8738-MC6.conf
│ │ │ │ │ │ ├── CMI8738-MC8.conf
│ │ │ │ │ │ ├── CMI8788.conf
│ │ │ │ │ │ ├── CS46xx.conf
│ │ │ │ │ │ ├── EMU10K1.conf
│ │ │ │ │ │ ├── EMU10K1X.conf
│ │ │ │ │ │ ├── ENS1370.conf
│ │ │ │ │ │ ├── ENS1371.conf
│ │ │ │ │ │ ├── ES1968.conf
│ │ │ │ │ │ ├── Echo_Echo3G.conf
│ │ │ │ │ │ ├── FM801.conf
│ │ │ │ │ │ ├── FWSpeakers.conf
│ │ │ │ │ │ ├── FireWave.conf
│ │ │ │ │ │ ├── GUS.conf
│ │ │ │ │ │ ├── HDA-Intel.conf
│ │ │ │ │ │ ├── ICE1712.conf
│ │ │ │ │ │ ├── ICE1724.conf
│ │ │ │ │ │ ├── ICH-MODEM.conf
│ │ │ │ │ │ ├── ICH.conf
│ │ │ │ │ │ ├── ICH4.conf
│ │ │ │ │ │ ├── Loopback.conf
│ │ │ │ │ │ ├── Maestro3.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── NFORCE.conf
│ │ │ │ │ │ ├── PC-Speaker.conf
│ │ │ │ │ │ ├── PMac.conf
│ │ │ │ │ │ ├── PMacToonie.conf
│ │ │ │ │ │ ├── PS3.conf
│ │ │ │ │ │ ├── RME9636.conf
│ │ │ │ │ │ ├── RME9652.conf
│ │ │ │ │ │ ├── SB-XFi.conf
│ │ │ │ │ │ ├── SI7018
│ │ │ │ │ │ │ ├── sndoc-mixer.alisp
│ │ │ │ │ │ │ └── sndop-mixer.alisp
│ │ │ │ │ │ ├── SI7018.conf
│ │ │ │ │ │ ├── TRID4DWAVENX.conf
│ │ │ │ │ │ ├── USB-Audio.conf
│ │ │ │ │ │ ├── VIA686A.conf
│ │ │ │ │ │ ├── VIA8233.conf
│ │ │ │ │ │ ├── VIA8233A.conf
│ │ │ │ │ │ ├── VIA8237.conf
│ │ │ │ │ │ ├── VX222.conf
│ │ │ │ │ │ ├── VXPocket.conf
│ │ │ │ │ │ ├── VXPocket440.conf
│ │ │ │ │ │ ├── YMF744.conf
│ │ │ │ │ │ ├── aliases.alisp
│ │ │ │ │ │ └── aliases.conf
│ │ │ │ │ ├── pcm
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── center_lfe.conf
│ │ │ │ │ │ ├── default.conf
│ │ │ │ │ │ ├── dmix.conf
│ │ │ │ │ │ ├── dpl.conf
│ │ │ │ │ │ ├── dsnoop.conf
│ │ │ │ │ │ ├── front.conf
│ │ │ │ │ │ ├── hdmi.conf
│ │ │ │ │ │ ├── iec958.conf
│ │ │ │ │ │ ├── modem.conf
│ │ │ │ │ │ ├── rear.conf
│ │ │ │ │ │ ├── side.conf
│ │ │ │ │ │ ├── surround21.conf
│ │ │ │ │ │ ├── surround40.conf
│ │ │ │ │ │ ├── surround41.conf
│ │ │ │ │ │ ├── surround50.conf
│ │ │ │ │ │ ├── surround51.conf
│ │ │ │ │ │ └── surround71.conf
│ │ │ │ │ ├── smixer.conf
│ │ │ │ │ ├── sndo-mixer.alisp
│ │ │ │ │ ├── topology
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── broadwell
│ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ │ └── broadwell.conf
│ │ │ │ │ │ └── sklrt286
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── codec0_in-cpr-1.bin
│ │ │ │ │ │ ├── codec0_in-mi.bin
│ │ │ │ │ │ ├── codec0_out-cpr-4.bin
│ │ │ │ │ │ ├── codec0_out-mo.bin
│ │ │ │ │ │ ├── codec1_out-cpr-5.bin
│ │ │ │ │ │ ├── codec1_out-mo.bin
│ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ │ ├── pvt.c
│ │ │ │ │ │ │ ├── pvt_data.c
│ │ │ │ │ │ │ ├── pvt_local.h
│ │ │ │ │ │ │ └── skl-tplg-interface.h
│ │ │ │ │ │ ├── dmic01_hifi_in-cpr-3.bin
│ │ │ │ │ │ ├── dmic01_hifi_in-mi.bin
│ │ │ │ │ │ ├── hdmi1_pt_out-cpr-7.bin
│ │ │ │ │ │ ├── hdmi1_pt_out-cpr-8.bin
│ │ │ │ │ │ ├── hdmi2_pt_out-cpr-10.bin
│ │ │ │ │ │ ├── hdmi2_pt_out-cpr-9.bin
│ │ │ │ │ │ ├── hdmi3_pt_out-cpr-11.bin
│ │ │ │ │ │ ├── hdmi3_pt_out-cpr-12.bin
│ │ │ │ │ │ ├── media0_in-cpr-0.bin
│ │ │ │ │ │ ├── media0_in-mi.bin
│ │ │ │ │ │ ├── media0_out-cpr-6.bin
│ │ │ │ │ │ ├── media0_out-mo.bin
│ │ │ │ │ │ └── skl_i2s.conf
│ │ │ │ │ └── ucm
│ │ │ │ │ ├── DAISY-I2S
│ │ │ │ │ │ ├── DAISY-I2S.conf
│ │ │ │ │ │ ├── HiFi.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ └── Makefile.in
│ │ │ │ │ ├── GoogleNyan
│ │ │ │ │ │ ├── GoogleNyan.conf
│ │ │ │ │ │ ├── HiFi.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ └── Makefile.in
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── PAZ00
│ │ │ │ │ │ ├── HiFi.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── PAZ00.conf
│ │ │ │ │ │ └── Record.conf
│ │ │ │ │ ├── PandaBoard
│ │ │ │ │ │ ├── FMAnalog
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── PandaBoard.conf
│ │ │ │ │ │ ├── hifi
│ │ │ │ │ │ ├── hifiLP
│ │ │ │ │ │ ├── record
│ │ │ │ │ │ ├── voice
│ │ │ │ │ │ └── voiceCall
│ │ │ │ │ ├── PandaBoardES
│ │ │ │ │ │ ├── FMAnalog
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── PandaBoardES.conf
│ │ │ │ │ │ ├── hifi
│ │ │ │ │ │ ├── hifiLP
│ │ │ │ │ │ ├── record
│ │ │ │ │ │ ├── voice
│ │ │ │ │ │ └── voiceCall
│ │ │ │ │ ├── SDP4430
│ │ │ │ │ │ ├── FMAnalog
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── SDP4430.conf
│ │ │ │ │ │ ├── hifi
│ │ │ │ │ │ ├── hifiLP
│ │ │ │ │ │ ├── record
│ │ │ │ │ │ ├── voice
│ │ │ │ │ │ └── voiceCall
│ │ │ │ │ ├── VEYRON-I2S
│ │ │ │ │ │ ├── HiFi.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ └── VEYRON-I2S.conf
│ │ │ │ │ ├── broadwell-rt286
│ │ │ │ │ │ ├── HiFi
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ └── broadwell-rt286.conf
│ │ │ │ │ ├── chtrt5645
│ │ │ │ │ │ ├── HiFi.conf
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ └── chtrt5645.conf
│ │ │ │ │ └── tegraalc5632
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── tegraalc5632.conf
│ │ │ │ ├── conf.c
│ │ │ │ ├── confmisc.c
│ │ │ │ ├── control
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── cards.c
│ │ │ │ │ ├── control.c
│ │ │ │ │ ├── control_ext.c
│ │ │ │ │ ├── control_hw.c
│ │ │ │ │ ├── control_local.h
│ │ │ │ │ ├── control_shm.c
│ │ │ │ │ ├── control_symbols.c
│ │ │ │ │ ├── ctlparse.c
│ │ │ │ │ ├── hcontrol.c
│ │ │ │ │ ├── namehint.c
│ │ │ │ │ ├── setup.c
│ │ │ │ │ └── tlv.c
│ │ │ │ ├── dlmisc.c
│ │ │ │ ├── error.c
│ │ │ │ ├── hwdep
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── hwdep.c
│ │ │ │ │ ├── hwdep_hw.c
│ │ │ │ │ ├── hwdep_local.h
│ │ │ │ │ └── hwdep_symbols.c
│ │ │ │ ├── input.c
│ │ │ │ ├── mixer
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── bag.c
│ │ │ │ │ ├── mixer.c
│ │ │ │ │ ├── mixer_local.h
│ │ │ │ │ ├── mixer_simple.h
│ │ │ │ │ ├── simple.c
│ │ │ │ │ ├── simple_abst.c
│ │ │ │ │ └── simple_none.c
│ │ │ │ ├── names.c
│ │ │ │ ├── output.c
│ │ │ │ ├── pcm
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── interval.c
│ │ │ │ │ ├── interval.h
│ │ │ │ │ ├── interval_inline.h
│ │ │ │ │ ├── ladspa.h
│ │ │ │ │ ├── mask.c
│ │ │ │ │ ├── mask.h
│ │ │ │ │ ├── mask_inline.h
│ │ │ │ │ ├── pcm.c
│ │ │ │ │ ├── pcm_adpcm.c
│ │ │ │ │ ├── pcm_alaw.c
│ │ │ │ │ ├── pcm_asym.c
│ │ │ │ │ ├── pcm_copy.c
│ │ │ │ │ ├── pcm_direct.c
│ │ │ │ │ ├── pcm_direct.h
│ │ │ │ │ ├── pcm_dmix.c
│ │ │ │ │ ├── pcm_dmix_generic.c
│ │ │ │ │ ├── pcm_dmix_i386.c
│ │ │ │ │ ├── pcm_dmix_i386.h
│ │ │ │ │ ├── pcm_dmix_x86_64.c
│ │ │ │ │ ├── pcm_dmix_x86_64.h
│ │ │ │ │ ├── pcm_dshare.c
│ │ │ │ │ ├── pcm_dsnoop.c
│ │ │ │ │ ├── pcm_empty.c
│ │ │ │ │ ├── pcm_ext_parm.h
│ │ │ │ │ ├── pcm_extplug.c
│ │ │ │ │ ├── pcm_file.c
│ │ │ │ │ ├── pcm_generic.c
│ │ │ │ │ ├── pcm_generic.h
│ │ │ │ │ ├── pcm_hooks.c
│ │ │ │ │ ├── pcm_hw.c
│ │ │ │ │ ├── pcm_iec958.c
│ │ │ │ │ ├── pcm_ioplug.c
│ │ │ │ │ ├── pcm_ladspa.c
│ │ │ │ │ ├── pcm_lfloat.c
│ │ │ │ │ ├── pcm_linear.c
│ │ │ │ │ ├── pcm_local.h
│ │ │ │ │ ├── pcm_meter.c
│ │ │ │ │ ├── pcm_misc.c
│ │ │ │ │ ├── pcm_mmap.c
│ │ │ │ │ ├── pcm_mmap_emul.c
│ │ │ │ │ ├── pcm_mulaw.c
│ │ │ │ │ ├── pcm_multi.c
│ │ │ │ │ ├── pcm_null.c
│ │ │ │ │ ├── pcm_params.c
│ │ │ │ │ ├── pcm_plug.c
│ │ │ │ │ ├── pcm_plugin.c
│ │ │ │ │ ├── pcm_plugin.h
│ │ │ │ │ ├── pcm_rate.c
│ │ │ │ │ ├── pcm_rate_linear.c
│ │ │ │ │ ├── pcm_route.c
│ │ │ │ │ ├── pcm_share.c
│ │ │ │ │ ├── pcm_shm.c
│ │ │ │ │ ├── pcm_simple.c
│ │ │ │ │ ├── pcm_softvol.c
│ │ │ │ │ ├── pcm_symbols.c
│ │ │ │ │ ├── plugin_ops.h
│ │ │ │ │ └── scopes
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── level.c
│ │ │ │ ├── rawmidi
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── rawmidi.c
│ │ │ │ │ ├── rawmidi_hw.c
│ │ │ │ │ ├── rawmidi_local.h
│ │ │ │ │ ├── rawmidi_symbols.c
│ │ │ │ │ └── rawmidi_virt.c
│ │ │ │ ├── seq
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── seq.c
│ │ │ │ │ ├── seq_event.c
│ │ │ │ │ ├── seq_hw.c
│ │ │ │ │ ├── seq_local.h
│ │ │ │ │ ├── seq_midi_event.c
│ │ │ │ │ ├── seq_old.c
│ │ │ │ │ ├── seq_symbols.c
│ │ │ │ │ └── seqmid.c
│ │ │ │ ├── shmarea.c
│ │ │ │ ├── socket.c
│ │ │ │ ├── timer
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── timer.c
│ │ │ │ │ ├── timer_hw.c
│ │ │ │ │ ├── timer_local.h
│ │ │ │ │ ├── timer_query.c
│ │ │ │ │ ├── timer_query_hw.c
│ │ │ │ │ └── timer_symbols.c
│ │ │ │ ├── topology
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── builder.c
│ │ │ │ │ ├── channel.c
│ │ │ │ │ ├── ctl.c
│ │ │ │ │ ├── dapm.c
│ │ │ │ │ ├── data.c
│ │ │ │ │ ├── elem.c
│ │ │ │ │ ├── ops.c
│ │ │ │ │ ├── parser.c
│ │ │ │ │ ├── pcm.c
│ │ │ │ │ ├── text.c
│ │ │ │ │ └── tplg_local.h
│ │ │ │ ├── ucm
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── main.c
│ │ │ │ │ ├── parser.c
│ │ │ │ │ ├── ucm_local.h
│ │ │ │ │ └── utils.c
│ │ │ │ └── userfile.c
│ │ │ ├── test
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── audio_time.c
│ │ │ │ ├── chmap.c
│ │ │ │ ├── client_event_filter.c
│ │ │ │ ├── control.c
│ │ │ │ ├── latency.c
│ │ │ │ ├── lsb
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── config.c
│ │ │ │ │ ├── midi_event.c
│ │ │ │ │ └── test.h
│ │ │ │ ├── midifile.3
│ │ │ │ ├── midifile.c
│ │ │ │ ├── midifile.h
│ │ │ │ ├── midiloop.c
│ │ │ │ ├── namehint.c
│ │ │ │ ├── oldapi.c
│ │ │ │ ├── pcm-multi-thread.c
│ │ │ │ ├── pcm.c
│ │ │ │ ├── pcm_min.c
│ │ │ │ ├── playmidi1.c
│ │ │ │ ├── queue_timer.c
│ │ │ │ ├── rawmidi.c
│ │ │ │ ├── seq-decoder.c
│ │ │ │ ├── seq-sender.c
│ │ │ │ ├── seq.c
│ │ │ │ ├── timer.c
│ │ │ │ └── user-ctl-element-set.c
│ │ │ ├── utils
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsa-lib.spec.in
│ │ │ │ ├── alsa.m4
│ │ │ │ ├── alsa.pc.in
│ │ │ │ └── buildrpm
│ │ │ └── version
│ │ ├── alsa-lib-1.1.2.tar.bz2
│ │ ├── alsa-utils-1.1.2
│ │ │ ├── ABOUT-NLS
│ │ │ ├── COPYING
│ │ │ ├── ChangeLog
│ │ │ ├── INSTALL
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── README
│ │ │ ├── TODO
│ │ │ ├── acinclude.m4
│ │ │ ├── aclocal.m4
│ │ │ ├── alsa-info
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsa-info.sh
│ │ │ │ └── alsa-info.sh.1
│ │ │ ├── alsaconf
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsaconf.8
│ │ │ │ ├── alsaconf.fr.8
│ │ │ │ ├── alsaconf.in
│ │ │ │ └── po
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── ja.po
│ │ │ │ └── ru.po
│ │ │ ├── alsactl
│ │ │ │ ├── 90-alsa-restore.rules.in
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsa-restore.service.in
│ │ │ │ ├── alsa-state.service.in
│ │ │ │ ├── alsactl.1
│ │ │ │ ├── alsactl.c
│ │ │ │ ├── alsactl.h
│ │ │ │ ├── alsactl_init.xml
│ │ │ │ ├── daemon.c
│ │ │ │ ├── init
│ │ │ │ │ ├── 00main
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── ca0106
│ │ │ │ │ ├── default
│ │ │ │ │ ├── hda
│ │ │ │ │ ├── help
│ │ │ │ │ ├── info
│ │ │ │ │ └── test
│ │ │ │ ├── init_parse.c
│ │ │ │ ├── init_sysdeps.c
│ │ │ │ ├── init_sysfs.c
│ │ │ │ ├── init_utils_run.c
│ │ │ │ ├── init_utils_string.c
│ │ │ │ ├── list.h
│ │ │ │ ├── lock.c
│ │ │ │ ├── monitor.c
│ │ │ │ ├── state.c
│ │ │ │ └── utils.c
│ │ │ ├── alsaloop
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsaloop.1
│ │ │ │ ├── alsaloop.c
│ │ │ │ ├── alsaloop.h
│ │ │ │ ├── control.c
│ │ │ │ └── pcmjob.c
│ │ │ ├── alsamixer
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsamixer.1
│ │ │ │ ├── card_select.c
│ │ │ │ ├── card_select.h
│ │ │ │ ├── cli.c
│ │ │ │ ├── colors.c
│ │ │ │ ├── colors.h
│ │ │ │ ├── device_name.c
│ │ │ │ ├── device_name.h
│ │ │ │ ├── die.c
│ │ │ │ ├── die.h
│ │ │ │ ├── mainloop.c
│ │ │ │ ├── mainloop.h
│ │ │ │ ├── mem.c
│ │ │ │ ├── mem.h
│ │ │ │ ├── mixer_controls.c
│ │ │ │ ├── mixer_controls.h
│ │ │ │ ├── mixer_display.c
│ │ │ │ ├── mixer_display.h
│ │ │ │ ├── mixer_widget.c
│ │ │ │ ├── mixer_widget.h
│ │ │ │ ├── proc_files.c
│ │ │ │ ├── proc_files.h
│ │ │ │ ├── textbox.c
│ │ │ │ ├── textbox.h
│ │ │ │ ├── utils.c
│ │ │ │ ├── utils.h
│ │ │ │ ├── volume_mapping.c
│ │ │ │ ├── volume_mapping.h
│ │ │ │ ├── widget.c
│ │ │ │ └── widget.h
│ │ │ ├── alsaucm
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── usecase.c
│ │ │ ├── amidi
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── amidi.1
│ │ │ │ └── amidi.c
│ │ │ ├── amixer
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── amixer.1
│ │ │ │ ├── amixer.c
│ │ │ │ └── amixer.h
│ │ │ ├── aplay
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── aplay.1
│ │ │ │ ├── aplay.c
│ │ │ │ ├── arecord.1
│ │ │ │ └── formats.h
│ │ │ ├── bat
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── alsa.c
│ │ │ │ ├── alsa.h
│ │ │ │ ├── alsabat-test.sh
│ │ │ │ ├── alsabat.1
│ │ │ │ ├── analyze.c
│ │ │ │ ├── analyze.h
│ │ │ │ ├── bat-signal.h
│ │ │ │ ├── bat.c
│ │ │ │ ├── common.c
│ │ │ │ ├── common.h
│ │ │ │ ├── convert.c
│ │ │ │ ├── convert.h
│ │ │ │ ├── latencytest.c
│ │ │ │ ├── latencytest.h
│ │ │ │ ├── signal.c
│ │ │ │ ├── tinyalsa.c
│ │ │ │ └── tinyalsa.h
│ │ │ ├── config.guess
│ │ │ ├── config.rpath
│ │ │ ├── config.sub
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── depcomp
│ │ │ ├── gitcompile
│ │ │ ├── iecset
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── iecbits.c
│ │ │ │ ├── iecset.1
│ │ │ │ └── iecset.c
│ │ │ ├── include
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── aconfig.h.in
│ │ │ │ ├── gettext.h
│ │ │ │ ├── gettext_curses.h
│ │ │ │ └── version.h
│ │ │ ├── install-sh
│ │ │ ├── m4
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── gettext.m4
│ │ │ │ ├── iconv.m4
│ │ │ │ ├── lib-ld.m4
│ │ │ │ ├── lib-link.m4
│ │ │ │ ├── lib-prefix.m4
│ │ │ │ ├── nls.m4
│ │ │ │ ├── po.m4
│ │ │ │ └── progtest.m4
│ │ │ ├── missing
│ │ │ ├── po
│ │ │ │ ├── LINGUAS
│ │ │ │ ├── Makefile.in.in
│ │ │ │ ├── Makevars
│ │ │ │ ├── POTFILES.in
│ │ │ │ ├── Rules-quot
│ │ │ │ ├── alsa-utils.pot
│ │ │ │ ├── boldquot.sed
│ │ │ │ ├── de.gmo
│ │ │ │ ├── de.po
│ │ │ │ ├── en@boldquot.header
│ │ │ │ ├── en@quot.header
│ │ │ │ ├── fr.gmo
│ │ │ │ ├── fr.po
│ │ │ │ ├── insert-header.sin
│ │ │ │ ├── ja.gmo
│ │ │ │ ├── ja.po
│ │ │ │ ├── quot.sed
│ │ │ │ ├── remove-potcdate.sin
│ │ │ │ └── stamp-po
│ │ │ ├── seq
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── aconnect
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── README.aconnect
│ │ │ │ │ ├── aconnect.1
│ │ │ │ │ └── aconnect.c
│ │ │ │ ├── aplaymidi
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── aplaymidi.1
│ │ │ │ │ ├── aplaymidi.c
│ │ │ │ │ ├── arecordmidi.1
│ │ │ │ │ └── arecordmidi.c
│ │ │ │ ├── aseqdump
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── aseqdump.1
│ │ │ │ │ └── aseqdump.c
│ │ │ │ └── aseqnet
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README.aseqnet
│ │ │ │ ├── aseqnet.1
│ │ │ │ └── aseqnet.c
│ │ │ ├── speaker-test
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── pink.c
│ │ │ │ ├── pink.h
│ │ │ │ ├── readme.txt
│ │ │ │ ├── samples
│ │ │ │ │ ├── Front_Center.wav
│ │ │ │ │ ├── Front_Left.wav
│ │ │ │ │ ├── Front_Right.wav
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── Noise.wav
│ │ │ │ │ ├── Rear_Center.wav
│ │ │ │ │ ├── Rear_Left.wav
│ │ │ │ │ ├── Rear_Right.wav
│ │ │ │ │ ├── Side_Left.wav
│ │ │ │ │ ├── Side_Right.wav
│ │ │ │ │ └── sample_map.csv
│ │ │ │ ├── speaker-test.1
│ │ │ │ └── speaker-test.c
│ │ │ ├── topology
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── topology.c
│ │ │ └── utils
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── alsa-utils.spec.in
│ │ │ └── buildrpm
│ │ ├── alsa-utils-1.1.2.tar.bz2
│ │ ├── desktop.ini
│ │ ├── libmad-0.15.1b.tar.gz
│ │ ├── mach-smdk2440.c
│ │ ├── ncurses-5.9.tar.gz
│ │ ├── s3c2440_dma.c
│ │ ├── s3c2440_iis.c
│ │ ├── s3c2440_wm8976.c
│ │ ├── uda1341.c
│ │ ├── wm8976.c
│ │ └── wm8976.h
│ ├── libmad-0.15.1b
│ │ ├── CHANGES
│ │ ├── COPYING
│ │ ├── COPYRIGHT
│ │ ├── CREDITS
│ │ ├── D.dat
│ │ ├── INSTALL
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── TODO
│ │ ├── VERSION
│ │ ├── aclocal.m4
│ │ ├── bit.c
│ │ ├── bit.h
│ │ ├── config.guess
│ │ ├── config.h.in
│ │ ├── config.sub
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── decoder.c
│ │ ├── decoder.h
│ │ ├── depcomp
│ │ ├── fixed.c
│ │ ├── fixed.h
│ │ ├── frame.c
│ │ ├── frame.h
│ │ ├── global.h
│ │ ├── huffman.c
│ │ ├── huffman.h
│ │ ├── imdct_l_arm.S
│ │ ├── imdct_s.dat
│ │ ├── install-sh
│ │ ├── layer12.c
│ │ ├── layer12.h
│ │ ├── layer3.c
│ │ ├── layer3.h
│ │ ├── libmad.list.in
│ │ ├── ltmain.sh
│ │ ├── mad.h
│ │ ├── mad.h.sed
│ │ ├── minimad.c
│ │ ├── missing
│ │ ├── mkinstalldirs
│ │ ├── msvc++
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── config.h
│ │ │ ├── libmad.dsp
│ │ │ └── mad.h
│ │ ├── qc_table.dat
│ │ ├── rq_table.dat
│ │ ├── sf_table.dat
│ │ ├── stream.c
│ │ ├── stream.h
│ │ ├── synth.c
│ │ ├── synth.h
│ │ ├── timer.c
│ │ ├── timer.h
│ │ ├── version.c
│ │ └── version.h
│ ├── libmad-0.15.1b.tar.gz
│ ├── 文档
│ │ ├── A tutorial on using the ALSA Audio API.html
│ │ ├── ALSA project - the C library reference_ Index Preamble and License.html
│ │ └── ALSA project - the C library reference_ Index Preamble and License_files
│ │ ├── close.png
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── dynsections.js
│ │ ├── jquery.js
│ │ ├── mag_sel.png
│ │ ├── saved_resource.html
│ │ ├── search.css
│ │ ├── search.js
│ │ └── tabs.css
│ ├── 源码
│ │ ├── 1th_minimad.c
│ │ ├── 1th_miniplay_test.c
│ │ ├── 2th_miniplay_wav.c
│ │ ├── 3th_miniplay_mmap.c
│ │ ├── 4th_minimad_gettime.c
│ │ ├── digital-picture
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── Makefile.build
│ │ │ ├── bmp_test.c
│ │ │ ├── display
│ │ │ │ ├── Makefile
│ │ │ │ ├── dis_manag.c
│ │ │ │ └── fb.c
│ │ │ ├── draw
│ │ │ │ ├── Makefile
│ │ │ │ └── draw.c
│ │ │ ├── encoding
│ │ │ │ ├── Makefile
│ │ │ │ ├── e_ansi.c
│ │ │ │ ├── e_gbk.c
│ │ │ │ ├── encoding_manag.c
│ │ │ │ ├── utf-16be.c
│ │ │ │ ├── utf-16le.c
│ │ │ │ └── utf-8.c
│ │ │ ├── file
│ │ │ │ ├── Makefile
│ │ │ │ └── file.c
│ │ │ ├── font
│ │ │ │ ├── Makefile
│ │ │ │ ├── ascii.c
│ │ │ │ ├── font_manag.c
│ │ │ │ ├── freetype.c
│ │ │ │ ├── gbk.c
│ │ │ │ └── 新建文本文档.txt
│ │ │ ├── icon
│ │ │ │ ├── addvol.bmp
│ │ │ │ ├── browse_mod.bmp
│ │ │ │ ├── cancel.bmp
│ │ │ │ ├── continue_mod.bmp
│ │ │ │ ├── continue_mod_small.bmp
│ │ │ │ ├── decvol.bmp
│ │ │ │ ├── file.bmp
│ │ │ │ ├── fold_closed.bmp
│ │ │ │ ├── fold_opened.bmp
│ │ │ │ ├── halt.bmp
│ │ │ │ ├── imageres_1004.ico
│ │ │ │ ├── imageres_102.ico
│ │ │ │ ├── imageres_2.ico
│ │ │ │ ├── interval.bmp
│ │ │ │ ├── music.bmp
│ │ │ │ ├── next_music.bmp
│ │ │ │ ├── next_page.bmp
│ │ │ │ ├── next_pic.bmp
│ │ │ │ ├── ok.bmp
│ │ │ │ ├── play.bmp
│ │ │ │ ├── pre_music.bmp
│ │ │ │ ├── pre_page.bmp
│ │ │ │ ├── pre_pic.bmp
│ │ │ │ ├── return.bmp
│ │ │ │ ├── select.bmp
│ │ │ │ ├── select_fold.bmp
│ │ │ │ ├── setting.bmp
│ │ │ │ ├── time.bmp
│ │ │ │ ├── txt.bmp
│ │ │ │ ├── unknow.bmp
│ │ │ │ ├── up.bmp
│ │ │ │ ├── zoomin.bmp
│ │ │ │ └── zoomout.bmp
│ │ │ ├── include
│ │ │ │ ├── dis_manag.h
│ │ │ │ ├── draw.h
│ │ │ │ ├── encoding_manag.h
│ │ │ │ ├── file.h
│ │ │ │ ├── font_manag.h
│ │ │ │ ├── input_manag.h
│ │ │ │ ├── music_manag.h
│ │ │ │ ├── page_manag.h
│ │ │ │ ├── pic_operation.h
│ │ │ │ ├── picfmt_manag.h
│ │ │ │ ├── print_manag.h
│ │ │ │ ├── render.h
│ │ │ │ └── system
│ │ │ │ ├── common_config.h
│ │ │ │ └── common_st.h
│ │ │ ├── input
│ │ │ │ ├── Makefile
│ │ │ │ ├── board_key.c
│ │ │ │ ├── console.c
│ │ │ │ ├── input_manag.c
│ │ │ │ ├── mouse.c
│ │ │ │ └── touchscreen.c
│ │ │ ├── main.c
│ │ │ ├── merge_test.c
│ │ │ ├── music
│ │ │ │ ├── Makefile
│ │ │ │ ├── mp3.c
│ │ │ │ ├── music_manag.c
│ │ │ │ └── wav.c
│ │ │ ├── netprint
│ │ │ │ ├── Makefile
│ │ │ │ ├── client.c
│ │ │ │ ├── consoleprint.c
│ │ │ │ ├── netprint.c
│ │ │ │ └── print_manag.c
│ │ │ ├── page
│ │ │ │ ├── Makefile
│ │ │ │ ├── auto_page.c
│ │ │ │ ├── browse_page.c
│ │ │ │ ├── interval_page.c
│ │ │ │ ├── main_page.c
│ │ │ │ ├── music_page.c
│ │ │ │ ├── page_manag.c
│ │ │ │ ├── picture_page.c
│ │ │ │ ├── setting_page.c
│ │ │ │ └── text_page.c
│ │ │ ├── render
│ │ │ │ ├── Makefile
│ │ │ │ ├── format
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── bmp.c
│ │ │ │ │ ├── jpg.c
│ │ │ │ │ └── picfmt_manag.c
│ │ │ │ ├── operation
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── operation.c
│ │ │ │ └── render.c
│ │ │ ├── system
│ │ │ │ ├── Makefile
│ │ │ │ └── common_st.c
│ │ │ └── zoom_test.c
│ │ ├── madtest.c
│ │ ├── minimad.c
│ │ ├── miniplay.c
│ │ ├── mp3online
│ │ │ ├── Makefile
│ │ │ ├── Makefile.build
│ │ │ ├── display
│ │ │ │ ├── Makefile
│ │ │ │ ├── dis_manag.c
│ │ │ │ └── fb.c
│ │ │ ├── draw
│ │ │ │ ├── Makefile
│ │ │ │ └── draw.c
│ │ │ ├── encoding
│ │ │ │ ├── Makefile
│ │ │ │ ├── e_ansi.c
│ │ │ │ ├── e_gbk.c
│ │ │ │ ├── encoding_manag.c
│ │ │ │ ├── utf-16be.c
│ │ │ │ ├── utf-16le.c
│ │ │ │ └── utf-8.c
│ │ │ ├── file
│ │ │ │ ├── Makefile
│ │ │ │ └── file.c
│ │ │ ├── font
│ │ │ │ ├── Makefile
│ │ │ │ ├── ascii.c
│ │ │ │ ├── font_manag.c
│ │ │ │ ├── freetype.c
│ │ │ │ ├── gbk.c
│ │ │ │ └── 新建文本文档.txt
│ │ │ ├── icon
│ │ │ │ ├── addvol.bmp
│ │ │ │ ├── browse_mod.bmp
│ │ │ │ ├── cancel.bmp
│ │ │ │ ├── continue_mod.bmp
│ │ │ │ ├── continue_mod_small.bmp
│ │ │ │ ├── decvol.bmp
│ │ │ │ ├── file.bmp
│ │ │ │ ├── fold_closed.bmp
│ │ │ │ ├── fold_opened.bmp
│ │ │ │ ├── halt.bmp
│ │ │ │ ├── imageres_1004.ico
│ │ │ │ ├── imageres_102.ico
│ │ │ │ ├── imageres_2.ico
│ │ │ │ ├── interval.bmp
│ │ │ │ ├── music.bmp
│ │ │ │ ├── next_music.bmp
│ │ │ │ ├── next_page.bmp
│ │ │ │ ├── next_pic.bmp
│ │ │ │ ├── ok.bmp
│ │ │ │ ├── play.bmp
│ │ │ │ ├── pre_music.bmp
│ │ │ │ ├── pre_page.bmp
│ │ │ │ ├── pre_pic.bmp
│ │ │ │ ├── return.bmp
│ │ │ │ ├── select.bmp
│ │ │ │ ├── select_fold.bmp
│ │ │ │ ├── setting.bmp
│ │ │ │ ├── time.bmp
│ │ │ │ ├── txt.bmp
│ │ │ │ ├── unknow.bmp
│ │ │ │ ├── up.bmp
│ │ │ │ ├── zoomin.bmp
│ │ │ │ └── zoomout.bmp
│ │ │ ├── include
│ │ │ │ ├── dis_manag.h
│ │ │ │ ├── draw.h
│ │ │ │ ├── encoding_manag.h
│ │ │ │ ├── file.h
│ │ │ │ ├── font_manag.h
│ │ │ │ ├── input_manag.h
│ │ │ │ ├── music_manag.h
│ │ │ │ ├── page_manag.h
│ │ │ │ ├── pic_operation.h
│ │ │ │ ├── picfmt_manag.h
│ │ │ │ ├── print_manag.h
│ │ │ │ ├── render.h
│ │ │ │ └── system
│ │ │ │ ├── common_config.h
│ │ │ │ └── common_st.h
│ │ │ ├── input
│ │ │ │ ├── Makefile
│ │ │ │ ├── board_key.c
│ │ │ │ ├── console.c
│ │ │ │ ├── input_manag.c
│ │ │ │ ├── mouse.c
│ │ │ │ └── touchscreen.c
│ │ │ ├── main.c
│ │ │ ├── music
│ │ │ │ ├── Makefile
│ │ │ │ ├── mp3.c
│ │ │ │ ├── music_manag.c
│ │ │ │ └── wav.c
│ │ │ ├── netprint
│ │ │ │ ├── Makefile
│ │ │ │ ├── client.c
│ │ │ │ ├── consoleprint.c
│ │ │ │ ├── netprint.c
│ │ │ │ └── print_manag.c
│ │ │ ├── page
│ │ │ │ ├── Makefile
│ │ │ │ ├── auto_page.c
│ │ │ │ ├── browse_page.c
│ │ │ │ ├── interval_page.c
│ │ │ │ ├── main_page.c
│ │ │ │ ├── music_page.c
│ │ │ │ ├── page_manag.c
│ │ │ │ ├── picture_page.c
│ │ │ │ ├── setting_page.c
│ │ │ │ └── text_page.c
│ │ │ ├── render
│ │ │ │ ├── Makefile
│ │ │ │ ├── format
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── bmp.c
│ │ │ │ │ ├── jpg.c
│ │ │ │ │ └── picfmt_manag.c
│ │ │ │ ├── operation
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── operation.c
│ │ │ │ └── render.c
│ │ │ ├── simfang.ttf
│ │ │ └── system
│ │ │ ├── Makefile
│ │ │ └── common_st.c
│ │ ├── mp3online-wav-bak
│ │ │ ├── Makefile
│ │ │ ├── Makefile.build
│ │ │ ├── display
│ │ │ │ ├── Makefile
│ │ │ │ ├── dis_manag.c
│ │ │ │ └── fb.c
│ │ │ ├── draw
│ │ │ │ ├── Makefile
│ │ │ │ └── draw.c
│ │ │ ├── encoding
│ │ │ │ ├── Makefile
│ │ │ │ ├── e_ansi.c
│ │ │ │ ├── e_gbk.c
│ │ │ │ ├── encoding_manag.c
│ │ │ │ ├── utf-16be.c
│ │ │ │ ├── utf-16le.c
│ │ │ │ └── utf-8.c
│ │ │ ├── file
│ │ │ │ ├── Makefile
│ │ │ │ └── file.c
│ │ │ ├── font
│ │ │ │ ├── Makefile
│ │ │ │ ├── ascii.c
│ │ │ │ ├── font_manag.c
│ │ │ │ ├── freetype.c
│ │ │ │ ├── gbk.c
│ │ │ │ └── 新建文本文档.txt
│ │ │ ├── icon
│ │ │ │ ├── addvol.bmp
│ │ │ │ ├── browse_mod.bmp
│ │ │ │ ├── cancel.bmp
│ │ │ │ ├── continue_mod.bmp
│ │ │ │ ├── continue_mod_small.bmp
│ │ │ │ ├── decvol.bmp
│ │ │ │ ├── file.bmp
│ │ │ │ ├── fold_closed.bmp
│ │ │ │ ├── fold_opened.bmp
│ │ │ │ ├── halt.bmp
│ │ │ │ ├── interval.bmp
│ │ │ │ ├── next_music.bmp
│ │ │ │ ├── next_page.bmp
│ │ │ │ ├── next_pic.bmp
│ │ │ │ ├── ok.bmp
│ │ │ │ ├── play.bmp
│ │ │ │ ├── pre_music.bmp
│ │ │ │ ├── pre_page.bmp
│ │ │ │ ├── pre_pic.bmp
│ │ │ │ ├── return.bmp
│ │ │ │ ├── select.bmp
│ │ │ │ ├── select_fold.bmp
│ │ │ │ ├── setting.bmp
│ │ │ │ ├── time.bmp
│ │ │ │ ├── up.bmp
│ │ │ │ ├── zoomin.bmp
│ │ │ │ └── zoomout.bmp
│ │ │ ├── include
│ │ │ │ ├── dis_manag.h
│ │ │ │ ├── draw.h
│ │ │ │ ├── encoding_manag.h
│ │ │ │ ├── file.h
│ │ │ │ ├── font_manag.h
│ │ │ │ ├── input_manag.h
│ │ │ │ ├── music_manag.h
│ │ │ │ ├── page_manag.h
│ │ │ │ ├── pic_operation.h
│ │ │ │ ├── picfmt_manag.h
│ │ │ │ ├── print_manag.h
│ │ │ │ ├── render.h
│ │ │ │ └── system
│ │ │ │ ├── common_config.h
│ │ │ │ └── common_st.h
│ │ │ ├── input
│ │ │ │ ├── Makefile
│ │ │ │ ├── board_key.c
│ │ │ │ ├── console.c
│ │ │ │ ├── input_manag.c
│ │ │ │ ├── mouse.c
│ │ │ │ └── touchscreen.c
│ │ │ ├── main.c
│ │ │ ├── music
│ │ │ │ ├── Makefile
│ │ │ │ ├── mp3.c
│ │ │ │ ├── music_manag.c
│ │ │ │ └── wav.c
│ │ │ ├── netprint
│ │ │ │ ├── Makefile
│ │ │ │ ├── client.c
│ │ │ │ ├── consoleprint.c
│ │ │ │ ├── netprint.c
│ │ │ │ └── print_manag.c
│ │ │ ├── page
│ │ │ │ ├── Makefile
│ │ │ │ ├── auto_page.c
│ │ │ │ ├── browse_page.c
│ │ │ │ ├── interval_page.c
│ │ │ │ ├── main_page.c
│ │ │ │ ├── music_page.c
│ │ │ │ ├── page_manag.c
│ │ │ │ ├── picture_page.c
│ │ │ │ ├── setting_page.c
│ │ │ │ └── text_page.c
│ │ │ ├── render
│ │ │ │ ├── Makefile
│ │ │ │ ├── format
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── bmp.c
│ │ │ │ │ ├── jpg.c
│ │ │ │ │ └── picfmt_manag.c
│ │ │ │ ├── operation
│ │ │ │ │ ├── Makefile
│ │ │ │ │ └── operation.c
│ │ │ │ └── render.c
│ │ │ ├── simfang.ttf
│ │ │ └── system
│ │ │ ├── Makefile
│ │ │ └── common_st.c
│ │ └── wav.c
│ └── 需求.txt
├── uImage_wm8976
├── wm8976
│ ├── Makefile
│ ├── mach-smdk2440.c
│ ├── s3c2440_dma.c
│ ├── s3c2440_iis.c
│ ├── s3c2440_wm8976.c
│ ├── uda1341.c
│ ├── winxp.wav
│ ├── wm8976.c
│ └── wm8976.h
└── yaffs2-HEAD-5bc32d0.tar.gz
147 directories, 1199 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论