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

多媒体编程

开发平台:

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 <initguid.h>
  23. #include "....includemoreuuids.h"
  24. #include "MediaTypes.h"
  25. #include "DSUtil.h"
  26. #define VIH_NORMAL (sizeof(VIDEOINFOHEADER))
  27. #define VIH_BITFIELDS (sizeof(VIDEOINFOHEADER)+3*sizeof(RGBQUAD))
  28. #define VIH2_NORMAL (sizeof(VIDEOINFOHEADER2))
  29. #define VIH2_BITFIELDS (sizeof(VIDEOINFOHEADER2)+3*sizeof(RGBQUAD))
  30. #define BIH_SIZE (sizeof(BITMAPINFOHEADER))
  31. VIH vihs[] =
  32. {
  33. // YUY2
  34. {
  35. {
  36. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  37. {BIH_SIZE, 0, 0, 1, 16, mmioFOURCC('Y','U','Y','2'), 0, 0, 0, 0, 0} // bmiHeader
  38. }, 
  39. {0, 0, 0}, // mask[3]
  40. VIH_NORMAL, // size
  41. &MEDIASUBTYPE_YUY2 // subtype
  42. },
  43. // YV12
  44. {
  45. {
  46. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  47. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('Y','V','1','2'), 0, 0, 0, 0, 0} // bmiHeader
  48. }, 
  49. {0, 0, 0}, // mask[3]
  50. VIH_NORMAL, // size
  51. &MEDIASUBTYPE_YV12 // subtype
  52. },
  53. // I420
  54. {
  55. {
  56. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  57. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('I','4','2','0'), 0, 0, 0, 0, 0} // bmiHeader
  58. }, 
  59. {0, 0, 0}, // mask[3]
  60. VIH_NORMAL, // size
  61. &MEDIASUBTYPE_I420 // subtype
  62. },
  63. // IYUV
  64. {
  65. {
  66. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  67. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('I','Y','U','V'), 0, 0, 0, 0, 0} // bmiHeader
  68. }, 
  69. {0, 0, 0}, // mask[3]
  70. VIH_NORMAL, // size
  71. &MEDIASUBTYPE_IYUV // subtype
  72. },
  73. // 8888 normal
  74. {
  75. {
  76. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  77. {BIH_SIZE, 0, 0, 1, 32, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  78. }, 
  79. {0, 0, 0}, // mask[3]
  80. VIH_NORMAL, // size
  81. &MEDIASUBTYPE_RGB32 // subtype
  82. },
  83. // 8888 bitf 
  84. {
  85. {
  86. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  87. {BIH_SIZE, 0, 0, 1, 32, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  88. }, 
  89. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  90. VIH_BITFIELDS, // size
  91. &MEDIASUBTYPE_RGB32 // subtype
  92. },
  93. // A888 normal
  94. {
  95. {
  96. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  97. {BIH_SIZE, 0, 0, 1, 32, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  98. }, 
  99. {0, 0, 0}, // mask[3]
  100. VIH_NORMAL, // size
  101. &MEDIASUBTYPE_ARGB32 // subtype
  102. },
  103. // A888 bitf (I'm not sure if this exist...)
  104. {
  105. {
  106. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  107. {BIH_SIZE, 0, 0, 1, 32, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  108. }, 
  109. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  110. VIH_BITFIELDS, // size
  111. &MEDIASUBTYPE_ARGB32 // subtype
  112. },
  113. // 888 normal
  114. {
  115. {
  116. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  117. {BIH_SIZE, 0, 0, 1, 24, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  118. }, 
  119. {0, 0, 0}, // mask[3]
  120. VIH_NORMAL, // size
  121. &MEDIASUBTYPE_RGB24 // subtype
  122. },
  123. // 888 bitf 
  124. {
  125. {
  126. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  127. {BIH_SIZE, 0, 0, 1, 24, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  128. }, 
  129. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  130. VIH_BITFIELDS, // size
  131. &MEDIASUBTYPE_RGB24 // subtype
  132. },
  133. // 565 normal
  134. {
  135. {
  136. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  137. {BIH_SIZE, 0, 0, 1, 16, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  138. }, 
  139. {0, 0, 0}, // mask[3]
  140. VIH_NORMAL, // size
  141. &MEDIASUBTYPE_RGB565 // subtype
  142. },
  143. // 565 bitf
  144. {
  145. {
  146. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  147. {BIH_SIZE, 0, 0, 1, 16, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  148. }, 
  149. {0xF800, 0x07E0, 0x001F}, // mask[3]
  150. VIH_BITFIELDS, // size
  151. &MEDIASUBTYPE_RGB565 // subtype
  152. },
  153. // 555 normal
  154. {
  155. {
  156. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  157. {BIH_SIZE, 0, 0, 1, 16, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  158. }, 
  159. {0, 0, 0}, // mask[3]
  160. VIH_NORMAL, // size
  161. &MEDIASUBTYPE_RGB555 // subtype
  162. },
  163. // 555 bitf
  164. {
  165. {
  166. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0,
  167. {BIH_SIZE, 0, 0, 1, 16, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  168. }, 
  169. {0x7C00, 0x03E0, 0x001F}, // mask[3]
  170. VIH_BITFIELDS, // size
  171. &MEDIASUBTYPE_RGB555 // subtype
  172. },
  173. };
  174. VIH2 vih2s[] =
  175. {
  176. // YUY2
  177. {
  178. {
  179. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  180. {BIH_SIZE, 0, 0, 1, 16, mmioFOURCC('Y','U','Y','2'), 0, 0, 0, 0, 0} // bmiHeader
  181. }, 
  182. {0, 0, 0}, // mask[3]
  183. VIH2_NORMAL, // size
  184. &MEDIASUBTYPE_YUY2 // subtype
  185. },
  186. // YV12
  187. {
  188. {
  189. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  190. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('Y','V','1','2'), 0, 0, 0, 0, 0} // bmiHeader
  191. }, 
  192. {0, 0, 0}, // mask[3]
  193. VIH2_NORMAL, // size
  194. &MEDIASUBTYPE_YV12 // subtype
  195. },
  196. // I420
  197. {
  198. {
  199. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  200. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('I','4','2','0'), 0, 0, 0, 0, 0} // bmiHeader
  201. }, 
  202. {0, 0, 0}, // mask[3]
  203. VIH2_NORMAL, // size
  204. &MEDIASUBTYPE_I420 // subtype
  205. },
  206. // IYUV
  207. {
  208. {
  209. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  210. {BIH_SIZE, 0, 0, 1, 12, mmioFOURCC('I','Y','U','V'), 0, 0, 0, 0, 0} // bmiHeader
  211. }, 
  212. {0, 0, 0}, // mask[3]
  213. VIH2_NORMAL, // size
  214. &MEDIASUBTYPE_IYUV // subtype
  215. },
  216. // 8888 normal
  217. {
  218. {
  219. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  220. {BIH_SIZE, 0, 0, 1, 32, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  221. }, 
  222. {0, 0, 0}, // mask[3]
  223. VIH2_NORMAL, // size
  224. &MEDIASUBTYPE_RGB32 // subtype
  225. },
  226. // 8888 bitf 
  227. {
  228. {
  229. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  230. {BIH_SIZE, 0, 0, 1, 32, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  231. }, 
  232. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  233. VIH2_BITFIELDS, // size
  234. &MEDIASUBTYPE_RGB32 // subtype
  235. },
  236. // A888 normal
  237. {
  238. {
  239. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  240. {BIH_SIZE, 0, 0, 1, 32, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  241. }, 
  242. {0, 0, 0}, // mask[3]
  243. VIH2_NORMAL, // size
  244. &MEDIASUBTYPE_ARGB32 // subtype
  245. },
  246. // A888 bitf (I'm not sure if this exist...)
  247. {
  248. {
  249. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  250. {BIH_SIZE, 0, 0, 1, 32, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  251. }, 
  252. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  253. VIH2_BITFIELDS, // size
  254. &MEDIASUBTYPE_ARGB32 // subtype
  255. },
  256. // 888 normal
  257. {
  258. {
  259. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  260. {BIH_SIZE, 0, 0, 1, 24, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  261. }, 
  262. {0, 0, 0}, // mask[3]
  263. VIH2_NORMAL, // size
  264. &MEDIASUBTYPE_RGB24 // subtype
  265. },
  266. // 888 bitf 
  267. {
  268. {
  269. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  270. {BIH_SIZE, 0, 0, 1, 24, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  271. }, 
  272. {0xFF0000, 0x00FF00, 0x0000FF}, // mask[3]
  273. VIH2_BITFIELDS, // size
  274. &MEDIASUBTYPE_RGB24 // subtype
  275. },
  276. // 565 normal
  277. {
  278. {
  279. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  280. {BIH_SIZE, 0, 0, 1, 16, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  281. }, 
  282. {0, 0, 0}, // mask[3]
  283. VIH2_NORMAL, // size
  284. &MEDIASUBTYPE_RGB565 // subtype
  285. },
  286. // 565 bitf
  287. {
  288. {
  289. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  290. {BIH_SIZE, 0, 0, 1, 16, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  291. }, 
  292. {0xF800, 0x07E0, 0x001F}, // mask[3]
  293. VIH2_BITFIELDS, // size
  294. &MEDIASUBTYPE_RGB565 // subtype
  295. },
  296. // 555 normal
  297. {
  298. {
  299. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  300. {BIH_SIZE, 0, 0, 1, 16, BI_RGB, 0, 0, 0, 0, 0} // bmiHeader
  301. }, 
  302. {0, 0, 0}, // mask[3]
  303. VIH2_NORMAL, // size
  304. &MEDIASUBTYPE_RGB555 // subtype
  305. },
  306. // 555 bitf
  307. {
  308. {
  309. {0, 0, 0, 0}, {0, 0, 0, 0}, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  310. {BIH_SIZE, 0, 0, 1, 16, BI_BITFIELDS, 0, 0, 0, 0, 0} // bmiHeader
  311. }, 
  312. {0x7C00, 0x03E0, 0x001F}, // mask[3]
  313. VIH2_BITFIELDS, // size
  314. &MEDIASUBTYPE_RGB555 // subtype
  315. },
  316. };
  317. int VIHSIZE = countof(vihs);
  318. CString VIH2String(int i)
  319. {
  320. CString ret = CString(GuidNames[*vihs[i].subtype]);
  321. if(!ret.Left(13).CompareNoCase(_T("MEDIASUBTYPE_"))) ret = ret.Mid(13);
  322. if(vihs[i].vih.bmiHeader.biCompression == 3) ret += _T(" BITF");
  323. if(*vihs[i].subtype == MEDIASUBTYPE_I420) ret = _T("I420"); // FIXME
  324. return(ret);
  325. }
  326. CString Subtype2String(const GUID& subtype)
  327. {
  328. CString ret = CString(GuidNames[subtype]);
  329. if(!ret.Left(13).CompareNoCase(_T("MEDIASUBTYPE_"))) ret = ret.Mid(13);
  330. if(subtype == MEDIASUBTYPE_I420) ret = _T("I420"); // FIXME
  331. return(ret);
  332. }
  333. void CorrectMediaType(AM_MEDIA_TYPE* pmt)
  334. {
  335. if(!pmt) return;
  336. CMediaType mt(*pmt);
  337. if(mt.formattype == FORMAT_VideoInfo)
  338. {
  339. VIDEOINFOHEADER* vih = (VIDEOINFOHEADER*)mt.pbFormat;
  340. for(int i = 0; i < VIHSIZE; i++)
  341. {
  342. if(mt.subtype == *vihs[i].subtype
  343. && vih->bmiHeader.biCompression == vihs[i].vih.bmiHeader.biCompression)
  344. {
  345. mt.AllocFormatBuffer(vihs[i].size);
  346. memcpy(mt.pbFormat, &vihs[i], vihs[i].size);
  347. memcpy(mt.pbFormat, pmt->pbFormat, sizeof(VIDEOINFOHEADER));
  348. break;
  349. }
  350. }
  351. }
  352. else if(mt.formattype == FORMAT_VideoInfo2)
  353. {
  354. VIDEOINFOHEADER2* vih2 = (VIDEOINFOHEADER2*)mt.pbFormat;
  355. for(int i = 0; i < VIHSIZE; i++)
  356. {
  357. if(mt.subtype == *vih2s[i].subtype
  358. && vih2->bmiHeader.biCompression == vih2s[i].vih.bmiHeader.biCompression)
  359. {
  360. mt.AllocFormatBuffer(vih2s[i].size);
  361. memcpy(mt.pbFormat, &vih2s[i], vih2s[i].size);
  362. memcpy(mt.pbFormat, pmt->pbFormat, sizeof(VIDEOINFOHEADER2));
  363. break;
  364. }
  365. }
  366. }
  367. CopyMediaType(pmt, &mt);
  368. }