dshowasf.idl
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Development Platform:

C/C++

  1. //------------------------------------------------------------------------------
  2. // File: DShowASF.idl
  3. //
  4. // Desc: 
  5. //
  6. // Copyright (c) 1992-2000, Microsoft Corporation. All rights reserved.
  7. //------------------------------------------------------------------------------
  8. import "unknwn.idl";
  9. import "objidl.idl";
  10. import "strmif.idl"; // for media type and time definitions
  11. import  "wmsdkidl.idl";
  12. cpp_quote( "EXTERN_GUID( IID_IConfigAsfWriter,0x45086030,0xF7E4,0x486a,0xB5,0x04,0x82,0x6B,0xB5,0x79,0x2A,0x3B );" )
  13. interface IConfigAsfWriter;
  14. interface IWMProfile;
  15. // Interface to control the ASF writer
  16. [
  17. object,
  18. uuid(45086030-F7E4-486a-B504-826BB5792A3B),
  19. pointer_default(unique)
  20. ]
  21. interface IConfigAsfWriter : IUnknown
  22. {
  23.     //
  24.     // The user is expected to enumerate profiles using the wmsdk IWMProfileManager
  25.     // method and then pass the desired profile index to the ASF Writer filter via this
  26.     // method. The filter will then try to configure itself for the selected profile.
  27.     //
  28.     // NOTE: These 2 XXXProfileId methods are now obsolete because they assume 
  29.     //       version 4.0 WMSDK profiles. To configure the filter for later profile 
  30.     //       versions using a profile index, use the XXXProfile methods which take 
  31.     //       the IWMProfile* directly.
  32.     //
  33.     HRESULT ConfigureFilterUsingProfileId([in] DWORD dwProfileId);
  34.     HRESULT GetCurrentProfileId([out] DWORD *pdwProfileId);
  35.     //    
  36.     // configure using a pre-defined wmsdk profile guid
  37.     //
  38.     HRESULT ConfigureFilterUsingProfileGuid([in] REFGUID guidProfile);
  39.     HRESULT GetCurrentProfileGuid([out] GUID *pProfileGuid);
  40.     //
  41.     // Use these methods when a custom profile setup is preferred
  42.     //
  43.     HRESULT ConfigureFilterUsingProfile([in] IWMProfile * pProfile);
  44.     HRESULT GetCurrentProfile([out] IWMProfile **ppProfile);
  45.     //
  46.     // allow app to control whether or not to index file
  47.     //
  48.     HRESULT SetIndexMode( [in]  BOOL bIndexFile );
  49.     HRESULT GetIndexMode( [out] BOOL *pbIndexFile );
  50. }