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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef GTKANAL_DOT_H
  2. #define GTKANAL_DOT_H
  3. #include "lame.h"
  4. #include "encoder.h"
  5. #define READ_AHEAD 10             /* number of frames to read ahead */
  6. #define MAXMPGLAG READ_AHEAD      /* if the mpg123 lag becomes bigger than this       we have to stop */
  7. #define NUMBACK 6                 /* number of frames we can back up */
  8. #define NUMPINFO (NUMBACK+READ_AHEAD+1)
  9. typedef struct {
  10.   int frameNum;           /* current frame number */
  11.   int frameNum123;
  12.   int num_samples;        /* number of pcm samples read for this frame */
  13.   double frametime;       /* starting time of frame, in seconds */
  14.   double pcmdata[2][1600];
  15.   double pcmdata2[2][1152+1152-DECDELAY];
  16.   double xr[2][2][576];
  17.   double mpg123xr[2][2][576];
  18.   double ms_ratio[2];
  19.   double ms_ener_ratio[2];
  20.   /* L,R, M and S values */
  21.   double energy[2][4][BLKSIZE];
  22.   double pe[2][4];
  23.   double thr[2][4][SBMAX_l];
  24.   double en[2][4][SBMAX_l];
  25.   double thr_s[2][4][3*SBMAX_s];
  26.   double en_s[2][4][3*SBMAX_s];
  27.   double ers[2][4];
  28.   double sfb[2][2][SBMAX_l];
  29.   double sfb_s[2][2][3*SBMAX_s];
  30.   double LAMEsfb[2][2][SBMAX_l];
  31.   double LAMEsfb_s[2][2][3*SBMAX_s];
  32.   int LAMEqss[2][2];
  33.   int qss[2][2];
  34.   int big_values[2][2];
  35.   int sub_gain[2][2][3];
  36.   double xfsf[2][2][SBMAX_l];
  37.   double xfsf_s[2][2][3*SBMAX_s];
  38.   int over[2][2];
  39.   double tot_noise[2][2];
  40.   double max_noise[2][2];
  41.   double over_noise[2][2];
  42.   int blocktype[2][2];
  43.   int scalefac_scale[2][2];
  44.   int mpg123blocktype[2][2];
  45.   int mixed[2][2];
  46.   int mainbits[2][2];
  47.   int LAMEmainbits[2][2];
  48.   int framesize,stereo,js,ms_stereo,i_stereo,emph,bitrate,sampfreq,maindata;
  49.   int crc,padding;
  50.   int scfsi[2],mean_bits,resvsize;
  51.   int totbits;
  52. } plotting_data;
  53.  
  54. int gtkcontrol(lame_global_flags *gfp);
  55. extern plotting_data *pinfo;
  56. extern int gtkflag;
  57. #endif