mpegimdf.h
来自「Application (fix point) for playing MP3 」· C头文件 代码 · 共 62 行
H
62 行
/*------------------------------------------------------------------------------ File : MPEGIMDF.h Author : St閜hane TAVENARD $VER: MPEGIMDF.h 0.0 (04/06/1997) (C) Copyright 1997-1997 St閜hane TAVENARD All Rights Reserved #Rev| Date | Comment ----|----------|-------------------------------------------------------- 0 |04/06/1997| Initial revision ST ------------------------------------------------------------------------ MPEG IMDCT optimzed ! (FPU Version) definitions------------------------------------------------------------------------------*/#ifndef MPEGIMDF_H#define MPEGIMDF_H#ifndef ASM#ifdef _DCC#define REG(x) __ ## x#define ASM#define SAVEDS __geta4#else#define REG(x) register __ ## x#ifdef __MAXON__#define ASM#define SAVEDS#else#define ASM __asm#define SAVEDS __saveds#endif#endif#endifASM void MPEGIMDF_hybrid( REG(a0) float *in, REG(a1) float *out, REG(a2) float *prev, REG(d0) INT16 block_type, REG(d1) INT16 mixed, REG(d2) INT16 sb_max );ASM void MPEGIMDF_long( REG(a0) float *in, REG(a1) float *out, REG(a2) float *win, REG(a3) float *prev );ASM void MPEGIMDF_short( REG(a0) float *in, REG(a1) float *out, REG(a2) float *win, REG(a3) float *prev );#endif /* MPEGIMDF_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?