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

多媒体

开发平台:

Unix_Linux

  1. #ifndef CODECBASE_H
  2. #define CODECBASE_H
  3. // Back end for all codecs.
  4. // Eventually to become the plugin front end.
  5. // Structure owned by all plugins
  6. typedef struct
  7. {
  8. quicktime_t *file;
  9. int track;
  10. } quicktime_plugin_t;
  11. // Allocate the codec structure somewhere else
  12. void* quicktime_create_codec(quicktime_codec_t *plugin, int size);
  13. // Retrieve the codec structure for the plugin
  14. void* quicktime_get_codec(quicktime_codec_t *plugin, int track);
  15. #endif