l3type.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* Data structures for layer III decoding. Taken from the ISO MPEG Audio
  2.    Subgroup Software Simulation Group's public c source of the MPEG audio
  3.    decoder.
  4.    Last modified : 01/27/97  */
  5. #ifndef L3TYPE_H
  6. #define L3TYPE_H
  7. #include "all.h"
  8. typedef struct {
  9. uint32 part2_3_length;
  10.    uint32 big_values;
  11. uint32 global_gain;
  12. uint32 scalefac_compress;
  13. uint32 window_switching_flag;
  14. uint32 block_type;
  15. uint32 mixed_block_flag;
  16. uint32 table_select[3];
  17. uint32 subblock_gain[3];
  18. uint32 region0_count;
  19. uint32 region1_count;
  20. uint32 preflag;
  21. uint32 scalefac_scale;
  22. uint32 count1table_select;
  23. } gr_info_s;
  24. typedef struct {
  25.   uint32 main_data_begin;
  26.     uint32 private_bits;
  27.     struct {
  28.   uint32 scfsi[4];
  29.   gr_info_s gr[2];
  30.      } ch[2];
  31.   } III_side_info_t;
  32. typedef struct {
  33.   int32 l[23];            /* [cb] */
  34.            int32 s[3][13];         /* [window][cb] */
  35.   } III_scalefac_t[2];
  36. #endif