STREAMS.H
上传用户:weiliangfb
上传日期:2007-01-23
资源大小:142k
文件大小:7k
源码类别:

多媒体

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: Streams.h
  3. //
  4. // Desc: DirectShow base classes - defines overall streams architecture.
  5. //
  6. // Copyright (c) 1992-2001 Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #ifndef __STREAMS__
  9. #define __STREAMS__
  10. // disable some level-4 warnings, use #pragma warning(enable:###) to re-enable
  11. #pragma warning(disable:4100) // warning C4100: unreferenced formal parameter
  12. #pragma warning(disable:4127) // warning C4127: conditional expression is constant
  13. #pragma warning(disable:4189) // warning C4189: local variable is initialized but not referenced
  14. #pragma warning(disable:4201) // warning C4201: nonstandard extension used : nameless struct/union
  15. #pragma warning(disable:4511) // warning C4511: copy constructor could not be generated
  16. #pragma warning(disable:4512) // warning C4512: assignment operator could not be generated
  17. #pragma warning(disable:4514) // warning C4514: unreferenced inline function has been removed
  18. #pragma warning(disable:4710) // warning C4710: 'function' not inlined
  19. #ifdef  _MSC_VER
  20. #if _MSC_VER>=1100
  21. #define AM_NOVTABLE __declspec(novtable)
  22. #else
  23. #define AM_NOVTABLE
  24. #endif
  25. #endif  // MSC_VER
  26. #include <windows.h>
  27. #include <windowsx.h>
  28. #include <olectl.h>
  29. #include <ddraw.h>
  30. #include <mmsystem.h>
  31. #ifndef NUMELMS
  32.    #define NUMELMS(aa) (sizeof(aa)/sizeof((aa)[0]))
  33. #endif
  34. ///////////////////////////////////////////////////////////////////////////
  35. // The following definitions come from the Platform SDK and are required if
  36. // the applicaiton is being compiled with the headers from Visual C++ 6.0.
  37. ///////////////////////////////////////////////////////////////////////////
  38. #ifndef InterlockedExchangePointer
  39.     #define InterlockedExchangePointer(Target, Value) 
  40.    (PVOID)InterlockedExchange((PLONG)(Target), (LONG)(Value))
  41. #endif
  42. #ifndef _WAVEFORMATEXTENSIBLE_
  43. #define _WAVEFORMATEXTENSIBLE_
  44. typedef struct {
  45.     WAVEFORMATEX    Format;
  46.     union {
  47.         WORD wValidBitsPerSample;       /* bits of precision  */
  48.         WORD wSamplesPerBlock;          /* valid if wBitsPerSample==0 */
  49.         WORD wReserved;                 /* If neither applies, set to zero. */
  50.     } Samples;
  51.     DWORD           dwChannelMask;      /* which channels are */
  52.                                         /* present in stream  */
  53.     GUID            SubFormat;
  54. } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE;
  55. #endif // !_WAVEFORMATEXTENSIBLE_
  56. #if !defined(WAVE_FORMAT_EXTENSIBLE)
  57. #define  WAVE_FORMAT_EXTENSIBLE                 0xFFFE
  58. #endif // !defined(WAVE_FORMAT_EXTENSIBLE)
  59. #ifndef GetWindowLongPtr
  60.   #define GetWindowLongPtrA   GetWindowLongA
  61.   #define GetWindowLongPtrW   GetWindowLongW
  62.   #ifdef UNICODE
  63.     #define GetWindowLongPtr  GetWindowLongPtrW
  64.   #else
  65.     #define GetWindowLongPtr  GetWindowLongPtrA
  66.   #endif // !UNICODE
  67. #endif // !GetWindowLongPtr
  68. #ifndef SetWindowLongPtr
  69.   #define SetWindowLongPtrA   SetWindowLongA
  70.   #define SetWindowLongPtrW   SetWindowLongW
  71.   #ifdef UNICODE
  72.     #define SetWindowLongPtr  SetWindowLongPtrW
  73.   #else
  74.     #define SetWindowLongPtr  SetWindowLongPtrA
  75.   #endif // !UNICODE
  76. #endif // !SetWindowLongPtr
  77. #ifndef GWLP_WNDPROC
  78.   #define GWLP_WNDPROC        (-4)
  79. #endif
  80. #ifndef GWLP_HINSTANCE
  81.   #define GWLP_HINSTANCE      (-6)
  82. #endif
  83. #ifndef GWLP_HWNDPARENT
  84.   #define GWLP_HWNDPARENT     (-8)
  85. #endif
  86. #ifndef GWLP_USERDATA
  87.   #define GWLP_USERDATA       (-21)
  88. #endif
  89. #ifndef GWLP_ID
  90.   #define GWLP_ID             (-12)
  91. #endif
  92. #ifndef DWLP_MSGRESULT
  93.   #define DWLP_MSGRESULT  0
  94. #endif
  95. #ifndef DWLP_DLGPROC 
  96.   #define DWLP_DLGPROC    DWLP_MSGRESULT + sizeof(LRESULT)
  97. #endif
  98. #ifndef DWLP_USER
  99.   #define DWLP_USER       DWLP_DLGPROC + sizeof(DLGPROC)
  100. #endif
  101. ///////////////////////////////////////////////////////////////////////////
  102. // End Platform SDK definitions
  103. ///////////////////////////////////////////////////////////////////////////
  104. #pragma warning(disable:4201) // warning C4201: nonstandard extension used : nameless struct/union
  105. #include <strmif.h>     // Generated IDL header file for streams interfaces
  106. #include <reftime.h>    // Helper class for REFERENCE_TIME management
  107. #include <wxdebug.h>    // Debug support for logging and ASSERTs
  108. #include <amvideo.h>    // ActiveMovie video interfaces and definitions
  109. //include amaudio.h explicitly if you need it.  it requires the DX SDK.
  110. //#include <amaudio.h>    // ActiveMovie audio interfaces and definitions
  111. #include <wxutil.h>     // General helper classes for threads etc
  112. #include <combase.h>    // Base COM classes to support IUnknown
  113. #include <dllsetup.h>   // Filter registration support functions
  114. #include <measure.h>    // Performance measurement
  115. #include <comlite.h>    // Light weight com function prototypes
  116. #include <cache.h>      // Simple cache container class
  117. #include <wxlist.h>     // Non MFC generic list class
  118. #include <msgthrd.h>    // CMsgThread
  119. #include <mtype.h>      // Helper class for managing media types
  120. #include <fourcc.h>     // conversions between FOURCCs and GUIDs
  121. #include <control.h>    // generated from control.odl
  122. #include <ctlutil.h>    // control interface utility classes
  123. #include <evcode.h>     // event code definitions
  124. #include <amfilter.h>   // Main streams architecture class hierachy
  125. #include <transfrm.h>   // Generic transform filter
  126. #include <transip.h>    // Generic transform-in-place filter
  127. #include <uuids.h>      // declaration of type GUIDs and well-known clsids
  128. #include <source.h> // Generic source filter
  129. #include <outputq.h>    // Output pin queueing
  130. #include <errors.h>     // HRESULT status and error definitions
  131. #include <renbase.h>    // Base class for writing ActiveX renderers
  132. #include <winutil.h>    // Helps with filters that manage windows
  133. #include <winctrl.h>    // Implements the IVideoWindow interface
  134. #include <videoctl.h>   // Specifically video related classes
  135. #include <refclock.h>   // Base clock class
  136. #include <sysclock.h>   // System clock
  137. #include <pstream.h>    // IPersistStream helper class
  138. #include <vtrans.h>     // Video Transform Filter base class
  139. #include <amextra.h>
  140. #include <cprop.h>      // Base property page class
  141. #include <strmctl.h>    // IAMStreamControl support
  142. #include <edevdefs.h>   // External device control interface defines
  143. #include <audevcod.h>   // audio filter device error event codes
  144. #else
  145.     #ifdef DEBUG
  146.     #pragma message("STREAMS.H included TWICE")
  147.     #endif
  148. #endif // __STREAMS__