codecs.h
上传用户:luping1608
上传日期:2007-01-06
资源大小:38k
文件大小:1k
源码类别:

多媒体

开发平台:

Unix_Linux

  1. #ifndef CODECS_H
  2. #define CODECS_H
  3. // =================================== codecs
  4. // All new codecs store their variables in a quicktime_...._codec structure.
  5. // The structure is statically allocated here even if the codec isn't used.
  6. #include "ima4.h"
  7. #include "jpeg.h"
  8. #include "raw.h"
  9. #include "ulaw.h"
  10. #include "yuv2.h"
  11. typedef struct
  12. {
  13. quicktime_jpeg_codec_t jpeg_codec;
  14. quicktime_yuv2_codec_t yuv2_codec;
  15. quicktime_raw_codec_t raw_codec;
  16. quicktime_ima4_codec_t ima4_codec;
  17. quicktime_ulaw_codec_t ulaw_codec;
  18. } quicktime_codecs_t;
  19. #endif