utilities.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #ifndef __UTILITIES_H__
  20. #define __UTILITIES_H__
  21. // utility MACRO
  22. #define SAFE_RELEASE(p) { if(p) p->Release(); p = NULL; }
  23. #define SAFE_DELETE(p) { if(p) delete p; p = NULL; }
  24. #define VIDEO_CAP       CLSID_VideoInputDeviceCategory
  25. #define AUDIO_CAP       CLSID_AudioInputDeviceCategory
  26. #define VIDEO_COMPRESS  CLSID_VideoCompressorCategory
  27. #define AUDIO_COMPRESS  CLSID_AudioCompressorCategory
  28. //////////////////////////////////////////////
  29. // Only for Debug
  30. static DWORD g_dwRegister;
  31. static HRESULT AddGraphToRot(IUnknown *pUnkGraph, DWORD *pdwRegister) 
  32. {
  33.     IMoniker * pMoniker;
  34.     IRunningObjectTable *pROT;
  35.     HRESULT hr;
  36.     hr = GetRunningObjectTable(0, &pROT);
  37.     if (FAILED(hr)) return hr;
  38.     WCHAR wsz[128];
  39.     wsprintfW(wsz, L"FilterGraph %08x pid %08x", (DWORD_PTR)pUnkGraph, GetCurrentProcessId());
  40.     hr = CreateItemMoniker(L"!", wsz, &pMoniker);
  41.     if (SUCCEEDED(hr)) 
  42. {
  43.         hr = pROT->Register(0, pUnkGraph, pMoniker, pdwRegister);
  44.         pMoniker->Release();
  45.     }
  46.     pROT->Release(); 
  47.     return hr;
  48. }
  49. static void RemoveGraphFromRot(DWORD pdwRegister)
  50. {
  51.     IRunningObjectTable *pROT;
  52.     if (SUCCEEDED(GetRunningObjectTable(0, &pROT))) 
  53. {
  54.         pROT->Revoke(pdwRegister);
  55.         pROT->Release();
  56.     }
  57. }
  58. #endif // __UTILITIES_H__