DsDemoDlg.cpp
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:5k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // DsDemoDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DsDemo.h"
  5. #include "DsDemoDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDsDemoDlg dialog
  13. CDsDemoDlg::CDsDemoDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDsDemoDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDsDemoDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  20. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  21. }
  22. void CDsDemoDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDsDemoDlg)
  26. // NOTE: the ClassWizard will add DDX and DDV calls here
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CDsDemoDlg, CDialog)
  30. //{{AFX_MSG_MAP(CDsDemoDlg)
  31. ON_WM_PAINT()
  32. ON_WM_QUERYDRAGICON()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CDsDemoDlg message handlers
  37. BOOL CDsDemoDlg::OnInitDialog()
  38. {
  39. CDialog::OnInitDialog();
  40. // Set the icon for this dialog.  The framework does this automatically
  41. //  when the application's main window is not a dialog
  42. SetIcon(m_hIcon, TRUE); // Set big icon
  43. SetIcon(m_hIcon, FALSE); // Set small icon
  44. // TODO: Add extra initialization here
  45. return TRUE;  // return TRUE  unless you set the focus to a control
  46. }
  47. // If you add a minimize button to your dialog, you will need the code below
  48. //  to draw the icon.  For MFC applications using the document/view model,
  49. //  this is automatically done for you by the framework.
  50. void CDsDemoDlg::OnPaint() 
  51. {
  52. if (IsIconic())
  53. {
  54. CPaintDC dc(this); // device context for painting
  55. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  56. // Center icon in client rectangle
  57. int cxIcon = GetSystemMetrics(SM_CXICON);
  58. int cyIcon = GetSystemMetrics(SM_CYICON);
  59. CRect rect;
  60. GetClientRect(&rect);
  61. int x = (rect.Width() - cxIcon + 1) / 2;
  62. int y = (rect.Height() - cyIcon + 1) / 2;
  63. // Draw the icon
  64. dc.DrawIcon(x, y, m_hIcon);
  65. }
  66. else
  67. {
  68. CDialog::OnPaint();
  69. }
  70. }
  71. // The system calls this to obtain the cursor to display while the user drags
  72. //  the minimized window.
  73. HCURSOR CDsDemoDlg::OnQueryDragIcon()
  74. {
  75. return (HCURSOR) m_hIcon;
  76. }
  77. /////////////////////////////////////////////////////////////////////////
  78. // 枚举Filter上的Pin
  79. IPin * CDsDemoDlg::GetPin(IBaseFilter *pFilter, PIN_DIRECTION PinDir)
  80. {
  81.     BOOL       bFound = FALSE;
  82.     IEnumPins  *pEnum;
  83.     IPin       *pPin;
  84.     HRESULT hr = pFilter->EnumPins(&pEnum);
  85.     if (FAILED(hr))
  86.     {
  87.         return NULL;
  88.     }
  89.     while(pEnum->Next(1, &pPin, 0) == S_OK)
  90.     {
  91.         PIN_DIRECTION PinDirThis;
  92.         pPin->QueryDirection(&PinDirThis);
  93.         if (bFound = (PinDir == PinDirThis))
  94.             break;
  95.         pPin->Release();
  96.     }
  97.     pEnum->Release();
  98.     return (bFound ? pPin : NULL); 
  99. }
  100. // 枚举Pin上的媒体类型
  101. BOOL CDsDemoDlg::GetMediaType(IPin * inPin)
  102. {
  103. IEnumMediaTypes * pMTEnum = NULL; 
  104. AM_MEDIA_TYPE *   pAMType = NULL;
  105. if (SUCCEEDED(inPin->EnumMediaTypes(&pMTEnum)))
  106. {
  107. ASSERT(pMTEnum);
  108. while (pMTEnum->Next(1, &pAMType, 0) == S_OK)
  109. {
  110. // 对取得的媒体类型进行处理
  111. // ...
  112. DeleteMediaType(pAMType);
  113. }
  114. pMTEnum->Release();
  115. return TRUE;
  116. }
  117. return FALSE;
  118. }
  119. // 判断某个Filter是否已经注册
  120. BOOL CDsDemoDlg::IsFilterRegistered(CLSID inFilterId)
  121. {
  122. IBaseFilter * pFilter = NULL;
  123. if (SUCCEEDED(CoCreateInstance(inFilterId, NULL, CLSCTX_INPROC_SERVER,
  124. IID_IBaseFilter, (void **)&pFilter)))
  125. {
  126. pFilter->Release();
  127. return TRUE;
  128. }
  129. return FALSE;
  130. }
  131. // 在程序中注册某个Filter文件
  132. BOOL CDsDemoDlg::RegisterFilter(const char * inFilterAx)
  133. {
  134. typedef (WINAPI * REGISTER_FUNC) (void);
  135. REGISTER_FUNC   MyFunc = NULL;
  136. HMODULE hModule = ::LoadLibrary(inFilterAx);
  137. if (hModule)
  138. {
  139. MyFunc = (REGISTER_FUNC) GetProcAddress(hModule, "DllRegisterServer");
  140. BOOL pass = (MyFunc != NULL);
  141. if (pass)
  142. {
  143. MyFunc();
  144. }
  145. ::FreeLibrary(hModule);
  146. return pass;
  147. }
  148. return FALSE;
  149. }
  150. // 修改Filter的Merit值
  151. BOOL CDsDemoDlg::SetFilterMerit(const char * inClsid, DWORD inMerit)
  152. {
  153. typedef struct
  154. {
  155. DWORD dwVersion;    // 版本号
  156. DWORD dwMerit;      // Merit值
  157. DWORD dwPinCount;   // Pin的数量
  158. DWORD dwReserved;   // 保留
  159. } FILTER_HEADER;
  160. const char *  cRegistryEntry = "CLSID\{083863F1-70DE-11d0-BD40-00A0C911CE86}\Instance\";
  161. const long    cMaxLength = 1024 * 16;
  162. BYTE          filterData[cMaxLength];
  163. DWORD         actualLength = 0;
  164. // 生成Filter信息注册部分的注册表入口
  165. char   szEntry[1000];
  166. strcpy(szEntry, cRegistryEntry);
  167. strcat(szEntry, inClsid);
  168. HKEY hKey   = NULL;
  169. LONG result = ::RegOpenKeyEx(HKEY_CLASSES_ROOT, szEntry, 0, KEY_ALL_ACCESS, &hKey);
  170. BOOL pass = (result == ERROR_SUCCESS);
  171. if (pass)
  172. {
  173. // 读取FilterData的值
  174. actualLength = actualLength;
  175. result = ::RegQueryValueEx(hKey, "FilterData", NULL, NULL, filterData, &actualLength);
  176. pass   = (result == ERROR_SUCCESS);
  177. }
  178. if (pass)
  179. {
  180. // 修改FiterData中Merit部分,然后写回到注册表
  181. FILTER_HEADER * filterHeader = (FILTER_HEADER *) filterData;
  182. filterHeader->dwMerit = inMerit;
  183. result = ::RegSetValueEx(hKey, "FilterData", NULL, REG_BINARY, filterData, actualLength);
  184. pass   = (result == ERROR_SUCCESS);
  185. }
  186. if (hKey)
  187. {
  188. ::RegCloseKey(hKey);
  189. }
  190. return pass;
  191. }