UC3B-MP3

所属分类:单片机开发
开发工具:C/C++
文件大小:2355KB
下载次数:32
上传日期:2010-11-13 23:30:57
上 传 者snake0331
说明:  用AVR单片机开发的mp3,的所有资料,包括程序原理图和PCB图
(With AVR microcontroller development of mp3, all information, including procedures for schematic and PCB diagram)

文件列表:
UC3B-MP3\Board.pcb (1417216, 2010-10-22)
UC3B-MP3\Board.pcb.htm (4199, 2010-10-23)
UC3B-MP3\BOM.xls (18432, 2008-11-14)
UC3B-MP3\BuckBoost.asm (2755, 2008-10-17)
UC3B-MP3\mp3-back.jpg (244635, 2008-11-14)
UC3B-MP3\mp3-front.jpg (307671, 2008-11-14)
UC3B-MP3\mp3-side.jpg (327354, 2008-11-14)
UC3B-MP3\Report.doc (48128, 2008-11-21)
UC3B-MP3\Schematic.pdf (84486, 2008-11-14)
UC3B-MP3\workspace\MP3\.cproject (50793, 2008-11-16)
UC3B-MP3\workspace\MP3\.framework (142, 2008-11-16)
UC3B-MP3\workspace\MP3\.project (2498, 2008-11-16)
UC3B-MP3\workspace\MP3\MP3.map (182488, 2008-11-16)
UC3B-MP3\workspace\MP3\src\cyglink.txt (114, 2009-01-03)
UC3B-MP3\workspace\MP3\src\dummy.h (1028, 2008-08-04)
UC3B-MP3\workspace\MP3\src\helix_player.c (4476, 2008-11-16)
UC3B-MP3\workspace\MP3\src\main (0, 2009-01-03)
UC3B-MP3\workspace\MP3\src\main.#1 (0, 2009-01-03)
UC3B-MP3\workspace\MP3\src\main.c (4708, 2008-11-16)
UC3B-MP3\workspace\MP3\src\main.LST (9642, 2009-01-03)
UC3B-MP3\workspace\MP3\src\main.M51 (419, 2009-01-03)
UC3B-MP3\workspace\MP3\src\sd_reader.c (5186, 2008-11-16)
UC3B-MP3\workspace\MP3\src\tmp.out (364, 2009-01-03)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\compiler.h (38327, 2008-11-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\conf_isp.h (4833, 2008-08-04)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\PREPROCESSOR\mrepeat.h (23986, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\PREPROCESSOR\preprocessor.h (2295, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\PREPROCESSOR\stringz.h (3031, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\UTILS\PREPROCESSOR\tpaste.h (4297, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\MEMORY\CTRL_ACCESS\ctrl_access.c (12392, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\MEMORY\CTRL_ACCESS\ctrl_access.h (10108, 2008-06-16)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fat.c (70474, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fat.h (22720, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fat_unusual.c (84032, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\file.c (25501, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\file.h (9295, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fsaccess.c (10136, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fsaccess.h (5193, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\fs_com.h (12808, 2008-10-12)
UC3B-MP3\workspace\MP3\src\SOFTWARE_FRAMEWORK\SERVICES\FAT\navigation.c (71825, 2008-10-12)
... ...

Fixed-point MP3 decoder Developed by RealNetworks, 2003 =============================== Overview -------- This module contains a high-performance MPEG layer 3 audio decoder for 32-bit fixed-point processors. The following is a quick summary of what is and is not supported: Supported - layer 3 - MPEG1, MPEG2, and MPEG2.5 (low sampling frequency extensions) - constant bitrate, variable bitrate, and free bitrate modes - mono and all stereo modes (normal stereo, joint stereo, dual-mono) Not currently supported - layers 1 and 2 Highlights ---------- - highly optimized for ARM processors (details in docs/ subdirectory) - reference x86 implementation - C and assembly code only (C++ not required) - reentrant, statically linkable - low memory (details in docs/ subdirectory) - option to use Intel Integrated Performance Primitives (details below) Supported platforms and toolchains ---------------------------------- This codec should run on any 32-bit fixed-point processor which can perform a full 32x32-bit multiply (providing a ***-bit result). The following processors and toolchains are supported: - x86, Microsoft Visual C++ - ARM, ARM Developer Suite (ADS) - ARM, Microsoft Embedded Visual C++ - ARM, GNU toolchain (gcc) ARM refers to any processor supporting ARM architecture v.4 or above. Thumb is not required. Typically this means an ARM7TDMI or better (including ARM9, StrongARM, XScale, etc.) Generally ADS produces the fastest code. EVC 3.0 does not support inline assembly code for ARM targets, so calls to MULSHIFT32 (smull on ARM) are left as function calls. For the fastest code on targets which do not normally use ADS consider compiling with ADS, using the -S option to output assembly code, and feeding this assembly code to the assembler of your choice. This might require some syntax changes in the .S file. Adding support for a new processor is fairly simple. Simply add a new block to the file real/assembly.h which implements the required inline assembly functions for your processor. Something like ... #elif defined NEW_PROCESSOR /* you implement MULSHIFT32() and so forth */ #else #error Unsupported platform in assembly.h #endif Optionally you can rewrite or add assembly language files optimized for your platform. Note that many of the algorithms are designed for an ARM-type processor, so performance of the unmodified C code might be noticeably worse on other architectures. Adding support for a new toolchain should be straightforward. Use the sample projects or the Umakefil as a template for which source files to include. Directory structure ------------------- fixpt/ platform-independent code and tables, public API fixpt/docs algorithm notes, memory and CPU usage figures, optimization suggestions fixpt/ipp source code which uses IPP for decoding (see the "IPP" section below) fixpt/pub public header files fixpt/real source code for RealNetworks' MP3 decoder fixpt/testwrap sample code to build a command-line test application Code organization ----------------- fixpt/ mpadecobj.cpp optional shim which exports API used by Helix clients (see mp3/renderer) mp3dec.c main decode functions, exports C-only API mp3tabs.c common tables used by all implementations (bitrates, frame sizes, etc.) fixpt/pub/ mp3common.h defines low-level codec API which mp3dec.c calls mp3dec.h defines high-level codec API which applications call mpadecobjfixpt.h optional C++ shim API (only necessary if mpadecobj.cpp is used) statname.h symbols which get name-mangled by C preprocessor to allow static linking fixpt/ipp source code for wrapper files which link in IPP libraries fixpt/real full source code for RealNetworks MP3 decoder To build an MP3 decoder library, you'll need to compile the top-level files and EITHER real/*.c OR ipp/*.c and the correct IPP library. Decoder using Real code: mp3dec.c + mp3tabs.c + real/*.c + real/arm/[files].s (if ARM) Decoder using IPP code: mp3dec.c + mp3tabs.c + ipp/*.c + ippac*.lib Although the real/ and ipp/ source code follow the same top-level API (for Dequantize(), Subband(), etc.) mixing and matching is not guaranteed to work. The outputs might be ordered differently for optimization purposes, scaled differently, etc. IPP --- For certain platforms Intel has created highly-optimized object code libraries of DSP routines. These are called the Intel Integrated Performance Primitives (IPP). If IPP libraries are available for a platform, this MP3 decoder can link them in and use them instead of the RealNetworks source code. To use IPP, you still need to build the top-level files (mp3dec.c, mp3tabs.c). You also build the files in ipp/*.c. These are just thin wrappers which provide the glue logic between the top-level decode functions in mp3dec.c and the optimized DSP primitives in the IPP libraries. IPP libraries are not included in this module. You must obtain them WITH A LICENSE directly from Intel. Further info on the latest versions of IPP (as of the date of this readme) is available from the URLs below Intel Integrated Performance Primitives for the Intel PXA25x and PXA26x family of Processors, Version 3.0 * http://www.intel.com/design/pca/applicationsprocessors/swsup/IPPv30.htm Intel Integrated Performance Primitives for Intel Pentium Processors and Intel Itanium Architectures * http://www.intel.com/software/products/ipp/ipp30/ These sites explain how to obtain IPP and the terms under which IPP libraries may be used. The code in this module is merely wrapper code which calls IPP functions. You are fully responsible for adhering to the license agreement under which you obtain the IPP libraries from Intel. To-Do list and status --------------------- faster/lower-memory dequantizer (in progress) tighter fixed-point scaling (in progress) remove all run-time math calls (/, %) (in progress) ARM assembly code for DCT32, IMDCT (if necessary) add test scripts and compliance docs write 32-bit C polyphase filter (where ***-bit MACC not available) As these optimizations are completed, they will be added to the Helix codebase. Please continue to check there for updates. Changes will be noted in this readme. readme.txt last updated 07/23/03

近期下载者

相关文件


收藏者