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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef MPEG3ATRACK_H
  2. #define MPEG3ATRACK_H
  3. #include "mpeg3demux.h"
  4. typedef struct
  5. {
  6.   void *file;
  7. int channels;
  8. int sample_rate;
  9. mpeg3_demuxer_t *demuxer;
  10. long current_position;
  11. long total_samples;
  12. int format;               /* format of audio */
  13.   double percentage_seek;
  14.   int framesize; // for fixed frame formats
  15.   int samples_per_frame;
  16.   uint32_t total_frames;
  17. /* Pointer to master table of contents */
  18. int64_t *sample_offsets;
  19. int total_sample_offsets;
  20. } mpeg3_atrack_t;
  21. #endif