- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
TODO
资源名称:tcpmp.rar [点击查看]
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:
Windows CE
开发平台:
C/C++
- libmad - MPEG audio decoder library
- Copyright (C) 2000-2004 Underbit Technologies, Inc.
- $Id: TODO,v 1.3 2004/02/05 09:02:39 rob Exp $
- ===============================================================================
- libmad:
- - more API layers (buffering, PCM samples, dithering, etc.)
- - x86 performance optimization compiler flags
- - function documentation, general docs
- - finish async API
- - parse system streams?
- - MPEG-2 MC, AAC?
- - logarithmic multiplication?
- - multiple frame decoding for better locality of reference?
- - frame serial numbers, Layer III frame continuity checks
- fixed.h:
- - experiment with FPM_INTEL:
- # if 1
- # define mad_f_scale64(hi, lo)
- ({ mad_fixed_t __result;
- asm ("shrl %3,%1nt"
- "shll %4,%2nt"
- "orl %2,%1"
- : "=rm" (__result)
- : "0" (lo), "r" (hi),
- "I" (MAD_F_SCALEBITS), "I" (32 - MAD_F_SCALEBITS)
- : "cc");
- __result;
- })
- # else
- # define mad_f_scale64(hi, lo)
- ({ mad_fixed64hi_t __hi_;
- mad_fixed64lo_t __lo_;
- mad_fixed_t __result;
- asm ("sall %2,%1"
- : "=r" (__hi_)
- : "0" (hi), "I" (32 - MAD_F_SCALEBITS)
- : "cc");
- asm ("shrl %2,%1"
- : "=r" (__lo_)
- : "0" (lo), "I" (MAD_F_SCALEBITS)
- : "cc");
- asm ("orl %1,%2"
- : "=rm" (__result)
- : "r" (__hi_), "0" (__lo_)
- : "cc");
- __result;
- })
- # endif
- libmad Layer I:
- - check frame length sanity
- libmad Layer II:
- - check frame length sanity
- libmad Layer III:
- - circular buffer
- - optimize zero_part from Huffman decoding throughout
- - MPEG 2.5 8000 Hz sf bands? mixed blocks?
- - stereo->mono conversion optimization?
- - enable frame-at-a-time decoding
- - improve portability of huffman.c