quantize.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Encoder - Lower Sampling Frequency Extension
  4.  *
  5.  * $Id: quantize.h,v 1.2 2001/06/01 22:26:00 wmay Exp $
  6.  *
  7.  * Revision 1.5  2000/03/21 23:02:17  markt
  8.  * replaced all "gf." by gfp->
  9.  *
  10.  * Revision 1.4  2000/03/14 21:01:47  markt
  11.  * removed fr_ps struct
  12.  *
  13.  * Revision 1.3  2000/02/01 14:09:14  takehiro
  14.  * code clean up. changed definition of structure to optimize array index calculation
  15.  *
  16.  * Revision 1.2  2000/02/01 11:26:32  takehiro
  17.  * scalefactor's structure changed
  18.  *
  19.  * Revision 1.1.1.1  1999/11/24 08:43:45  markt
  20.  * initial checkin of LAME
  21.  * Starting with LAME 3.57beta with some modifications
  22.  *
  23.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  24.  * Initial revision
  25.  *
  26.  * Received from Mike Coleman
  27.  **********************************************************************/
  28. #ifndef LOOP_DOT_H
  29. #define LOOP_DOT_H
  30. #include "util.h"
  31. #include "l3side.h"
  32. /**********************************************************************
  33.  *   date   programmers                comment                        *
  34.  * 25. 6.92  Toshiyuki Ishino          Ver 1.0                        *
  35.  * 29.10.92  Masahiro Iwadare          Ver 2.0                        *
  36.  * 17. 4.93  Masahiro Iwadare          Updated for IS Modification    *
  37.  *                                                                    *
  38.  *********************************************************************/
  39. extern int cont_flag;
  40. extern int pretab[];
  41. void iteration_loop( lame_global_flags *gfp,
  42.                      FLOAT8 pe[2][2], FLOAT8 ms_ratio[2], 
  43.      FLOAT8 xr_org[2][2][576], III_psy_ratio ratio[2][2],
  44.      III_side_info_t *l3_side, int l3_enc[2][2][576], 
  45.      III_scalefac_t scalefac[2][2]);
  46. void VBR_iteration_loop( lame_global_flags *gfp,
  47.                      FLOAT8 pe[2][2], FLOAT8 ms_ratio[2], 
  48.      FLOAT8 xr_org[2][2][576], III_psy_ratio ratio[2][2],
  49.      III_side_info_t *l3_side, int l3_enc[2][2][576], 
  50.      III_scalefac_t scalefac[2][2]);
  51. #define maximum(A,B) ( (A) > (B) ? (A) : (B) )
  52. #define minimum(A,B) ( (A) < (B) ? (A) : (B) )
  53. #define signum( A ) ( (A) > 0 ? 1 : -1 )
  54. extern int bit_buffer[50000];
  55. #endif