Asyncflt.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //------------------------------------------------------------------------------
  2. //
  3. // Desc: Source for Async Filter
  4. // Last modified:
  5. //
  6. // The Async sample filter does not support AVI files, because it
  7. // cannot connect to the AVI Splitter filter. The Async filter's output pin
  8. // proposes MEDIATYPE_Stream and MEDIASUBTYPE_NULL for the media type.
  9. // The input pin on the AVI Splitter filter does not accept MEDIASUBTYPE_NULL,
  10. // and does not propose any types of its own. Therefore, the pin connection
  11. // fails. The Async filter could be enhanced to offer MEDIASUBTYPE_Avi when
  12. // appropriate. For example, it could examine the file format, or use the file
  13. // extension.
  14. //
  15. // Converted to Delphi by
  16. // Andriy Nevhasymyy (a.n@email.com), Milenko Mitrovich (dcoder@dsp-worx.de)
  17. //
  18. // Portions created by Microsoft are
  19. // Copyright (c) 1992 - 2000, Microsoft Corporation.  All rights reserved.
  20. //
  21. //------------------------------------------------------------------------------
  22. library Asyncflt;
  23. uses
  24.   BaseClass,
  25.   UAsyncFlt in 'UAsyncFlt.pas',
  26.   UAsyncRdr in 'UAsyncRdr.pas',
  27.   UAsyncIo in 'UAsyncIo.pas';
  28. {$E ax}
  29. exports
  30.   DllGetClassObject,
  31.   DllCanUnloadNow,
  32.   DllRegisterServer,
  33.   DllUnregisterServer;
  34. begin
  35. end.