DSUtil.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:59k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #include "stdafx.h"
  22. #include <atlcoll.h>
  23. #include <afxtempl.h>
  24. #include <Shlwapi.h>
  25. #include <atlpath.h>
  26. #include <Vfw.h>
  27. #include "....includewinddkdevioctl.h"
  28. #include "....includewinddkntddcdrm.h"
  29. #include "DSUtil.h"
  30. #include "....includemoreuuids.h"
  31. void DumpStreamConfig(TCHAR* fn, IAMStreamConfig* pAMVSCCap)
  32. {
  33. CString s, ss;
  34. CStdioFile f;
  35. if(!f.Open(fn, CFile::modeCreate|CFile::modeWrite|CFile::typeText))
  36. return;
  37. int cnt = 0, size = 0;
  38. if(FAILED(pAMVSCCap->GetNumberOfCapabilities(&cnt, &size)))
  39. return;
  40. s.Empty();
  41. s.Format(_T("cnt %d, size %dn"), cnt, size);
  42. f.WriteString(s);
  43. if(size == sizeof(VIDEO_STREAM_CONFIG_CAPS))
  44. {
  45. for(int i = 0; i < cnt; i++)
  46. {
  47. AM_MEDIA_TYPE* pmt = NULL;
  48. VIDEO_STREAM_CONFIG_CAPS caps;
  49. memset(&caps, 0, sizeof(caps));
  50. s.Empty();
  51. ss.Format(_T("%dn"), i); s += ss;
  52. f.WriteString(s);
  53. if(FAILED(pAMVSCCap->GetStreamCaps(i, &pmt, (BYTE*)&caps)))
  54. continue;
  55. {
  56. s.Empty();
  57. ss.Format(_T("VIDEO_STREAM_CONFIG_CAPSn")); s += ss;
  58. ss.Format(_T("tVideoStandard 0x%08xn"), caps.VideoStandard); s += ss;
  59. ss.Format(_T("tInputSize %dx%dn"), caps.InputSize); s += ss;
  60. ss.Format(_T("tCroppingSize %dx%d - %dx%dn"), caps.MinCroppingSize, caps.MaxCroppingSize); s += ss;
  61. ss.Format(_T("tCropGranularity %d, %dn"), caps.CropGranularityX, caps.CropGranularityY); s += ss;
  62. ss.Format(_T("tCropAlign %d, %dn"), caps.CropAlignX, caps.CropAlignY); s += ss;
  63. ss.Format(_T("tOutputSize %dx%d - %dx%dn"), caps.MinOutputSize, caps.MaxOutputSize); s += ss;
  64. ss.Format(_T("tOutputGranularity %d, %dn"), caps.OutputGranularityX, caps.OutputGranularityY); s += ss;
  65. ss.Format(_T("tStretchTaps %d, %dn"), caps.StretchTapsX, caps.StretchTapsY); s += ss;
  66. ss.Format(_T("tShrinkTaps %d, %dn"), caps.ShrinkTapsX, caps.ShrinkTapsY); s += ss;
  67. ss.Format(_T("tFrameInterval %I64d, %I64d (%.4f, %.4f)n"), 
  68. caps.MinFrameInterval, caps.MaxFrameInterval,
  69. (float)10000000/caps.MinFrameInterval, (float)10000000/caps.MaxFrameInterval); s += ss;
  70. ss.Format(_T("tBitsPerSecond %d - %dn"), caps.MinBitsPerSecond, caps.MaxBitsPerSecond); s += ss;
  71. f.WriteString(s);
  72. }
  73. BITMAPINFOHEADER* pbh;
  74. if(pmt->formattype == FORMAT_VideoInfo) 
  75. {
  76. VIDEOINFOHEADER* vih = (VIDEOINFOHEADER*)pmt->pbFormat;
  77. pbh = &vih->bmiHeader;
  78. s.Empty();
  79. ss.Format(_T("FORMAT_VideoInfon")); s += ss;
  80. ss.Format(_T("tAvgTimePerFrame %I64d, %.4fn"), vih->AvgTimePerFrame, (float)10000000/vih->AvgTimePerFrame); s += ss;
  81. ss.Format(_T("trcSource %d,%d,%d,%dn"), vih->rcSource); s += ss;
  82. ss.Format(_T("trcTarget %d,%d,%d,%dn"), vih->rcTarget); s += ss;
  83. f.WriteString(s);
  84. }
  85. else if(pmt->formattype == FORMAT_VideoInfo2) 
  86. {
  87. VIDEOINFOHEADER2* vih = (VIDEOINFOHEADER2*)pmt->pbFormat;
  88. pbh = &vih->bmiHeader;
  89. s.Empty();
  90. ss.Format(_T("FORMAT_VideoInfo2n")); s += ss;
  91. ss.Format(_T("tAvgTimePerFrame %I64d, %.4fn"), vih->AvgTimePerFrame, (float)10000000/vih->AvgTimePerFrame); s += ss;
  92. ss.Format(_T("trcSource %d,%d,%d,%dn"), vih->rcSource); s += ss;
  93. ss.Format(_T("trcTarget %d,%d,%d,%dn"), vih->rcTarget); s += ss;
  94. ss.Format(_T("tdwInterlaceFlags 0x%xn"), vih->dwInterlaceFlags); s += ss;
  95. ss.Format(_T("tdwPictAspectRatio %d:%dn"), vih->dwPictAspectRatioX, vih->dwPictAspectRatioY); s += ss;
  96. f.WriteString(s);
  97. }
  98. else
  99. {
  100. DeleteMediaType(pmt);
  101. continue;
  102. }
  103. s.Empty();
  104. ss.Format(_T("BITMAPINFOHEADERn")); s += ss;
  105. ss.Format(_T("tbiCompression %xn"), pbh->biCompression); s += ss;
  106. ss.Format(_T("tbiWidth %dn"), pbh->biWidth); s += ss;
  107. ss.Format(_T("tbiHeight %dn"), pbh->biHeight); s += ss;
  108. ss.Format(_T("tbiBitCount %dn"), pbh->biBitCount); s += ss;
  109. ss.Format(_T("tbiPlanes %dn"), pbh->biPlanes); s += ss;
  110. ss.Format(_T("tbiSizeImage %dn"), pbh->biSizeImage); s += ss;
  111. f.WriteString(s);
  112. DeleteMediaType(pmt);
  113. }
  114. }
  115. else if(size == sizeof(AUDIO_STREAM_CONFIG_CAPS))
  116. {
  117. // TODO
  118. }
  119. }
  120. int CountPins(IBaseFilter* pBF, int& nIn, int& nOut, int& nInC, int& nOutC)
  121. {
  122. nIn = nOut = 0;
  123. nInC = nOutC = 0;
  124. BeginEnumPins(pBF, pEP, pPin)
  125. {
  126. PIN_DIRECTION dir;
  127. if(SUCCEEDED(pPin->QueryDirection(&dir)))
  128. {
  129. CComPtr<IPin> pPinConnectedTo;
  130. pPin->ConnectedTo(&pPinConnectedTo);
  131. if(dir == PINDIR_INPUT) {nIn++; if(pPinConnectedTo) nInC++;}
  132. else if(dir == PINDIR_OUTPUT) {nOut++; if(pPinConnectedTo) nOutC++;}
  133. }
  134. }
  135. EndEnumPins
  136. return(nIn+nOut);
  137. }
  138. bool IsSplitter(IBaseFilter* pBF, bool fCountConnectedOnly)
  139. {
  140. int nIn, nOut, nInC, nOutC;
  141. CountPins(pBF, nIn, nOut, nInC, nOutC);
  142. return(fCountConnectedOnly ? nOutC > 1 : nOut > 1);
  143. }
  144. bool IsMultiplexer(IBaseFilter* pBF, bool fCountConnectedOnly)
  145. {
  146. int nIn, nOut, nInC, nOutC;
  147. CountPins(pBF, nIn, nOut, nInC, nOutC);
  148. return(fCountConnectedOnly ? nInC > 1 : nIn > 1);
  149. }
  150. bool IsStreamStart(IBaseFilter* pBF)
  151. {
  152. CComQIPtr<IAMFilterMiscFlags> pAMMF(pBF);
  153. if(pAMMF && pAMMF->GetMiscFlags()&AM_FILTER_MISC_FLAGS_IS_SOURCE)
  154. return(true);
  155. int nIn, nOut, nInC, nOutC;
  156. CountPins(pBF, nIn, nOut, nInC, nOutC);
  157. AM_MEDIA_TYPE mt;
  158. CComPtr<IPin> pIn = GetFirstPin(pBF);
  159. return((nOut > 1)
  160. || (nOut > 0 && nIn == 1 && pIn && SUCCEEDED(pIn->ConnectionMediaType(&mt)) && mt.majortype == MEDIATYPE_Stream));
  161. }
  162. bool IsStreamEnd(IBaseFilter* pBF)
  163. {
  164. int nIn, nOut, nInC, nOutC;
  165. CountPins(pBF, nIn, nOut, nInC, nOutC);
  166. return(nOut == 0);
  167. }
  168. bool IsVideoRenderer(IBaseFilter* pBF)
  169. {
  170. int nIn, nOut, nInC, nOutC;
  171. CountPins(pBF, nIn, nOut, nInC, nOutC);
  172. if(nInC > 0 && nOut == 0)
  173. {
  174. BeginEnumPins(pBF, pEP, pPin)
  175. {
  176. AM_MEDIA_TYPE mt;
  177. if(S_OK != pPin->ConnectionMediaType(&mt))
  178. continue;
  179. FreeMediaType(mt);
  180. return(!!(mt.majortype == MEDIATYPE_Video));
  181. /*&& (mt.formattype == FORMAT_VideoInfo || mt.formattype == FORMAT_VideoInfo2));*/
  182. }
  183. EndEnumPins
  184. }
  185. CLSID clsid;
  186. memcpy(&clsid, &GUID_NULL, sizeof(clsid));
  187. pBF->GetClassID(&clsid);
  188. return(clsid == CLSID_VideoRenderer || clsid == CLSID_VideoRendererDefault);
  189. }
  190. #include <initguid.h>
  191. DEFINE_GUID(CLSID_ReClock, 
  192. 0x9dc15360, 0x914c, 0x46b8, 0xb9, 0xdf, 0xbf, 0xe6, 0x7f, 0xd3, 0x6c, 0x6a); 
  193. bool IsAudioWaveRenderer(IBaseFilter* pBF)
  194. {
  195. int nIn, nOut, nInC, nOutC;
  196. CountPins(pBF, nIn, nOut, nInC, nOutC);
  197. if(nInC > 0 && nOut == 0 && CComQIPtr<IBasicAudio>(pBF))
  198. {
  199. BeginEnumPins(pBF, pEP, pPin)
  200. {
  201. AM_MEDIA_TYPE mt;
  202. if(S_OK != pPin->ConnectionMediaType(&mt))
  203. continue;
  204. FreeMediaType(mt);
  205. return(!!(mt.majortype == MEDIATYPE_Audio)
  206. /*&& mt.formattype == FORMAT_WaveFormatEx*/);
  207. }
  208. EndEnumPins
  209. }
  210. CLSID clsid;
  211. memcpy(&clsid, &GUID_NULL, sizeof(clsid));
  212. pBF->GetClassID(&clsid);
  213. return(clsid == CLSID_DSoundRender || clsid == CLSID_AudioRender || clsid == CLSID_ReClock
  214. || clsid == __uuidof(CNullAudioRenderer) || clsid == __uuidof(CNullUAudioRenderer));
  215. }
  216. IBaseFilter* GetUpStreamFilter(IBaseFilter* pBF, IPin* pInputPin)
  217. {
  218. BeginEnumPins(pBF, pEP, pPin)
  219. {
  220. if(pInputPin && pInputPin != pPin) continue;
  221. PIN_DIRECTION dir;
  222. CComPtr<IPin> pPinConnectedTo;
  223. if(SUCCEEDED(pPin->QueryDirection(&dir)) && dir == PINDIR_INPUT
  224. && SUCCEEDED(pPin->ConnectedTo(&pPinConnectedTo)))
  225. {
  226. return(GetFilterFromPin(pPinConnectedTo));
  227. }
  228. }
  229. EndEnumPins
  230. return(NULL);
  231. }
  232. IPin* GetUpStreamPin(IBaseFilter* pBF, IPin* pInputPin)
  233. {
  234. BeginEnumPins(pBF, pEP, pPin)
  235. {
  236. if(pInputPin && pInputPin != pPin) continue;
  237. PIN_DIRECTION dir;
  238. CComPtr<IPin> pPinConnectedTo;
  239. if(SUCCEEDED(pPin->QueryDirection(&dir)) && dir == PINDIR_INPUT
  240. && SUCCEEDED(pPin->ConnectedTo(&pPinConnectedTo)))
  241. {
  242. IPin* pRet = pPinConnectedTo.Detach();
  243. pRet->Release();
  244. return(pRet);
  245. }
  246. }
  247. EndEnumPins
  248. return(NULL);
  249. }
  250. IPin* GetFirstPin(IBaseFilter* pBF, PIN_DIRECTION dir)
  251. {
  252. if(!pBF) return(NULL);
  253. BeginEnumPins(pBF, pEP, pPin)
  254. {
  255. PIN_DIRECTION dir2;
  256. pPin->QueryDirection(&dir2);
  257. if(dir == dir2)
  258. {
  259. IPin* pRet = pPin.Detach();
  260. pRet->Release();
  261. return(pRet);
  262. }
  263. }
  264. EndEnumPins
  265. return(NULL);
  266. }
  267. IPin* GetFirstDisconnectedPin(IBaseFilter* pBF, PIN_DIRECTION dir)
  268. {
  269. if(!pBF) return(NULL);
  270. BeginEnumPins(pBF, pEP, pPin)
  271. {
  272. PIN_DIRECTION dir2;
  273. pPin->QueryDirection(&dir2);
  274. CComPtr<IPin> pPinTo;
  275. if(dir == dir2 && (S_OK != pPin->ConnectedTo(&pPinTo)))
  276. {
  277. IPin* pRet = pPin.Detach();
  278. pRet->Release();
  279. return(pRet);
  280. }
  281. }
  282. EndEnumPins
  283. return(NULL);
  284. }
  285. int RenderFilterPins(IBaseFilter* pBF, IGraphBuilder* pGB, bool fAll)
  286. {
  287. int nPinsRendered = 0;
  288. CInterfaceList<IPin> pProcessedPins;
  289. BeginEnumPins(pBF, pEP, pPin)
  290. {
  291. PIN_DIRECTION dir;
  292. CComPtr<IPin> pPinConnectedTo;
  293. if(SUCCEEDED(pPin->QueryDirection(&dir)) && dir == PINDIR_OUTPUT
  294. && FAILED(pPin->ConnectedTo(&pPinConnectedTo))
  295. && !pProcessedPins.Find(pPin))
  296. {
  297. CPinInfo pi;
  298. if(SUCCEEDED(pPin->QueryPinInfo(&pi)))
  299. {
  300. if(pi.achName[0] == '~' && !fAll)
  301. {
  302. pProcessedPins.AddTail(pPin);
  303. continue;
  304. }
  305. }
  306. if(FAILED(pPin->ConnectedTo(&pPinConnectedTo)))
  307. {
  308. if(SUCCEEDED(pGB->Render(pPin)) && SUCCEEDED(pPin->ConnectedTo(&pPinConnectedTo)))
  309. nPinsRendered++;
  310. }
  311. pEP->Reset();
  312. }
  313. pProcessedPins.AddTail(pPin);
  314. }
  315. EndEnumPins
  316. return(nPinsRendered);
  317. }
  318. void NukeDownstream(IBaseFilter* pBF, IFilterGraph* pFG)
  319. {
  320. if(!pBF) return;
  321. BeginEnumPins(pBF, pEP, pPin)
  322. {
  323. CComPtr<IPin> pPinTo;
  324. CPinInfo pi;
  325.         if(SUCCEEDED(pPin->ConnectedTo(&pPinTo)) && pPinTo
  326. && SUCCEEDED(pPinTo->QueryPinInfo(&pi)))
  327. {
  328. if(pi.dir == PINDIR_INPUT)
  329. {
  330. NukeDownstream(pi.pFilter, pFG);
  331. pFG->Disconnect(pPinTo);
  332. pFG->Disconnect(pPin);
  333. pFG->RemoveFilter(pi.pFilter);
  334. }
  335. }
  336. }
  337. EndEnumPins
  338. }
  339. void NukeDownstream(IPin* pPin, IFilterGraph* pFG)
  340. {
  341. CComPtr<IPin> pPinTo;
  342. if(!pPin || FAILED(pPin->ConnectedTo(&pPinTo)) || !pPinTo)
  343. return;
  344. CPinInfo pi;
  345. if(FAILED(pPinTo->QueryPinInfo(&pi)) || pi.dir != PINDIR_INPUT)
  346. return;
  347. NukeDownstream(pi.pFilter, pFG);
  348. pFG->RemoveFilter(pi.pFilter);
  349. }
  350. HRESULT AddFilterToGraph(IFilterGraph* pFG, IBaseFilter* pBF, WCHAR* pName)
  351. {
  352. return GetGraphFromFilter(pBF) ? S_FALSE : pFG->AddFilter(pBF, pName);
  353. }
  354. IBaseFilter* FindFilter(LPCWSTR clsid, IFilterGraph* pFG)
  355. {
  356. CLSID clsid2;
  357. CLSIDFromString(CComBSTR(clsid), &clsid2);
  358. return(FindFilter(clsid2, pFG));
  359. }
  360. IBaseFilter* FindFilter(const CLSID& clsid, IFilterGraph* pFG)
  361. {
  362. BeginEnumFilters(pFG, pEF, pBF)
  363. {
  364. CLSID clsid2;
  365. if(SUCCEEDED(pBF->GetClassID(&clsid2)) && clsid == clsid2)
  366. return(pBF);
  367. }
  368. EndEnumFilters
  369. return NULL;
  370. }
  371. CStringW GetFilterName(IBaseFilter* pBF)
  372. {
  373. CStringW name;
  374. CFilterInfo fi;
  375. if(pBF && SUCCEEDED(pBF->QueryFilterInfo(&fi)))
  376. name = fi.achName;
  377. return(name);
  378. }
  379. CStringW GetPinName(IPin* pPin)
  380. {
  381. CStringW name;
  382. CPinInfo pi;
  383. if(pPin && SUCCEEDED(pPin->QueryPinInfo(&pi))) 
  384. name = pi.achName;
  385. return(name);
  386. }
  387. IFilterGraph* GetGraphFromFilter(IBaseFilter* pBF)
  388. {
  389. if(!pBF) return NULL;
  390. IFilterGraph* pGraph = NULL;
  391. CFilterInfo fi;
  392. if(pBF && SUCCEEDED(pBF->QueryFilterInfo(&fi)))
  393. pGraph = fi.pGraph;
  394. return(pGraph);
  395. }
  396. IBaseFilter* GetFilterFromPin(IPin* pPin)
  397. {
  398. if(!pPin) return NULL;
  399. IBaseFilter* pBF = NULL;
  400. CPinInfo pi;
  401. if(pPin && SUCCEEDED(pPin->QueryPinInfo(&pi)))
  402. pBF = pi.pFilter;
  403. return(pBF);
  404. }
  405. IPin* AppendFilter(IPin* pPin, CString DisplayName, IGraphBuilder* pGB)
  406. {
  407. IPin* pRet = pPin;
  408. CInterfaceList<IBaseFilter> pFilters;
  409. do
  410. {
  411. if(!pPin || DisplayName.IsEmpty() || !pGB)
  412. break;
  413. CComPtr<IPin> pPinTo;
  414. PIN_DIRECTION dir;
  415. if(FAILED(pPin->QueryDirection(&dir)) || dir != PINDIR_OUTPUT || SUCCEEDED(pPin->ConnectedTo(&pPinTo)))
  416. break;
  417. CComPtr<IBindCtx> pBindCtx;
  418. CreateBindCtx(0, &pBindCtx);
  419. CComPtr<IMoniker> pMoniker;
  420. ULONG chEaten;
  421. if(S_OK != MkParseDisplayName(pBindCtx, CComBSTR(DisplayName), &chEaten, &pMoniker))
  422. break;
  423. CComPtr<IBaseFilter> pBF;
  424. if(FAILED(pMoniker->BindToObject(pBindCtx, 0, IID_IBaseFilter, (void**)&pBF)) || !pBF)
  425. break;
  426. CComPtr<IPropertyBag> pPB;
  427. if(FAILED(pMoniker->BindToStorage(pBindCtx, 0, IID_IPropertyBag, (void**)&pPB)))
  428. break;
  429. CComVariant var;
  430. if(FAILED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
  431. break;
  432. pFilters.AddTail(pBF);
  433. BeginEnumFilters(pGB, pEnum, pBF2) 
  434. pFilters.AddTail(pBF2); 
  435. EndEnumFilters
  436. if(FAILED(pGB->AddFilter(pBF, CStringW(var.bstrVal))))
  437. break;
  438. BeginEnumFilters(pGB, pEnum, pBF2) 
  439. if(!pFilters.Find(pBF2) && SUCCEEDED(pGB->RemoveFilter(pBF2))) 
  440. pEnum->Reset();
  441. EndEnumFilters
  442. pPinTo = GetFirstPin(pBF, PINDIR_INPUT);
  443. if(!pPinTo)
  444. {
  445. pGB->RemoveFilter(pBF);
  446. break;
  447. }
  448. HRESULT hr;
  449. if(FAILED(hr = pGB->ConnectDirect(pPin, pPinTo, NULL)))
  450. {
  451. hr = pGB->Connect(pPin, pPinTo);
  452. pGB->RemoveFilter(pBF);
  453. break;
  454. }
  455. BeginEnumFilters(pGB, pEnum, pBF2) 
  456. if(!pFilters.Find(pBF2) && SUCCEEDED(pGB->RemoveFilter(pBF2))) 
  457. pEnum->Reset();
  458. EndEnumFilters
  459. pRet = GetFirstPin(pBF, PINDIR_OUTPUT);
  460. if(!pRet)
  461. {
  462. pRet = pPin;
  463. pGB->RemoveFilter(pBF);
  464. break;
  465. }
  466. }
  467. while(false);
  468. return(pRet);
  469. }
  470. IPin* InsertFilter(IPin* pPin, CString DisplayName, IGraphBuilder* pGB)
  471. {
  472. do
  473. {
  474. if(!pPin || DisplayName.IsEmpty() || !pGB)
  475. break;
  476. PIN_DIRECTION dir;
  477. if(FAILED(pPin->QueryDirection(&dir)))
  478. break;
  479. CComPtr<IPin> pFrom, pTo;
  480. if(dir == PINDIR_INPUT)
  481. {
  482. pPin->ConnectedTo(&pFrom);
  483. pTo = pPin;
  484. }
  485. else if(dir == PINDIR_OUTPUT)
  486. {
  487. pFrom = pPin;
  488. pPin->ConnectedTo(&pTo);
  489. }
  490. if(!pFrom || !pTo)
  491. break;
  492. CComPtr<IBindCtx> pBindCtx;
  493. CreateBindCtx(0, &pBindCtx);
  494. CComPtr<IMoniker> pMoniker;
  495. ULONG chEaten;
  496. if(S_OK != MkParseDisplayName(pBindCtx, CComBSTR(DisplayName), &chEaten, &pMoniker))
  497. break;
  498. CComPtr<IBaseFilter> pBF;
  499. if(FAILED(pMoniker->BindToObject(pBindCtx, 0, IID_IBaseFilter, (void**)&pBF)) || !pBF)
  500. break;
  501. CComPtr<IPropertyBag> pPB;
  502. if(FAILED(pMoniker->BindToStorage(pBindCtx, 0, IID_IPropertyBag, (void**)&pPB)))
  503. break;
  504. CComVariant var;
  505. if(FAILED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
  506. break;
  507. if(FAILED(pGB->AddFilter(pBF, CStringW(var.bstrVal))))
  508. break;
  509. CComPtr<IPin> pFromTo = GetFirstPin(pBF, PINDIR_INPUT);
  510. if(!pFromTo)
  511. {
  512. pGB->RemoveFilter(pBF);
  513. break;
  514. }
  515. if(FAILED(pGB->Disconnect(pFrom)) || FAILED(pGB->Disconnect(pTo)))
  516. {
  517. pGB->RemoveFilter(pBF);
  518. pGB->ConnectDirect(pFrom, pTo, NULL);
  519. break;
  520. }
  521. HRESULT hr;
  522. if(FAILED(hr = pGB->ConnectDirect(pFrom, pFromTo, NULL)))
  523. {
  524. pGB->RemoveFilter(pBF);
  525. pGB->ConnectDirect(pFrom, pTo, NULL);
  526. break;
  527. }
  528. CComPtr<IPin> pToFrom = GetFirstPin(pBF, PINDIR_OUTPUT);
  529. if(!pToFrom)
  530. {
  531. pGB->RemoveFilter(pBF);
  532. pGB->ConnectDirect(pFrom, pTo, NULL);
  533. break;
  534. }
  535. if(FAILED(pGB->ConnectDirect(pToFrom, pTo, NULL)))
  536. {
  537. pGB->RemoveFilter(pBF);
  538. pGB->ConnectDirect(pFrom, pTo, NULL);
  539. break;
  540. }
  541. pPin = pToFrom;
  542. }
  543. while(false);
  544. return(pPin);
  545. }
  546. int Eval_Exception(int n_except)
  547. {
  548.     if(n_except == STATUS_ACCESS_VIOLATION)
  549. {
  550. AfxMessageBox(_T("The property page of this filter has just caused anmemory access violation. The application will gently die now :)"));
  551. }
  552.         
  553. return EXCEPTION_CONTINUE_SEARCH;
  554. }
  555. void MyOleCreatePropertyFrame(HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption, ULONG cObjects, LPUNKNOWN FAR* lplpUnk, ULONG cPages, LPCLSID lpPageClsID, LCID lcid, DWORD dwReserved, LPVOID lpvReserved)
  556. {
  557. __try
  558. {
  559. OleCreatePropertyFrame(hwndOwner, x, y, lpszCaption, cObjects, lplpUnk, cPages, lpPageClsID, lcid, dwReserved, lpvReserved);
  560. }
  561. __except(Eval_Exception(GetExceptionCode()))
  562. {
  563. // No code; this block never executed.
  564. }
  565. }
  566. void ShowPPage(CString DisplayName, HWND hParentWnd)
  567. {
  568. CComPtr<IBindCtx> pBindCtx;
  569. CreateBindCtx(0, &pBindCtx);
  570. CComPtr<IMoniker> pMoniker;
  571. ULONG chEaten;
  572. if(S_OK != MkParseDisplayName(pBindCtx, CStringW(DisplayName), &chEaten, &pMoniker))
  573. return;
  574. CComPtr<IBaseFilter> pBF;
  575. if(FAILED(pMoniker->BindToObject(pBindCtx, 0, IID_IBaseFilter, (void**)&pBF)) || !pBF)
  576. return;
  577. ShowPPage(pBF, hParentWnd);
  578. }
  579. void ShowPPage(IUnknown* pUnk, HWND hParentWnd)
  580. {
  581. CComQIPtr<ISpecifyPropertyPages> pSPP = pUnk;
  582. if(!pSPP) return;
  583. CString str;
  584. CComQIPtr<IBaseFilter> pBF = pSPP;
  585. CFilterInfo fi;
  586. CComQIPtr<IPin> pPin = pSPP;
  587. CPinInfo pi;
  588. if(pBF && SUCCEEDED(pBF->QueryFilterInfo(&fi)))
  589. str = fi.achName;
  590. else if(pPin && SUCCEEDED(pPin->QueryPinInfo(&pi)))
  591. str = pi.achName;
  592. CAUUID caGUID;
  593. caGUID.pElems = NULL;
  594. if(SUCCEEDED(pSPP->GetPages(&caGUID)))
  595. {
  596. IUnknown* lpUnk = NULL;
  597. pSPP.QueryInterface(&lpUnk);
  598. MyOleCreatePropertyFrame(
  599. hParentWnd, 0, 0, CStringW(str), 
  600. 1, (IUnknown**)&lpUnk, 
  601. caGUID.cElems, caGUID.pElems, 
  602. 0, 0, NULL);
  603. lpUnk->Release();
  604. if(caGUID.pElems) CoTaskMemFree(caGUID.pElems);
  605. }
  606. }
  607. CLSID GetCLSID(IBaseFilter* pBF)
  608. {
  609. CLSID clsid = GUID_NULL;
  610. if(pBF) pBF->GetClassID(&clsid);
  611. return(clsid);
  612. }
  613. CLSID GetCLSID(IPin* pPin)
  614. {
  615. return(GetCLSID(GetFilterFromPin(pPin)));
  616. }
  617. bool IsCLSIDRegistered(LPCTSTR clsid)
  618. {
  619. CString rootkey1(_T("CLSID\"));
  620. CString rootkey2(_T("CLSID\{083863F1-70DE-11d0-BD40-00A0C911CE86}\Instance\"));
  621. return ERROR_SUCCESS == CRegKey().Open(HKEY_CLASSES_ROOT, rootkey1 + clsid, KEY_READ)
  622. || ERROR_SUCCESS == CRegKey().Open(HKEY_CLASSES_ROOT, rootkey2 + clsid, KEY_READ);
  623. }
  624. bool IsCLSIDRegistered(const CLSID& clsid)
  625. {
  626. bool fRet = false;
  627. LPOLESTR pStr = NULL;
  628. if(S_OK == StringFromCLSID(clsid, &pStr) && pStr)
  629. {
  630. fRet = IsCLSIDRegistered(CString(pStr));
  631. CoTaskMemFree(pStr);
  632. }
  633. return(fRet);
  634. }
  635. void StringToBin(CString s, CByteArray& data)
  636. {
  637. s.Trim();
  638. ASSERT((s.GetLength()&1) == 0);
  639. data.SetSize(s.GetLength()/2);
  640. BYTE b = 0;
  641. s.MakeUpper();
  642. for(int i = 0, j = s.GetLength(); i < j; i++)
  643. {
  644. TCHAR c = s[i];
  645. if(c >= '0' && c <= '9') 
  646. {
  647. if(!(i&1)) b = ((char(c-'0')<<4)&0xf0)|(b&0x0f);
  648. else b = (char(c-'0')&0x0f)|(b&0xf0);
  649. }
  650. else if(c >= 'A' && c <= 'F')
  651. {
  652. if(!(i&1)) b = ((char(c-'A'+10)<<4)&0xf0)|(b&0x0f);
  653. else b = (char(c-'A'+10)&0x0f)|(b&0xf0);
  654. }
  655. else break;
  656. if(i&1)
  657. {
  658. data[i>>1] = b;
  659. b = 0;
  660. }
  661. }
  662. }
  663. CString BinToString(BYTE* ptr, int len)
  664. {
  665. CString ret;
  666. while(len-- > 0)
  667. {
  668. TCHAR high, low;
  669. high = (*ptr>>4) >= 10 ? (*ptr>>4)-10 + 'A' : (*ptr>>4) + '0';
  670. low = (*ptr&0xf) >= 10 ? (*ptr&0xf)-10 + 'A' : (*ptr&0xf) + '0';
  671. CString s;
  672. s.Format(_T("%c%c"), high, low);
  673. ret += s;
  674. ptr++;
  675. }
  676. return(ret);
  677. }
  678. static void FindFiles(CString fn, CList<CString>& files)
  679. {
  680. CString path = fn;
  681. path.Replace('/', '\');
  682. path = path.Left(path.ReverseFind('\')+1);
  683. WIN32_FIND_DATA findData;
  684. HANDLE h = FindFirstFile(fn, &findData);
  685. if(h != INVALID_HANDLE_VALUE)
  686. {
  687. do {files.AddTail(path + findData.cFileName);}
  688. while(FindNextFile(h, &findData));
  689. FindClose(h);
  690. }
  691. }
  692. cdrom_t GetCDROMType(TCHAR drive, CList<CString>& files)
  693. {
  694. files.RemoveAll();
  695. CString path;
  696. path.Format(_T("%c:"), drive);
  697. if(GetDriveType(path + _T("\")) == DRIVE_CDROM)
  698. {
  699. // CDROM_VideoCD
  700. FindFiles(path + _T("\mpegav\avseq??.dat"), files);
  701. FindFiles(path + _T("\mpegav\avseq??.mpg"), files);
  702. FindFiles(path + _T("\mpeg2\avseq??.dat"), files);
  703. FindFiles(path + _T("\mpeg2\avseq??.mpg"), files);
  704. FindFiles(path + _T("\mpegav\music??.dat"), files);
  705. FindFiles(path + _T("\mpegav\music??.mpg"), files);
  706. FindFiles(path + _T("\mpeg2\music??.dat"), files);
  707. FindFiles(path + _T("\mpeg2\music??.mpg"), files);
  708. if(files.GetCount() > 0) return CDROM_VideoCD;
  709. // CDROM_DVDVideo
  710. FindFiles(path + _T("\VIDEO_TS\video_ts.ifo"), files);
  711. if(files.GetCount() > 0) return CDROM_DVDVideo;
  712. // CDROM_Audio
  713. if(!(GetVersion()&0x80000000))
  714. {
  715. HANDLE hDrive = CreateFile(CString(_T("\\.\")) + path, GENERIC_READ, FILE_SHARE_READ, NULL, 
  716. OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, (HANDLE)NULL);
  717. if(hDrive != INVALID_HANDLE_VALUE)
  718. {
  719. DWORD BytesReturned;
  720. CDROM_TOC TOC;
  721. if(DeviceIoControl(hDrive, IOCTL_CDROM_READ_TOC, NULL, 0, &TOC, sizeof(TOC), &BytesReturned, 0))
  722. {
  723. for(int i = TOC.FirstTrack; i <= TOC.LastTrack; i++)
  724. {
  725. // MMC-3 Draft Revision 10g: Table 222 ?Q Sub-channel control field
  726. TOC.TrackData[i-1].Control &= 5;
  727. if(TOC.TrackData[i-1].Control == 0 || TOC.TrackData[i-1].Control == 1) 
  728. {
  729. CString fn;
  730. fn.Format(_T("%s\track%02d.cda"), path, i);
  731. files.AddTail(fn);
  732. }
  733. }
  734. }
  735. CloseHandle(hDrive);
  736. }
  737. }
  738. if(files.GetCount() > 0) return CDROM_Audio;
  739. // it is a cdrom but nothing special
  740. return CDROM_Unknown;
  741. }
  742. return CDROM_NotFound;
  743. }
  744. CString GetDriveLabel(TCHAR drive)
  745. {
  746. CString label;
  747. CString path;
  748. path.Format(_T("%c:\"), drive);
  749. TCHAR VolumeNameBuffer[MAX_PATH], FileSystemNameBuffer[MAX_PATH];
  750. DWORD VolumeSerialNumber, MaximumComponentLength, FileSystemFlags;
  751. if(GetVolumeInformation(path, 
  752. VolumeNameBuffer, MAX_PATH, &VolumeSerialNumber, &MaximumComponentLength, 
  753. &FileSystemFlags, FileSystemNameBuffer, MAX_PATH))
  754. {
  755. label = VolumeNameBuffer;
  756. }
  757. return(label);
  758. }
  759. bool GetKeyFrames(CString fn, CUIntArray& kfs)
  760. {
  761. kfs.RemoveAll();
  762. CString fn2 = CString(fn).MakeLower();
  763. if(fn2.Mid(fn2.ReverseFind('.')+1) == _T("avi"))
  764. {
  765. AVIFileInit();
  766.     
  767. PAVIFILE pfile;
  768. if(AVIFileOpen(&pfile, fn, OF_SHARE_DENY_WRITE, 0L) == 0)
  769. {
  770. AVIFILEINFO afi;
  771. memset(&afi, 0, sizeof(afi));
  772. AVIFileInfo(pfile, &afi, sizeof(AVIFILEINFO));
  773. CComPtr<IAVIStream> pavi;
  774. if(AVIFileGetStream(pfile, &pavi, streamtypeVIDEO, 0) == AVIERR_OK)
  775. {
  776. AVISTREAMINFO si;
  777. AVIStreamInfo(pavi, &si, sizeof(si));
  778. if(afi.dwCaps&AVIFILECAPS_ALLKEYFRAMES)
  779. {
  780. kfs.SetSize(si.dwLength);
  781. for(int kf = 0; kf < si.dwLength; kf++) kfs[kf] = kf;
  782. }
  783. else
  784. {
  785. for(int kf = 0; ; kf++)
  786. {
  787. kf = pavi->FindSample(kf, FIND_KEY|FIND_NEXT);
  788. if(kf < 0 || kfs.GetCount() > 0 && kfs[kfs.GetCount()-1] >= kf) break;
  789. kfs.Add(kf);
  790. }
  791. if(kfs.GetCount() > 0 && kfs[kfs.GetCount()-1] < si.dwLength-1)
  792. {
  793. kfs.Add(si.dwLength-1);
  794. }
  795. }
  796. }
  797. AVIFileRelease(pfile);
  798. }
  799. AVIFileExit();
  800. }
  801. return(kfs.GetCount() > 0);
  802. }
  803. DVD_HMSF_TIMECODE RT2HMSF(REFERENCE_TIME rt, double fps)
  804. {
  805. DVD_HMSF_TIMECODE hmsf = 
  806. {
  807. (BYTE)((rt/10000000/60/60)),
  808. (BYTE)((rt/10000000/60)%60),
  809. (BYTE)((rt/10000000)%60),
  810. (BYTE)(1.0*((rt/10000)%1000) * fps / 1000)
  811. };
  812. return hmsf;
  813. }
  814. REFERENCE_TIME HMSF2RT(DVD_HMSF_TIMECODE hmsf, double fps)
  815. {
  816. if(fps == 0) {hmsf.bFrames = 0; fps = 1;}
  817. return (REFERENCE_TIME)((((REFERENCE_TIME)hmsf.bHours*60+hmsf.bMinutes)*60+hmsf.bSeconds)*1000+1.0*hmsf.bFrames*1000/fps)*10000;
  818. }
  819. HRESULT AddToRot(IUnknown* pUnkGraph, DWORD* pdwRegister) 
  820. {
  821.     CComPtr<IRunningObjectTable> pROT;
  822.     if(FAILED(GetRunningObjectTable(0, &pROT)))
  823. return E_FAIL;
  824. WCHAR wsz[256];
  825.     swprintf(wsz, L"FilterGraph %08p pid %08x (MPC)", (DWORD_PTR)pUnkGraph, GetCurrentProcessId());
  826.     HRESULT hr;
  827. CComPtr<IMoniker> pMoniker;
  828.     if(SUCCEEDED(hr = CreateItemMoniker(L"!", wsz, &pMoniker)))
  829.         hr = pROT->Register(ROTFLAGS_REGISTRATIONKEEPSALIVE, pUnkGraph, pMoniker, pdwRegister);
  830. return hr;
  831. }
  832. void RemoveFromRot(DWORD& dwRegister)
  833. {
  834. CComPtr<IRunningObjectTable> pROT;
  835.     if(SUCCEEDED(GetRunningObjectTable(0, &pROT)))
  836.         pROT->Revoke(dwRegister);
  837. dwRegister = 0;
  838. }
  839. void memsetd(void* dst, unsigned int c, int nbytes)
  840. {
  841. __asm
  842. {
  843. mov eax, c
  844. mov ecx, nbytes
  845. shr ecx, 2
  846. mov edi, dst
  847. cld
  848. rep stosd
  849. }
  850. }
  851. bool ExtractBIH(const AM_MEDIA_TYPE* pmt, BITMAPINFOHEADER* bih)
  852. {
  853. if(pmt)
  854. {
  855. if(pmt->formattype == FORMAT_VideoInfo)
  856. {
  857. VIDEOINFOHEADER* vih = (VIDEOINFOHEADER*)pmt->pbFormat;
  858. memcpy(bih, &vih->bmiHeader, sizeof(BITMAPINFOHEADER));
  859. }
  860. else if(pmt->formattype == FORMAT_VideoInfo2)
  861. {
  862. VIDEOINFOHEADER2* vih = (VIDEOINFOHEADER2*)pmt->pbFormat;
  863. memcpy(bih, &vih->bmiHeader, sizeof(BITMAPINFOHEADER));
  864. }
  865. else if(pmt->formattype == FORMAT_MPEGVideo)
  866. {
  867. VIDEOINFOHEADER* vih = &((MPEG1VIDEOINFO*)pmt->pbFormat)->hdr;
  868. memcpy(bih, &vih->bmiHeader, sizeof(BITMAPINFOHEADER));
  869. }
  870. else if(pmt->formattype == FORMAT_MPEG2_VIDEO)
  871. {
  872. VIDEOINFOHEADER2* vih = &((MPEG2VIDEOINFO*)pmt->pbFormat)->hdr;
  873. memcpy(bih, &vih->bmiHeader, sizeof(BITMAPINFOHEADER));
  874. }
  875. else if(pmt->formattype == FORMAT_DiracVideoInfo)
  876. {
  877. VIDEOINFOHEADER2* vih = &((DIRACINFOHEADER*)pmt->pbFormat)->hdr;
  878. memcpy(bih, &vih->bmiHeader, sizeof(BITMAPINFOHEADER));
  879. }
  880. return(true);
  881. }
  882. return(false);
  883. }
  884. bool ExtractBIH(IMediaSample* pMS, BITMAPINFOHEADER* bih)
  885. {
  886. AM_MEDIA_TYPE* pmt = NULL;
  887. pMS->GetMediaType(&pmt);
  888. if(pmt)
  889. {
  890. bool fRet = ExtractBIH(pmt, bih);
  891. DeleteMediaType(pmt);
  892. return(fRet);
  893. }
  894. return(false);
  895. }
  896. bool ExtractDim(const AM_MEDIA_TYPE* pmt, int& w, int& h, int& arx, int& ary)
  897. {
  898. w = h = arx = ary = 0;
  899. if(pmt->formattype == FORMAT_VideoInfo || pmt->formattype == FORMAT_MPEGVideo)
  900. {
  901. VIDEOINFOHEADER* vih = (VIDEOINFOHEADER*)pmt->pbFormat;
  902. w = vih->bmiHeader.biWidth;
  903. h = abs(vih->bmiHeader.biHeight);
  904. arx = w * vih->bmiHeader.biYPelsPerMeter;
  905. ary = h * vih->bmiHeader.biXPelsPerMeter;
  906. }
  907. else if(pmt->formattype == FORMAT_VideoInfo2 || pmt->formattype == FORMAT_MPEG2_VIDEO || pmt->formattype == FORMAT_DiracVideoInfo)
  908. {
  909. VIDEOINFOHEADER2* vih = (VIDEOINFOHEADER2*)pmt->pbFormat;
  910. w = vih->bmiHeader.biWidth;
  911. h = abs(vih->bmiHeader.biHeight);
  912. arx = vih->dwPictAspectRatioX;
  913. ary = vih->dwPictAspectRatioY;
  914. }
  915. else
  916. {
  917. return(false);
  918. }
  919. if(!arx || !ary)
  920. {
  921. arx = w;
  922. ary = h;
  923. }
  924. BYTE* ptr = NULL;
  925. DWORD len = 0;
  926. if(pmt->formattype == FORMAT_MPEGVideo)
  927. {
  928. ptr = ((MPEG1VIDEOINFO*)pmt->pbFormat)->bSequenceHeader;
  929. len = ((MPEG1VIDEOINFO*)pmt->pbFormat)->cbSequenceHeader;
  930. if(ptr && len >= 8 && *(DWORD*)ptr == 0xb3010000)
  931. {
  932. w = (ptr[4]<<4)|(ptr[5]>>4);
  933. h = ((ptr[5]&0xf)<<8)|ptr[6];
  934. float ar[] = 
  935. {
  936. 1.0000f,1.0000f,0.6735f,0.7031f,
  937. 0.7615f,0.8055f,0.8437f,0.8935f,
  938. 0.9157f,0.9815f,1.0255f,1.0695f,
  939. 1.0950f,1.1575f,1.2015f,1.0000f,
  940. };
  941. arx = (int)((float)w / ar[ptr[7]>>4] + 0.5);
  942. ary = h;
  943. }
  944. }
  945. else if(pmt->formattype == FORMAT_MPEG2_VIDEO)
  946. {
  947. ptr = (BYTE*)((MPEG2VIDEOINFO*)pmt->pbFormat)->dwSequenceHeader; 
  948. len = ((MPEG2VIDEOINFO*)pmt->pbFormat)->cbSequenceHeader;
  949. if(ptr && len >= 8 && *(DWORD*)ptr == 0xb3010000)
  950. {
  951. w = (ptr[4]<<4)|(ptr[5]>>4);
  952. h = ((ptr[5]&0xf)<<8)|ptr[6];
  953. struct {int x, y;} ar[] = {{w,h},{4,3},{16,9},{221,100},{w,h}};
  954. int i = min(max(ptr[7]>>4, 1), 5)-1;
  955. arx = ar[i].x;
  956. ary = ar[i].y;
  957. }
  958. }
  959. if(ptr && len >= 8)
  960. {
  961. }
  962. DWORD a = arx, b = ary;
  963.     while(a) {int tmp = a; a = b % tmp; b = tmp;}
  964. if(b) arx /= b, ary /= b;
  965. return(true);
  966. }
  967. bool MakeMPEG2MediaType(CMediaType& mt, BYTE* seqhdr, DWORD len, int w, int h)
  968. {
  969. if(len < 4 || *(DWORD*)seqhdr != 0xb3010000) return false;
  970. BYTE* seqhdr_ext = NULL;
  971. BYTE* seqhdr_end = seqhdr + 11;
  972. if(seqhdr_end - seqhdr > len) return false;
  973. if(*seqhdr_end & 0x02) seqhdr_end += 64;
  974. if(seqhdr_end - seqhdr > len) return false;
  975. if(*seqhdr_end & 0x01) seqhdr_end += 64;
  976. if(seqhdr_end - seqhdr > len) return false;
  977. seqhdr_end++;
  978. if(seqhdr_end - seqhdr > len) return false;
  979. if(len - (seqhdr_end - seqhdr) > 4 && *(DWORD*)seqhdr_end == 0xb5010000) {seqhdr_ext = seqhdr_end; seqhdr_end += 10;}
  980. if(seqhdr_end - seqhdr > len) return false;
  981. len = seqhdr_end - seqhdr;
  982. mt = CMediaType();
  983. mt.majortype = MEDIATYPE_Video;
  984. mt.subtype = MEDIASUBTYPE_MPEG2_VIDEO;
  985. mt.formattype = FORMAT_MPEG2Video;
  986. MPEG2VIDEOINFO* vih = (MPEG2VIDEOINFO*)mt.AllocFormatBuffer(FIELD_OFFSET(MPEG2VIDEOINFO, dwSequenceHeader) + len);
  987. memset(mt.Format(), 0, mt.FormatLength());
  988. vih->hdr.bmiHeader.biSize = sizeof(vih->hdr.bmiHeader);
  989. vih->hdr.bmiHeader.biWidth = w;
  990. vih->hdr.bmiHeader.biHeight = h;
  991. BYTE* pSequenceHeader = (BYTE*)vih->dwSequenceHeader;
  992. memcpy(pSequenceHeader, seqhdr, len);
  993. vih->cbSequenceHeader = len;
  994. static char profile[8] = 
  995. {
  996. 0, AM_MPEG2Profile_High, AM_MPEG2Profile_SpatiallyScalable, AM_MPEG2Profile_SNRScalable, 
  997. AM_MPEG2Profile_Main, AM_MPEG2Profile_Simple, 0, 0
  998. };
  999. static char level[16] =
  1000. {
  1001. 0, 0, 0, 0, 
  1002. AM_MPEG2Level_High, 0, AM_MPEG2Level_High1440, 0, 
  1003. AM_MPEG2Level_Main, 0, AM_MPEG2Level_Low, 0, 
  1004. 0, 0, 0, 0
  1005. };
  1006. if(seqhdr_ext && (seqhdr_ext[4] & 0xf0) == 0x10)
  1007. {
  1008. vih->dwProfile = profile[seqhdr_ext[4] & 0x07];
  1009. vih->dwLevel = level[seqhdr_ext[5] >> 4];
  1010. }
  1011. return true;
  1012. }
  1013. unsigned __int64 GetFileVersion(LPCTSTR fn)
  1014. {
  1015. unsigned __int64 ret = 0;
  1016. DWORD buff[4];
  1017. VS_FIXEDFILEINFO* pvsf = (VS_FIXEDFILEINFO*)buff;
  1018. DWORD d; // a variable that GetFileVersionInfoSize sets to zero (but why is it needed ?????????????????????????????? :)
  1019. DWORD len = GetFileVersionInfoSize((TCHAR*)fn, &d);
  1020. if(len)
  1021. {
  1022. TCHAR* b1 = new TCHAR[len];
  1023. if(b1)
  1024. {
  1025.             UINT uLen;
  1026.             if(GetFileVersionInfo((TCHAR*)fn, 0, len, b1) && VerQueryValue(b1, _T("\"), (void**)&pvsf, &uLen))
  1027.             {
  1028. ret = ((unsigned __int64)pvsf->dwFileVersionMS<<32) | pvsf->dwFileVersionLS;
  1029.             }
  1030.             delete [] b1;
  1031. }
  1032. }
  1033. return ret;
  1034. }
  1035. bool CreateFilter(CStringW DisplayName, IBaseFilter** ppBF, CStringW& FriendlyName)
  1036. {
  1037. if(!ppBF) return(false);
  1038. *ppBF = NULL;
  1039. FriendlyName.Empty();
  1040. CComPtr<IBindCtx> pBindCtx;
  1041. CreateBindCtx(0, &pBindCtx);
  1042. CComPtr<IMoniker> pMoniker;
  1043. ULONG chEaten;
  1044. if(S_OK != MkParseDisplayName(pBindCtx, CComBSTR(DisplayName), &chEaten, &pMoniker))
  1045. return(false);
  1046. if(FAILED(pMoniker->BindToObject(pBindCtx, 0, IID_IBaseFilter, (void**)ppBF)) || !*ppBF)
  1047. return(false);
  1048. CComPtr<IPropertyBag> pPB;
  1049. CComVariant var;
  1050. if(SUCCEEDED(pMoniker->BindToStorage(pBindCtx, 0, IID_IPropertyBag, (void**)&pPB))
  1051. && SUCCEEDED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
  1052. FriendlyName = var.bstrVal;
  1053. return(true);
  1054. }
  1055. IBaseFilter* AppendFilter(IPin* pPin, IMoniker* pMoniker, IGraphBuilder* pGB)
  1056. {
  1057. do
  1058. {
  1059. if(!pPin || !pMoniker || !pGB)
  1060. break;
  1061. CComPtr<IPin> pPinTo;
  1062. PIN_DIRECTION dir;
  1063. if(FAILED(pPin->QueryDirection(&dir)) || dir != PINDIR_OUTPUT || SUCCEEDED(pPin->ConnectedTo(&pPinTo)))
  1064. break;
  1065. CComPtr<IBindCtx> pBindCtx;
  1066. CreateBindCtx(0, &pBindCtx);
  1067. CComPtr<IPropertyBag> pPB;
  1068. if(FAILED(pMoniker->BindToStorage(pBindCtx, 0, IID_IPropertyBag, (void**)&pPB)))
  1069. break;
  1070. CComVariant var;
  1071. if(FAILED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
  1072. break;
  1073. CComPtr<IBaseFilter> pBF;
  1074. if(FAILED(pMoniker->BindToObject(pBindCtx, 0, IID_IBaseFilter, (void**)&pBF)) || !pBF)
  1075. break;
  1076. if(FAILED(pGB->AddFilter(pBF, CStringW(var.bstrVal))))
  1077. break;
  1078. BeginEnumPins(pBF, pEP, pPinTo)
  1079. {
  1080. PIN_DIRECTION dir;
  1081. if(FAILED(pPinTo->QueryDirection(&dir)) || dir != PINDIR_INPUT)
  1082. continue;
  1083. if(SUCCEEDED(pGB->ConnectDirect(pPin, pPinTo, NULL)))
  1084. return(pBF);
  1085. }
  1086. EndEnumFilters
  1087. pGB->RemoveFilter(pBF);
  1088. }
  1089. while(false);
  1090. return(NULL);
  1091. }
  1092. CStringW GetFriendlyName(CStringW DisplayName)
  1093. {
  1094. CStringW FriendlyName;
  1095. CComPtr<IBindCtx> pBindCtx;
  1096. CreateBindCtx(0, &pBindCtx);
  1097. CComPtr<IMoniker> pMoniker;
  1098. ULONG chEaten;
  1099. if(S_OK != MkParseDisplayName(pBindCtx, CComBSTR(DisplayName), &chEaten, &pMoniker))
  1100. return(false);
  1101. CComPtr<IPropertyBag> pPB;
  1102. CComVariant var;
  1103. if(SUCCEEDED(pMoniker->BindToStorage(pBindCtx, 0, IID_IPropertyBag, (void**)&pPB))
  1104. && SUCCEEDED(pPB->Read(CComBSTR(_T("FriendlyName")), &var, NULL)))
  1105. FriendlyName = var.bstrVal;
  1106. return FriendlyName;
  1107. }
  1108. typedef struct
  1109. {
  1110. CString path;
  1111. HINSTANCE hInst;
  1112. CLSID clsid;
  1113. } ExternalObject;
  1114. static CList<ExternalObject> s_extobjs;
  1115. HRESULT LoadExternalObject(LPCTSTR path, REFCLSID clsid, REFIID iid, void** ppv)
  1116. {
  1117. CheckPointer(ppv, E_POINTER);
  1118. CString fullpath = MakeFullPath(path);
  1119. HINSTANCE hInst = NULL;
  1120. bool fFound = false;
  1121. POSITION pos = s_extobjs.GetHeadPosition();
  1122. while(pos)
  1123. {
  1124. ExternalObject& eo = s_extobjs.GetNext(pos);
  1125. if(!eo.path.CompareNoCase(fullpath))
  1126. {
  1127. hInst = eo.hInst;
  1128. fFound = true;
  1129. break;
  1130. }
  1131. }
  1132. HRESULT hr = E_FAIL;
  1133. if(hInst || (hInst = CoLoadLibrary(CComBSTR(fullpath), TRUE)))
  1134. {
  1135. typedef HRESULT (__stdcall * PDllGetClassObject)(REFCLSID rclsid, REFIID riid, LPVOID* ppv);
  1136. PDllGetClassObject p = (PDllGetClassObject)GetProcAddress(hInst, "DllGetClassObject");
  1137. if(p && FAILED(hr = p(clsid, iid, ppv)))
  1138. {
  1139. CComPtr<IClassFactory> pCF;
  1140. if(SUCCEEDED(hr = p(clsid, __uuidof(IClassFactory), (void**)&pCF)))
  1141. {
  1142. hr = pCF->CreateInstance(NULL, iid, ppv);
  1143. }
  1144. }
  1145. }
  1146. if(FAILED(hr) && hInst && !fFound)
  1147. {
  1148. CoFreeLibrary(hInst);
  1149. return hr;
  1150. }
  1151. if(hInst && !fFound)
  1152. {
  1153. ExternalObject eo;
  1154. eo.path = fullpath;
  1155. eo.hInst = hInst;
  1156. eo.clsid = clsid;
  1157. s_extobjs.AddTail(eo);
  1158. }
  1159. return hr;
  1160. }
  1161. HRESULT LoadExternalFilter(LPCTSTR path, REFCLSID clsid, IBaseFilter** ppBF)
  1162. {
  1163. return LoadExternalObject(path, clsid, __uuidof(IBaseFilter), (void**)ppBF);
  1164. }
  1165. HRESULT LoadExternalPropertyPage(IPersist* pP, REFCLSID clsid, IPropertyPage** ppPP)
  1166. {
  1167. CLSID clsid2 = GUID_NULL;
  1168. if(FAILED(pP->GetClassID(&clsid2))) return E_FAIL;
  1169. POSITION pos = s_extobjs.GetHeadPosition();
  1170. while(pos)
  1171. {
  1172. ExternalObject& eo = s_extobjs.GetNext(pos);
  1173. if(eo.clsid == clsid2)
  1174. {
  1175. return LoadExternalObject(eo.path, clsid, __uuidof(IPropertyPage), (void**)ppPP);
  1176. }
  1177. }
  1178. return E_FAIL;
  1179. }
  1180. void UnloadExternalObjects()
  1181. {
  1182. POSITION pos = s_extobjs.GetHeadPosition();
  1183. while(pos)
  1184. {
  1185. ExternalObject& eo = s_extobjs.GetNext(pos);
  1186. CoFreeLibrary(eo.hInst);
  1187. }
  1188. s_extobjs.RemoveAll();
  1189. }
  1190. CString MakeFullPath(LPCTSTR path)
  1191. {
  1192. CString full(path);
  1193. full.Replace('/', '\');
  1194. CString fn;
  1195. fn.ReleaseBuffer(GetModuleFileName(AfxGetInstanceHandle(), fn.GetBuffer(MAX_PATH), MAX_PATH));
  1196. CPath p(fn);
  1197. if(full.GetLength() >= 2 && full[0] == '\' && full[1] != '\')
  1198. {
  1199. p.StripToRoot();
  1200. full = CString(p) + full.Mid(1); 
  1201. }
  1202. else if(full.Find(_T(":\")) < 0)
  1203. {
  1204. p.RemoveFileSpec();
  1205. p.AddBackslash();
  1206. full = CString(p) + full;
  1207. }
  1208. CPath c(full);
  1209. c.Canonicalize();
  1210. return CString(c);
  1211. }
  1212. //
  1213. CString GetMediaTypeName(const GUID& guid)
  1214. {
  1215. CString ret = guid == GUID_NULL 
  1216. ? _T("Any type") 
  1217. : CString(GuidNames[guid]);
  1218. if(ret == _T("FOURCC GUID"))
  1219. {
  1220. CString str;
  1221. if(guid.Data1 >= 0x10000)
  1222. str.Format(_T("Video: %c%c%c%c"), (guid.Data1>>0)&0xff, (guid.Data1>>8)&0xff, (guid.Data1>>16)&0xff, (guid.Data1>>24)&0xff);
  1223. else
  1224. str.Format(_T("Audio: 0x%08x"), guid.Data1);
  1225. ret = str;
  1226. }
  1227. else if(ret == _T("Unknown GUID Name"))
  1228. {
  1229. WCHAR null[128] = {0}, buff[128];
  1230. StringFromGUID2(GUID_NULL, null, 127);
  1231. ret = CString(CStringW(StringFromGUID2(guid, buff, 127) ? buff : null));
  1232. }
  1233. return ret;
  1234. }
  1235. GUID GUIDFromCString(CString str)
  1236. {
  1237. GUID guid = GUID_NULL;
  1238. CLSIDFromString(CComBSTR(str), &guid);
  1239. return guid;
  1240. }
  1241. CString CStringFromGUID(const GUID& guid)
  1242. {
  1243. WCHAR null[128] = {0}, buff[128];
  1244. StringFromGUID2(GUID_NULL, null, 127);
  1245. return CString(StringFromGUID2(guid, buff, 127) > 0 ? buff : null);
  1246. }
  1247. CStringW UTF8To16(LPCSTR utf8)
  1248. {
  1249. CStringW str;
  1250. int n = MultiByteToWideChar(CP_UTF8, 0, utf8, -1, NULL, 0)-1;
  1251. if(n < 0) return str;
  1252. str.ReleaseBuffer(MultiByteToWideChar(CP_UTF8, 0, utf8, -1, str.GetBuffer(n), n+1)-1);
  1253. return str;
  1254. }
  1255. CStringA UTF16To8(LPCWSTR utf16)
  1256. {
  1257. CStringA str;
  1258. int n = WideCharToMultiByte(CP_UTF8, 0, utf16, -1, NULL, 0, NULL, NULL)-1;
  1259. if(n < 0) return str;
  1260. str.ReleaseBuffer(WideCharToMultiByte(CP_UTF8, 0, utf16, -1, str.GetBuffer(n), n+1, NULL, NULL)-1);
  1261. return str;
  1262. }
  1263. static struct {LPCSTR name, iso6392, iso6391;} s_isolangs[] = 
  1264. {
  1265. {"Abkhazian", "abk", "ab"},
  1266. {"Achinese", "ace", ""},
  1267. {"Acoli", "ach", ""},
  1268. {"Adangme", "ada", ""},
  1269. {"Afar", "aar", "aa"},
  1270. {"Afrihili", "afh", ""},
  1271. {"Afrikaans", "afr", "af"},
  1272. {"Afro-Asiatic (Other)", "afa", ""},
  1273. {"Akan", "aka", "ak"},
  1274. {"Akkadian", "akk", ""},
  1275. {"Albanian", "alb", "sq"},
  1276. {"Albanian", "sqi", "sq"},
  1277. {"Aleut", "ale", ""},
  1278. {"Algonquian languages", "alg", ""},
  1279. {"Altaic (Other)", "tut", ""},
  1280. {"Amharic", "amh", "am"},
  1281. {"Apache languages", "apa", ""},
  1282. {"Arabic", "ara", "ar"},
  1283. {"Aragonese", "arg", "an"},
  1284. {"Aramaic", "arc", ""},
  1285. {"Arapaho", "arp", ""},
  1286. {"Araucanian", "arn", ""},
  1287. {"Arawak", "arw", ""},
  1288. {"Armenian", "arm", "hy"},
  1289. {"Armenian", "hye", "hy"},
  1290. {"Artificial (Other)", "art", ""},
  1291. {"Assamese", "asm", "as"},
  1292. {"Asturian; Bable", "ast", ""},
  1293. {"Athapascan languages", "ath", ""},
  1294. {"Australian languages", "aus", ""},
  1295. {"Austronesian (Other)", "map", ""},
  1296. {"Avaric", "ava", "av"},
  1297. {"Avestan", "ave", "ae"},
  1298. {"Awadhi", "awa", ""},
  1299. {"Aymara", "aym", "ay"},
  1300. {"Azerbaijani", "aze", "az"},
  1301. {"Bable; Asturian", "ast", ""},
  1302. {"Balinese", "ban", ""},
  1303. {"Baltic (Other)", "bat", ""},
  1304. {"Baluchi", "bal", ""},
  1305. {"Bambara", "bam", "bm"},
  1306. {"Bamileke languages", "bai", ""},
  1307. {"Banda", "bad", ""},
  1308. {"Bantu (Other)", "bnt", ""},
  1309. {"Basa", "bas", ""},
  1310. {"Bashkir", "bak", "ba"},
  1311. {"Basque", "baq", "eu"},
  1312. {"Basque", "eus", "eu"},
  1313. {"Batak (Indonesia)", "btk", ""},
  1314. {"Beja", "bej", ""},
  1315. {"Belarusian", "bel", "be"},
  1316. {"Bemba", "bem", ""},
  1317. {"Bengali", "ben", "bn"},
  1318. {"Berber (Other)", "ber", ""},
  1319. {"Bhojpuri", "bho", ""},
  1320. {"Bihari", "bih", "bh"},
  1321. {"Bikol", "bik", ""},
  1322. {"Bini", "bin", ""},
  1323. {"Bislama", "bis", "bi"},
  1324. {"Bokm錶, Norwegian; Norwegian Bokm錶", "nob", "nb"},
  1325. {"Bosnian", "bos", "bs"},
  1326. {"Braj", "bra", ""},
  1327. {"Breton", "bre", "br"},
  1328. {"Buginese", "bug", ""},
  1329. {"Bulgarian", "bul", "bg"},
  1330. {"Buriat", "bua", ""},
  1331. {"Burmese", "bur", "my"},
  1332. {"Burmese", "mya", "my"},
  1333. {"Caddo", "cad", ""},
  1334. {"Carib", "car", ""},
  1335. {"Spanish; Castilian", "spa", "es"},
  1336. {"Catalan", "cat", "ca"},
  1337. {"Caucasian (Other)", "cau", ""},
  1338. {"Cebuano", "ceb", ""},
  1339. {"Celtic (Other)", "cel", ""},
  1340. {"Central American Indian (Other)", "cai", ""},
  1341. {"Chagatai", "chg", ""},
  1342. {"Chamic languages", "cmc", ""},
  1343. {"Chamorro", "cha", "ch"},
  1344. {"Chechen", "che", "ce"},
  1345. {"Cherokee", "chr", ""},
  1346. {"Chewa; Chichewa; Nyanja", "nya", "ny"},
  1347. {"Cheyenne", "chy", ""},
  1348. {"Chibcha", "chb", ""},
  1349. {"Chichewa; Chewa; Nyanja", "nya", "ny"},
  1350. {"Chinese", "chi", "zh"},
  1351. {"Chinese", "zho", "zh"},
  1352. {"Chinook jargon", "chn", ""},
  1353. {"Chipewyan", "chp", ""},
  1354. {"Choctaw", "cho", ""},
  1355. {"Chuang; Zhuang", "zha", "za"},
  1356. {"Church Slavic; Old Church Slavonic", "chu", "cu"},
  1357. {"Old Church Slavonic; Old Slavonic; ", "chu", "cu"},
  1358. {"Church Slavonic; Old Bulgarian; Church Slavic;", "chu", "cu"},
  1359. {"Old Slavonic; Church Slavonic; Old Bulgarian;", "chu", "cu"},
  1360. {"Church Slavic; Old Church Slavonic", "chu", "cu"},
  1361. {"Chuukese", "chk", ""},
  1362. {"Chuvash", "chv", "cv"},
  1363. {"Coptic", "cop", ""},
  1364. {"Cornish", "cor", "kw"},
  1365. {"Corsican", "cos", "co"},
  1366. {"Cree", "cre", "cr"},
  1367. {"Creek", "mus", ""},
  1368. {"Creoles and pidgins (Other)", "crp", ""},
  1369. {"Creoles and pidgins,", "cpe", ""},
  1370. //   {"English-based (Other)", "", ""},
  1371. {"Creoles and pidgins,", "cpf", ""},
  1372. //   {"French-based (Other)", "", ""},
  1373. {"Creoles and pidgins,", "cpp", ""},
  1374. //   {"Portuguese-based (Other)", "", ""},
  1375. {"Croatian", "scr", "hr"},
  1376. {"Croatian", "hrv", "hr"},
  1377. {"Cushitic (Other)", "cus", ""},
  1378. {"Czech", "cze", "cs"},
  1379. {"Czech", "ces", "cs"},
  1380. {"Dakota", "dak", ""},
  1381. {"Danish", "dan", "da"},
  1382. {"Dargwa", "dar", ""},
  1383. {"Dayak", "day", ""},
  1384. {"Delaware", "del", ""},
  1385. {"Dinka", "din", ""},
  1386. {"Divehi", "div", "dv"},
  1387. {"Dogri", "doi", ""},
  1388. {"Dogrib", "dgr", ""},
  1389. {"Dravidian (Other)", "dra", ""},
  1390. {"Duala", "dua", ""},
  1391. {"Dutch; Flemish", "dut", "nl"},
  1392. {"Dutch; Flemish", "nld", "nl"},
  1393. {"Dutch, Middle (ca. 1050-1350)", "dum", ""},
  1394. {"Dyula", "dyu", ""},
  1395. {"Dzongkha", "dzo", "dz"},
  1396. {"Efik", "efi", ""},
  1397. {"Egyptian (Ancient)", "egy", ""},
  1398. {"Ekajuk", "eka", ""},
  1399. {"Elamite", "elx", ""},
  1400. {"English", "eng", "en"},
  1401. {"English, Middle (1100-1500)", "enm", ""},
  1402. {"English, Old (ca.450-1100)", "ang", ""},
  1403. {"Esperanto", "epo", "eo"},
  1404. {"Estonian", "est", "et"},
  1405. {"Ewe", "ewe", "ee"},
  1406. {"Ewondo", "ewo", ""},
  1407. {"Fang", "fan", ""},
  1408. {"Fanti", "fat", ""},
  1409. {"Faroese", "fao", "fo"},
  1410. {"Fijian", "fij", "fj"},
  1411. {"Finnish", "fin", "fi"},
  1412. {"Finno-Ugrian (Other)", "fiu", ""},
  1413. {"Flemish; Dutch", "dut", "nl"},
  1414. {"Flemish; Dutch", "nld", "nl"},
  1415. {"Fon", "fon", ""},
  1416. {"French", "fre", "fr"},
  1417. {"French", "fra*", "fr"},
  1418. {"French, Middle (ca.1400-1600)", "frm", ""},
  1419. {"French, Old (842-ca.1400)", "fro", ""},
  1420. {"Frisian", "fry", "fy"},
  1421. {"Friulian", "fur", ""},
  1422. {"Fulah", "ful", "ff"},
  1423. {"Ga", "gaa", ""},
  1424. {"Gaelic; Scottish Gaelic", "gla", "gd"},
  1425. {"Gallegan", "glg", "gl"},
  1426. {"Ganda", "lug", "lg"},
  1427. {"Gayo", "gay", ""},
  1428. {"Gbaya", "gba", ""},
  1429. {"Geez", "gez", ""},
  1430. {"Georgian", "geo", "ka"},
  1431. {"Georgian", "kat", "ka"},
  1432. {"German", "ger", "de"},
  1433. {"German", "deu", "de"},
  1434. {"German, Low; Saxon, Low; Low German; Low Saxon", "nds", ""},
  1435. {"German, Middle High (ca.1050-1500)", "gmh", ""},
  1436. {"German, Old High (ca.750-1050)", "goh", ""},
  1437. {"Germanic (Other)", "gem", ""},
  1438. {"Gikuyu; Kikuyu", "kik", "ki"},
  1439. {"Gilbertese", "gil", ""},
  1440. {"Gondi", "gon", ""},
  1441. {"Gorontalo", "gor", ""},
  1442. {"Gothic", "got", ""},
  1443. {"Grebo", "grb", ""},
  1444. {"Greek, Ancient (to 1453)", "grc", ""},
  1445. {"Greek, Modern (1453-)", "gre", "el"},
  1446. {"Greek, Modern (1453-)", "ell", "el"},
  1447. {"Greenlandic; Kalaallisut", "kal", "kl"},
  1448. {"Guarani", "grn", "gn"},
  1449. {"Gujarati", "guj", "gu"},
  1450. {"Gwich磇n", "gwi", ""},
  1451. {"Haida", "hai", ""},
  1452. {"Hausa", "hau", "ha"},
  1453. {"Hawaiian", "haw", ""},
  1454. {"Hebrew", "heb", "he"},
  1455. {"Herero", "her", "hz"},
  1456. {"Hiligaynon", "hil", ""},
  1457. {"Himachali", "him", ""},
  1458. {"Hindi", "hin", "hi"},
  1459. {"Hiri Motu", "hmo", "ho"},
  1460. {"Hittite", "hit", ""},
  1461. {"Hmong", "hmn", ""},
  1462. {"Hungarian", "hun", "hu"},
  1463. {"Hupa", "hup", ""},
  1464. {"Iban", "iba", ""},
  1465. {"Icelandic", "ice", "is"},
  1466. {"Icelandic", "isl", "is"},
  1467. {"Ido", "ido", "io"},
  1468. {"Igbo", "ibo", "ig"},
  1469. {"Ijo", "ijo", ""},
  1470. {"Iloko", "ilo", ""},
  1471. {"Inari Sami", "smn", ""},
  1472. {"Indic (Other)", "inc", ""},
  1473. {"Indo-European (Other)", "ine", ""},
  1474. {"Indonesian", "ind", "id"},
  1475. {"Ingush", "inh", ""},
  1476. {"Interlingua (International", "ina", "ia"},
  1477. //   {"Auxiliary Language Association)", "", ""},
  1478. {"Interlingue", "ile", "ie"},
  1479. {"Inuktitut", "iku", "iu"},
  1480. {"Inupiaq", "ipk", "ik"},
  1481. {"Iranian (Other)", "ira", ""},
  1482. {"Irish", "gle", "ga"},
  1483. {"Irish, Middle (900-1200)", "mga", ""},
  1484. {"Irish, Old (to 900)", "sga", ""},
  1485. {"Iroquoian languages", "iro", ""},
  1486. {"Italian", "ita", "it"},
  1487. {"Japanese", "jpn", "ja"},
  1488. {"Javanese", "jav", "jv"},
  1489. {"Judeo-Arabic", "jrb", ""},
  1490. {"Judeo-Persian", "jpr", ""},
  1491. {"Kabardian", "kbd", ""},
  1492. {"Kabyle", "kab", ""},
  1493. {"Kachin", "kac", ""},
  1494. {"Kalaallisut; Greenlandic", "kal", "kl"},
  1495. {"Kamba", "kam", ""},
  1496. {"Kannada", "kan", "kn"},
  1497. {"Kanuri", "kau", "kr"},
  1498. {"Kara-Kalpak", "kaa", ""},
  1499. {"Karen", "kar", ""},
  1500. {"Kashmiri", "kas", "ks"},
  1501. {"Kawi", "kaw", ""},
  1502. {"Kazakh", "kaz", "kk"},
  1503. {"Khasi", "kha", ""},
  1504. {"Khmer", "khm", "km"},
  1505. {"Khoisan (Other)", "khi", ""},
  1506. {"Khotanese", "kho", ""},
  1507. {"Kikuyu; Gikuyu", "kik", "ki"},
  1508. {"Kimbundu", "kmb", ""},
  1509. {"Kinyarwanda", "kin", "rw"},
  1510. {"Kirghiz", "kir", "ky"},
  1511. {"Komi", "kom", "kv"},
  1512. {"Kongo", "kon", "kg"},
  1513. {"Konkani", "kok", ""},
  1514. {"Korean", "kor", "ko"},
  1515. {"Kosraean", "kos", ""},
  1516. {"Kpelle", "kpe", ""},
  1517. {"Kru", "kro", ""},
  1518. {"Kuanyama; Kwanyama", "kua", "kj"},
  1519. {"Kumyk", "kum", ""},
  1520. {"Kurdish", "kur", "ku"},
  1521. {"Kurukh", "kru", ""},
  1522. {"Kutenai", "kut", ""},
  1523. {"Kwanyama, Kuanyama", "kua", "kj"},
  1524. {"Ladino", "lad", ""},
  1525. {"Lahnda", "lah", ""},
  1526. {"Lamba", "lam", ""},
  1527. {"Lao", "lao", "lo"},
  1528. {"Latin", "lat", "la"},
  1529. {"Latvian", "lav", "lv"},
  1530. {"Letzeburgesch; Luxembourgish", "ltz", "lb"},
  1531. {"Lezghian", "lez", ""},
  1532. {"Limburgan; Limburger; Limburgish", "lim", "li"},
  1533. {"Limburger; Limburgan; Limburgish;", "lim", "li"},
  1534. {"Limburgish; Limburger; Limburgan", "lim", "li"},
  1535. {"Lingala", "lin", "ln"},
  1536. {"Lithuanian", "lit", "lt"},
  1537. {"Low German; Low Saxon; German, Low; Saxon, Low", "nds", ""},
  1538. {"Low Saxon; Low German; Saxon, Low; German, Low", "nds", ""},
  1539. {"Lozi", "loz", ""},
  1540. {"Luba-Katanga", "lub", "lu"},
  1541. {"Luba-Lulua", "lua", ""},
  1542. {"Luiseno", "lui", ""},
  1543. {"Lule Sami", "smj", ""},
  1544. {"Lunda", "lun", ""},
  1545. {"Luo (Kenya and Tanzania)", "luo", ""},
  1546. {"Lushai", "lus", ""},
  1547. {"Luxembourgish; Letzeburgesch", "ltz", "lb"},
  1548. {"Macedonian", "mac", "mk"},
  1549. {"Macedonian", "mkd", "mk"},
  1550. {"Madurese", "mad", ""},
  1551. {"Magahi", "mag", ""},
  1552. {"Maithili", "mai", ""},
  1553. {"Makasar", "mak", ""},
  1554. {"Malagasy", "mlg", "mg"},
  1555. {"Malay", "may", "ms"},
  1556. {"Malay", "msa", "ms"},
  1557. {"Malayalam", "mal", "ml"},
  1558. {"Maltese", "mlt", "mt"},
  1559. {"Manchu", "mnc", ""},
  1560. {"Mandar", "mdr", ""},
  1561. {"Mandingo", "man", ""},
  1562. {"Manipuri", "mni", ""},
  1563. {"Manobo languages", "mno", ""},
  1564. {"Manx", "glv", "gv"},
  1565. {"Maori", "mao", "mi"},
  1566. {"Maori", "mri", "mi"},
  1567. {"Marathi", "mar", "mr"},
  1568. {"Mari", "chm", ""},
  1569. {"Marshallese", "mah", "mh"},
  1570. {"Marwari", "mwr", ""},
  1571. {"Masai", "mas", ""},
  1572. {"Mayan languages", "myn", ""},
  1573. {"Mende", "men", ""},
  1574. {"Micmac", "mic", ""},
  1575. {"Minangkabau", "min", ""},
  1576. {"Miscellaneous languages", "mis", ""},
  1577. {"Mohawk", "moh", ""},
  1578. {"Moldavian", "mol", "mo"},
  1579. {"Mon-Khmer (Other)", "mkh", ""},
  1580. {"Mongo", "lol", ""},
  1581. {"Mongolian", "mon", "mn"},
  1582. {"Mossi", "mos", ""},
  1583. {"Multiple languages", "mul", ""},
  1584. {"Munda languages", "mun", ""},
  1585. {"Nahuatl", "nah", ""},
  1586. {"Nauru", "nau", "na"},
  1587. {"Navaho, Navajo", "nav", "nv"},
  1588. {"Navajo; Navaho", "nav", "nv"},
  1589. {"Ndebele, North", "nde", "nd"},
  1590. {"Ndebele, South", "nbl", "nr"},
  1591. {"Ndonga", "ndo", "ng"},
  1592. {"Neapolitan", "nap", ""},
  1593. {"Nepali", "nep", "ne"},
  1594. {"Newari", "new", ""},
  1595. {"Nias", "nia", ""},
  1596. {"Niger-Kordofanian (Other)", "nic", ""},
  1597. {"Nilo-Saharan (Other)", "ssa", ""},
  1598. {"Niuean", "niu", ""},
  1599. {"Norse, Old", "non", ""},
  1600. {"North American Indian (Other)", "nai", ""},
  1601. {"Northern Sami", "sme", "se"},
  1602. {"North Ndebele", "nde", "nd"},
  1603. {"Norwegian", "nor", "no"},
  1604. {"Norwegian Bokm錶; Bokm錶, Norwegian", "nob", "nb"},
  1605. {"Norwegian Nynorsk; Nynorsk, Norwegian", "nno", "nn"},
  1606. {"Nubian languages", "nub", ""},
  1607. {"Nyamwezi", "nym", ""},
  1608. {"Nyanja; Chichewa; Chewa", "nya", "ny"},
  1609. {"Nyankole", "nyn", ""},
  1610. {"Nynorsk, Norwegian; Norwegian Nynorsk", "nno", "nn"},
  1611. {"Nyoro", "nyo", ""},
  1612. {"Nzima", "nzi", ""},
  1613. {"Occitan (post 1500},; Proven鏰l", "oci", "oc"},
  1614. {"Ojibwa", "oji", "oj"},
  1615. {"Old Bulgarian; Old Slavonic; Church Slavonic;", "chu", "cu"},
  1616. {"Oriya", "ori", "or"},
  1617. {"Oromo", "orm", "om"},
  1618. {"Osage", "osa", ""},
  1619. {"Ossetian; Ossetic", "oss", "os"},
  1620. {"Ossetic; Ossetian", "oss", "os"},
  1621. {"Otomian languages", "oto", ""},
  1622. {"Pahlavi", "pal", ""},
  1623. {"Palauan", "pau", ""},
  1624. {"Pali", "pli", "pi"},
  1625. {"Pampanga", "pam", ""},
  1626. {"Pangasinan", "pag", ""},
  1627. {"Panjabi", "pan", "pa"},
  1628. {"Papiamento", "pap", ""},
  1629. {"Papuan (Other)", "paa", ""},
  1630. {"Persian", "per", "fa"},
  1631. {"Persian", "fas", "fa"},
  1632. {"Persian, Old (ca.600-400 B.C.)", "peo", ""},
  1633. {"Philippine (Other)", "phi", ""},
  1634. {"Phoenician", "phn", ""},
  1635. {"Pohnpeian", "pon", ""},
  1636. {"Polish", "pol", "pl"},
  1637. {"Portuguese", "por", "pt"},
  1638. {"Prakrit languages", "pra", ""},
  1639. {"Proven鏰l; Occitan (post 1500)", "oci", "oc"},
  1640. {"Proven鏰l, Old (to 1500)", "pro", ""},
  1641. {"Pushto", "pus", "ps"},
  1642. {"Quechua", "que", "qu"},
  1643. {"Raeto-Romance", "roh", "rm"},
  1644. {"Rajasthani", "raj", ""},
  1645. {"Rapanui", "rap", ""},
  1646. {"Rarotongan", "rar", ""},
  1647. {"Reserved for local use", "qaa-qtz", ""},
  1648. {"Romance (Other)", "roa", ""},
  1649. {"Romanian", "rum", "ro"},
  1650. {"Romanian", "ron", "ro"},
  1651. {"Romany", "rom", ""},
  1652. {"Rundi", "run", "rn"},
  1653. {"Russian", "rus", "ru"},
  1654. {"Salishan languages", "sal", ""},
  1655. {"Samaritan Aramaic", "sam", ""},
  1656. {"Sami languages (Other)", "smi", ""},
  1657. {"Samoan", "smo", "sm"},
  1658. {"Sandawe", "sad", ""},
  1659. {"Sango", "sag", "sg"},
  1660. {"Sanskrit", "san", "sa"},
  1661. {"Santali", "sat", ""},
  1662. {"Sardinian", "srd", "sc"},
  1663. {"Sasak", "sas", ""},
  1664. {"Saxon, Low; German, Low; Low Saxon; Low German", "nds", ""},
  1665. {"Scots", "sco", ""},
  1666. {"Scottish Gaelic; Gaelic", "gla", "gd"},
  1667. {"Selkup", "sel", ""},
  1668. {"Semitic (Other)", "sem", ""},
  1669. {"Serbian", "scc", "sr"},
  1670. {"Serbian", "srp", "sr"},
  1671. {"Serer", "srr", ""},
  1672. {"Shan", "shn", ""},
  1673. {"Shona", "sna", "sn"},
  1674. {"Sichuan Yi", "iii", "ii"},
  1675. {"Sidamo", "sid", ""},
  1676. {"Sign languages", "sgn", ""},
  1677. {"Siksika", "bla", ""},
  1678. {"Sindhi", "snd", "sd"},
  1679. {"Sinhalese", "sin", "si"},
  1680. {"Sino-Tibetan (Other)", "sit", ""},
  1681. {"Siouan languages", "sio", ""},
  1682. {"Skolt Sami", "sms", ""},
  1683. {"Slave (Athapascan)", "den", ""},
  1684. {"Slavic (Other)", "sla", ""},
  1685. {"Slovak", "slo", "sk"},
  1686. {"Slovak", "slk", "sk"},
  1687. {"Slovenian", "slv", "sl"},
  1688. {"Sogdian", "sog", ""},
  1689. {"Somali", "som", "so"},
  1690. {"Songhai", "son", ""},
  1691. {"Soninke", "snk", ""},
  1692. {"Sorbian languages", "wen", ""},
  1693. {"Sotho, Northern", "nso", ""},
  1694. {"Sotho, Southern", "sot", "st"},
  1695. {"South American Indian (Other)", "sai", ""},
  1696. {"Southern Sami", "sma", ""},
  1697. {"South Ndebele", "nbl", "nr"},
  1698. {"Spanish; Castilian", "spa", "es"},
  1699. {"Sukuma", "suk", ""},
  1700. {"Sumerian", "sux", ""},
  1701. {"Sundanese", "sun", "su"},
  1702. {"Susu", "sus", ""},
  1703. {"Swahili", "swa", "sw"},
  1704. {"Swati", "ssw", "ss"},
  1705. {"Swedish", "swe", "sv"},
  1706. {"Syriac", "syr", ""},
  1707. {"Tagalog", "tgl", "tl"},
  1708. {"Tahitian", "tah", "ty"},
  1709. {"Tai (Other)", "tai", ""},
  1710. {"Tajik", "tgk", "tg"},
  1711. {"Tamashek", "tmh", ""},
  1712. {"Tamil", "tam", "ta"},
  1713. {"Tatar", "tat", "tt"},
  1714. {"Telugu", "tel", "te"},
  1715. {"Tereno", "ter", ""},
  1716. {"Tetum", "tet", ""},
  1717. {"Thai", "tha", "th"},
  1718. {"Tibetan", "tib", "bo"},
  1719. {"Tibetan", "bod", "bo"},
  1720. {"Tigre", "tig", ""},
  1721. {"Tigrinya", "tir", "ti"},
  1722. {"Timne", "tem", ""},
  1723. {"Tiv", "tiv", ""},
  1724. {"Tlingit", "tli", ""},
  1725. {"Tok Pisin", "tpi", ""},
  1726. {"Tokelau", "tkl", ""},
  1727. {"Tonga (Nyasa)", "tog", ""},
  1728. {"Tonga (Tonga Islands)", "ton", "to"},
  1729. {"Tsimshian", "tsi", ""},
  1730. {"Tsonga", "tso", "ts"},
  1731. {"Tswana", "tsn", "tn"},
  1732. {"Tumbuka", "tum", ""},
  1733. {"Tupi languages", "tup", ""},
  1734. {"Turkish", "tur", "tr"},
  1735. {"Turkish, Ottoman (1500-1928)", "ota", ""},
  1736. {"Turkmen", "tuk", "tk"},
  1737. {"Tuvalu", "tvl", ""},
  1738. {"Tuvinian", "tyv", ""},
  1739. {"Twi", "twi", "tw"},
  1740. {"Ugaritic", "uga", ""},
  1741. {"Uighur", "uig", "ug"},
  1742. {"Ukrainian", "ukr", "uk"},
  1743. {"Umbundu", "umb", ""},
  1744. {"Undetermined", "und", ""},
  1745. {"Urdu", "urd", "ur"},
  1746. {"Uzbek", "uzb", "uz"},
  1747. {"Vai", "vai", ""},
  1748. {"Venda", "ven", "ve"},
  1749. {"Vietnamese", "vie", "vi"},
  1750. {"Volap黭", "vol", "vo"},
  1751. {"Votic", "vot", ""},
  1752. {"Wakashan languages", "wak", ""},
  1753. {"Walamo", "wal", ""},
  1754. {"Walloon", "wln", "wa"},
  1755. {"Waray", "war", ""},
  1756. {"Washo", "was", ""},
  1757. {"Welsh", "wel", "cy"},
  1758. {"Welsh", "cym", "cy"},
  1759. {"Wolof", "wol", "wo"},
  1760. {"Xhosa", "xho", "xh"},
  1761. {"Yakut", "sah", ""},
  1762. {"Yao", "yao", ""},
  1763. {"Yapese", "yap", ""},
  1764. {"Yiddish", "yid", "yi"},
  1765. {"Yoruba", "yor", "yo"},
  1766. {"Yupik languages", "ypk", ""},
  1767. {"Zande", "znd", ""},
  1768. {"Zapotec", "zap", ""},
  1769. {"Zenaga", "zen", ""},
  1770. {"Zhuang; Chuang", "zha", "za"},
  1771. {"Zulu", "zul", "zu"},
  1772. {"Zuni", "zun", ""},
  1773. {"Classical Newari", "nwc", ""},
  1774. {"Klingon", "tlh", ""},
  1775. {"Blin", "byn", ""},
  1776. {"Lojban", "jbo", ""},
  1777. {"Lower Sorbian", "dsb", ""},
  1778. {"Upper Sorbian", "hsb", ""},
  1779. {"Kashubian", "csb", ""},
  1780. {"Crimean Turkish", "crh", ""},
  1781. {"Erzya", "myv", ""},
  1782. {"Moksha", "mdf", ""},
  1783. {"Karachay-Balkar", "krc", ""},
  1784. {"Adyghe", "ady", ""},
  1785. {"Udmurt", "udm", ""},
  1786. {"Dargwa", "dar", ""},
  1787. {"Ingush", "inh", ""},
  1788. {"Nogai", "nog", ""},
  1789. {"Haitian", "hat", "ht"},
  1790. {"Kalmyk", "xal", ""},
  1791. {"", "", ""},
  1792. };
  1793. CString ISO6391ToLanguage(LPCSTR code)
  1794. {
  1795. CHAR tmp[2+1];
  1796. strncpy(tmp, code, 2);
  1797. tmp[2] = 0;
  1798. _strlwr(tmp);
  1799. for(int i = 0, j = countof(s_isolangs); i < j; i++)
  1800. if(!strcmp(s_isolangs[i].iso6391, tmp))
  1801. {
  1802. CString ret = CString(CStringA(s_isolangs[i].name));
  1803. int i = ret.Find(';');
  1804. if(i > 0) ret = ret.Left(i);
  1805. return ret;
  1806. }
  1807. return(_T(""));
  1808. }
  1809. CString ISO6392ToLanguage(LPCSTR code)
  1810. {
  1811. CHAR tmp[3+1];
  1812. strncpy(tmp, code, 3);
  1813. tmp[3] = 0;
  1814. _strlwr(tmp);
  1815. for(int i = 0, j = countof(s_isolangs); i < j; i++)
  1816. {
  1817. if(!strcmp(s_isolangs[i].iso6392, tmp))
  1818. {
  1819. CString ret = CString(CStringA(s_isolangs[i].name));
  1820. int i = ret.Find(';');
  1821. if(i > 0) ret = ret.Left(i);
  1822. return ret;
  1823. }
  1824. }
  1825. return _T("");
  1826. }
  1827. CString ISO6391To6392(LPCSTR code)
  1828. {
  1829. CHAR tmp[2+1];
  1830. strncpy(tmp, code, 2);
  1831. tmp[2] = 0;
  1832. _strlwr(tmp);
  1833. for(int i = 0, j = countof(s_isolangs); i < j; i++)
  1834. if(!strcmp(s_isolangs[i].iso6391, tmp))
  1835. return CString(CStringA(s_isolangs[i].iso6392));
  1836. return _T("");
  1837. }
  1838. CString LanguageToISO6392(LPCTSTR lang)
  1839. {
  1840. CString str = lang;
  1841. str.MakeLower();
  1842. for(int i = 0, j = countof(s_isolangs); i < j; i++)
  1843. {
  1844. CList<CString> sl;
  1845. Explode(CString(s_isolangs[i].name), sl, ';');
  1846. POSITION pos = sl.GetHeadPosition();
  1847. while(pos)
  1848. {
  1849. if(!str.CompareNoCase(sl.GetNext(pos)))
  1850. return CString(s_isolangs[i].iso6392);
  1851. }
  1852. }
  1853. return _T("");
  1854. }
  1855. int MakeAACInitData(BYTE* pData, int profile, int freq, int channels)
  1856. {
  1857. int srate_idx;
  1858. if(92017 <= freq) srate_idx = 0;
  1859. else if(75132 <= freq) srate_idx = 1;
  1860. else if(55426 <= freq) srate_idx = 2;
  1861. else if(46009 <= freq) srate_idx = 3;
  1862. else if(37566 <= freq) srate_idx = 4;
  1863. else if(27713 <= freq) srate_idx = 5;
  1864. else if(23004 <= freq) srate_idx = 6;
  1865. else if(18783 <= freq) srate_idx = 7;
  1866. else if(13856 <= freq) srate_idx = 8;
  1867. else if(11502 <= freq) srate_idx = 9;
  1868. else if(9391 <= freq) srate_idx = 10;
  1869. else srate_idx = 11;
  1870. pData[0] = ((abs(profile) + 1) << 3) | ((srate_idx & 0xe) >> 1);
  1871. pData[1] = ((srate_idx & 0x1) << 7) | (channels << 3);
  1872. int ret = 2;
  1873. if(profile < 0)
  1874. {
  1875. freq *= 2;
  1876. if(92017 <= freq) srate_idx = 0;
  1877. else if(75132 <= freq) srate_idx = 1;
  1878. else if(55426 <= freq) srate_idx = 2;
  1879. else if(46009 <= freq) srate_idx = 3;
  1880. else if(37566 <= freq) srate_idx = 4;
  1881. else if(27713 <= freq) srate_idx = 5;
  1882. else if(23004 <= freq) srate_idx = 6;
  1883. else if(18783 <= freq) srate_idx = 7;
  1884. else if(13856 <= freq) srate_idx = 8;
  1885. else if(11502 <= freq) srate_idx = 9;
  1886. else if(9391 <= freq) srate_idx = 10;
  1887. else srate_idx = 11;
  1888. pData[2] = 0x2B7>>3;
  1889. pData[3] = (BYTE)((0x2B7<<5) | 5);
  1890. pData[4] = (1<<7) | (srate_idx<<3);
  1891. ret = 5;
  1892. }
  1893. return(ret);
  1894. }
  1895. BOOL CFileGetStatus(LPCTSTR lpszFileName, CFileStatus& status)
  1896. {
  1897. try
  1898. {
  1899. return CFile::GetStatus(lpszFileName, status);
  1900. }
  1901. catch(CException* e)
  1902. {
  1903. // MFCBUG: E_INVALIDARG / "Parameter is incorrect" is thrown for certain cds (vs2003)
  1904. // http://groups.google.co.uk/groups?hl=en&lr=&ie=UTF-8&threadm=OZuXYRzWDHA.536%40TK2MSFTNGP10.phx.gbl&rnum=1&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DISO-8859-1
  1905. TRACE(_T("CFile::GetStatus has thrown an exceptionn"));
  1906. e->Delete();
  1907. return false;
  1908. }
  1909. }
  1910. // filter registration helpers
  1911. bool DeleteRegKey(LPCTSTR pszKey, LPCTSTR pszSubkey)
  1912. {
  1913. bool bOK = false;
  1914. HKEY hKey;
  1915. LONG ec = ::RegOpenKeyEx(HKEY_CLASSES_ROOT, pszKey, 0, KEY_ALL_ACCESS, &hKey);
  1916. if(ec == ERROR_SUCCESS)
  1917. {
  1918. if(pszSubkey != 0)
  1919. ec = ::RegDeleteKey(hKey, pszSubkey);
  1920. bOK = (ec == ERROR_SUCCESS);
  1921. ::RegCloseKey(hKey);
  1922. }
  1923. return bOK;
  1924. }
  1925. bool SetRegKeyValue(LPCTSTR pszKey, LPCTSTR pszSubkey, LPCTSTR pszValueName, LPCTSTR pszValue)
  1926. {
  1927. bool bOK = false;
  1928. CString szKey(pszKey);
  1929. if(pszSubkey != 0)
  1930. szKey += CString(_T("\")) + pszSubkey;
  1931. HKEY hKey;
  1932. LONG ec = ::RegCreateKeyEx(HKEY_CLASSES_ROOT, szKey, 0, 0, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, 0, &hKey, 0);
  1933. if(ec == ERROR_SUCCESS)
  1934. {
  1935. if(pszValue != 0)
  1936. {
  1937. ec = ::RegSetValueEx(hKey, pszValueName, 0, REG_SZ,
  1938. reinterpret_cast<BYTE*>(const_cast<LPTSTR>(pszValue)),
  1939. (_tcslen(pszValue) + 1) * sizeof(TCHAR));
  1940. }
  1941. bOK = (ec == ERROR_SUCCESS);
  1942. ::RegCloseKey(hKey);
  1943. }
  1944. return bOK;
  1945. }
  1946. bool SetRegKeyValue(LPCTSTR pszKey, LPCTSTR pszSubkey, LPCTSTR pszValue)
  1947. {
  1948. return SetRegKeyValue(pszKey, pszSubkey, 0, pszValue);
  1949. }
  1950. void RegisterSourceFilter(const CLSID& clsid, const GUID& subtype2, LPCTSTR chkbytes, LPCTSTR ext, ...)
  1951. {
  1952. CString null = CStringFromGUID(GUID_NULL);
  1953. CString majortype = CStringFromGUID(MEDIATYPE_Stream);
  1954. CString subtype = CStringFromGUID(subtype2);
  1955. SetRegKeyValue(_T("Media Type\") + majortype, subtype, _T("0"), chkbytes);
  1956. SetRegKeyValue(_T("Media Type\") + majortype, subtype, _T("Source Filter"), CStringFromGUID(clsid));
  1957. DeleteRegKey(_T("Media Type\") + null, subtype);
  1958. va_list marker;
  1959. va_start(marker, ext);
  1960. for(; ext; ext = va_arg(marker, LPCTSTR))
  1961. DeleteRegKey(_T("Media Type\Extensions"), ext);
  1962. va_end(marker);
  1963. }
  1964. void RegisterSourceFilter(const CLSID& clsid, const GUID& subtype2, const CList<CString>& chkbytes, LPCTSTR ext, ...)
  1965. {
  1966. CString null = CStringFromGUID(GUID_NULL);
  1967. CString majortype = CStringFromGUID(MEDIATYPE_Stream);
  1968. CString subtype = CStringFromGUID(subtype2);
  1969. POSITION pos = chkbytes.GetHeadPosition();
  1970. for(int i = 0; pos; i++)
  1971. {
  1972. CString idx;
  1973. idx.Format(_T("%d"), i);
  1974. SetRegKeyValue(_T("Media Type\") + majortype, subtype, idx, chkbytes.GetNext(pos));
  1975. }
  1976. SetRegKeyValue(_T("Media Type\") + majortype, subtype, _T("Source Filter"), CStringFromGUID(clsid));
  1977. DeleteRegKey(_T("Media Type\") + null, subtype);
  1978. va_list marker;
  1979. va_start(marker, ext);
  1980. for(; ext; ext = va_arg(marker, LPCTSTR))
  1981. DeleteRegKey(_T("Media Type\Extensions"), ext);
  1982. va_end(marker);
  1983. }
  1984. void UnRegisterSourceFilter(const GUID& subtype)
  1985. {
  1986. DeleteRegKey(_T("Media Type\") + CStringFromGUID(MEDIATYPE_Stream), CStringFromGUID(subtype));
  1987. }