ExampleFilters.cs 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. using System.Windows.Forms;
  6. using System.Diagnostics;
  7. using System.Drawing;
  8. using System.Drawing.Imaging;
  9. using DirectShow;
  10. using DirectShow.BaseClasses;
  11. using Sonic;
  12. using System.IO;
  13. using System.Threading;
  14. using System.Net.Sockets;
  15. using System.Net;
  16. namespace ExampleFilters
  17. {
  18. #region Null In Place Filter
  19. [ComVisible(true)]
  20. [Guid("eeb3eef7-0592-491b-b7d4-8c65763c79c6")]
  21. [AMovieSetup(true)]
  22. [PropPageSetup(typeof(AboutForm))]
  23. public class NullInPlaceFilter : TransInPlaceFilter
  24. {
  25. #region Constructor
  26. public NullInPlaceFilter()
  27. : base("CSharp Null InPlace Filter")
  28. {
  29. }
  30. #endregion
  31. #region Overridden Methods
  32. public override int CheckInputType(AMMediaType pmt)
  33. {
  34. return NOERROR;
  35. }
  36. public override int Transform(ref IMediaSampleImpl pSample)
  37. {
  38. return S_OK;
  39. }
  40. #endregion
  41. }
  42. #endregion
  43. #region Null Transform Filter
  44. [ComVisible(true)]
  45. [Guid("20573990-D7C8-476f-BE02-0959F63C4240")]
  46. [AMovieSetup(true)]
  47. [PropPageSetup(typeof(AboutForm))]
  48. public class NullTransformFilter : TransformFilter
  49. {
  50. #region Constructor
  51. public NullTransformFilter()
  52. : base("CSharp Null Transform Filter")
  53. {
  54. }
  55. #endregion
  56. #region Overridden Methods
  57. public override int CheckInputType(AMMediaType pmt)
  58. {
  59. if (pmt.IsValid() && pmt.formatPtr != IntPtr.Zero)
  60. {
  61. return NOERROR;
  62. }
  63. return VFW_E_TYPE_NOT_ACCEPTED;
  64. }
  65. public override int Transform(ref IMediaSampleImpl input, ref IMediaSampleImpl sample)
  66. {
  67. if (input.IsPreroll() == S_OK) return NOERROR;
  68. int lDataLength = input.GetActualDataLength();
  69. sample.SetActualDataLength(lDataLength);
  70. // Copy the sample data
  71. {
  72. IntPtr pSourceBuffer, pDestBuffer;
  73. int lSourceSize = input.GetSize();
  74. int lDestSize = sample.GetSize();
  75. ASSERT(lDestSize >= lSourceSize && lDestSize >= lDataLength);
  76. input.GetPointer(out pSourceBuffer);
  77. sample.GetPointer(out pDestBuffer);
  78. ASSERT(lDestSize == 0 || pSourceBuffer != IntPtr.Zero && pDestBuffer != IntPtr.Zero);
  79. API.CopyMemory(pDestBuffer, pSourceBuffer, lDataLength);
  80. }
  81. sample.SetSyncPoint(true);
  82. long _start,_stop;
  83. if (S_OK == input.GetTime(out _start, out _stop))
  84. {
  85. sample.SetTime((DsLong)_start, (DsLong)_stop);
  86. }
  87. return NOERROR;
  88. }
  89. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  90. {
  91. if (!Output.IsConnected) return VFW_E_NOT_CONNECTED;
  92. AllocatorProperties _actual = new AllocatorProperties();
  93. if (Output.CurrentMediaType.majorType == MediaType.Video)
  94. {
  95. BitmapInfoHeader _bmi = (BitmapInfoHeader)Output.CurrentMediaType;
  96. if (_bmi == null) return VFW_E_INVALIDMEDIATYPE;
  97. prop.cbBuffer = _bmi.GetBitmapSize();
  98. if (prop.cbBuffer < _bmi.ImageSize)
  99. {
  100. prop.cbBuffer = _bmi.ImageSize;
  101. }
  102. }
  103. if (Output.CurrentMediaType.majorType == MediaType.Audio)
  104. {
  105. WaveFormatEx _wfx = (WaveFormatEx)Output.CurrentMediaType;
  106. if (_wfx == null) return VFW_E_INVALIDMEDIATYPE;
  107. prop.cbBuffer = _wfx.nAvgBytesPerSec;
  108. if (prop.cbBuffer < _wfx.nBlockAlign * _wfx.nSamplesPerSec)
  109. {
  110. prop.cbBuffer = _wfx.nBlockAlign * _wfx.nSamplesPerSec;
  111. }
  112. }
  113. prop.cBuffers = 1;
  114. int hr = pAlloc.SetProperties(prop, _actual);
  115. return hr;
  116. }
  117. public override int GetMediaType(int iPosition, ref AMMediaType pMediaType)
  118. {
  119. if (iPosition > 0) return VFW_S_NO_MORE_ITEMS;
  120. if (pMediaType == null) return E_INVALIDARG;
  121. if (!Input.IsConnected) return VFW_E_NOT_CONNECTED;
  122. AMMediaType.Copy(Input.CurrentMediaType, ref pMediaType);
  123. return NOERROR;
  124. }
  125. public override int CheckTransform(AMMediaType mtIn, AMMediaType mtOut)
  126. {
  127. return AMMediaType.AreEquals(mtIn, mtOut) ? NOERROR : VFW_E_INVALIDMEDIATYPE;
  128. }
  129. #endregion
  130. };
  131. #endregion
  132. #region Dump Filter
  133. [ComVisible(true)]
  134. public class DumpInputPin : RenderedInputPin
  135. {
  136. #region Constructor
  137. public DumpInputPin(string _name, BaseFilter _filter)
  138. :base(_name,_filter)
  139. {
  140. }
  141. #endregion
  142. #region Overridden Methods
  143. public override int CheckMediaType(AMMediaType pmt)
  144. {
  145. return NOERROR;
  146. }
  147. public override int OnReceive(ref IMediaSampleImpl _sample)
  148. {
  149. HRESULT hr = (HRESULT)CheckStreaming();
  150. if (hr != S_OK) return hr;
  151. return (m_Filter as DumpFilter).OnReceive(ref _sample);
  152. }
  153. public override int EndOfStream()
  154. {
  155. (m_Filter as DumpFilter).EndOfStream();
  156. return base.EndOfStream();
  157. }
  158. #endregion
  159. }
  160. [ComVisible(true)]
  161. [Guid("12CCB25E-CB76-4512-BEE2-D9895DFA0B40")]
  162. [AMovieSetup(true)]
  163. [PropPageSetup(typeof(AboutForm))]
  164. public class DumpFilter : BaseFilter, IFileSinkFilter, IAMFilterMiscFlags
  165. {
  166. #region Variables
  167. private FileStream m_Stream = null;
  168. private string m_sFileName = "";
  169. #endregion
  170. #region Constructor
  171. public DumpFilter()
  172. : base("CSharp Dump Filter")
  173. {
  174. }
  175. #endregion
  176. #region Overridden Methods
  177. protected override int OnInitializePins()
  178. {
  179. AddPin(new DumpInputPin("In",this));
  180. return NOERROR;
  181. }
  182. public override int Pause()
  183. {
  184. if (m_State == FilterState.Stopped && m_Stream == null)
  185. {
  186. if (m_sFileName != "")
  187. {
  188. m_Stream = new FileStream(m_sFileName, FileMode.Create, FileAccess.Write, FileShare.Read);
  189. }
  190. }
  191. return base.Pause();
  192. }
  193. public override int Stop()
  194. {
  195. int hr = base.Stop();
  196. if (m_Stream != null)
  197. {
  198. m_Stream.Dispose();
  199. m_Stream = null;
  200. }
  201. return hr;
  202. }
  203. #endregion
  204. #region Methods
  205. public int EndOfStream()
  206. {
  207. lock (m_Lock)
  208. {
  209. if (m_Stream != null)
  210. {
  211. m_Stream.Dispose();
  212. m_Stream = null;
  213. }
  214. }
  215. NotifyEvent(EventCode.Complete, (IntPtr)((int)S_OK), Marshal.GetIUnknownForObject(this));
  216. return S_OK;
  217. }
  218. public int OnReceive(ref IMediaSampleImpl _sample)
  219. {
  220. lock (m_Lock)
  221. {
  222. if (m_Stream == null && m_sFileName != "")
  223. {
  224. m_Stream = new FileStream(m_sFileName, FileMode.Create, FileAccess.Write, FileShare.Read);
  225. }
  226. int _length = _sample.GetActualDataLength();
  227. if (m_Stream != null && _length > 0)
  228. {
  229. byte[] _data = new byte[_length];
  230. IntPtr _ptr;
  231. _sample.GetPointer(out _ptr);
  232. Marshal.Copy(_ptr, _data, 0, _length);
  233. m_Stream.Write(_data, 0, _length);
  234. }
  235. }
  236. return S_OK;
  237. }
  238. #endregion
  239. #region IFileSinkFilter Members
  240. public int SetFileName(string pszFileName, AMMediaType pmt)
  241. {
  242. if (string.IsNullOrEmpty(pszFileName)) return E_POINTER;
  243. if (IsActive) return VFW_E_WRONG_STATE;
  244. m_sFileName = pszFileName;
  245. return NOERROR;
  246. }
  247. public int GetCurFile(out string pszFileName, AMMediaType pmt)
  248. {
  249. pszFileName = m_sFileName;
  250. if (pmt != null)
  251. {
  252. pmt.Set(Pins[0].CurrentMediaType);
  253. }
  254. return NOERROR;
  255. }
  256. #endregion
  257. #region IAMFilterMiscFlags Members
  258. public int GetMiscFlags()
  259. {
  260. return 1;
  261. }
  262. #endregion
  263. }
  264. #endregion
  265. #region Text Over Filter
  266. [ComVisible(true)]
  267. [Guid("8AF6F710-1AF5-4952-AAFF-ACCD0DB2C9BB")]
  268. [AMovieSetup(true)]
  269. [PropPageSetup(typeof(AboutForm))]
  270. public class TextOverFilter : TransformFilter
  271. {
  272. #region Variables
  273. private string m_sText = "Sample Overlay Text";
  274. private Font m_Font = new Font("Arial", 20.0f, FontStyle.Regular, GraphicsUnit.Point);
  275. private Color m_Color = Color.Red;
  276. #endregion
  277. #region Constructor
  278. public TextOverFilter()
  279. : base("CSharp Text Overlay Filter")
  280. {
  281. }
  282. #endregion
  283. #region Overridden Methods
  284. public override int CheckInputType(AMMediaType pmt)
  285. {
  286. if (pmt.majorType != MediaType.Video)
  287. {
  288. return VFW_E_TYPE_NOT_ACCEPTED;
  289. }
  290. if (pmt.subType != MediaSubType.RGB32)
  291. {
  292. return VFW_E_TYPE_NOT_ACCEPTED;
  293. }
  294. if (pmt.formatType != FormatType.VideoInfo)
  295. {
  296. return VFW_E_TYPE_NOT_ACCEPTED;
  297. }
  298. if (pmt.formatPtr == IntPtr.Zero)
  299. {
  300. return VFW_E_TYPE_NOT_ACCEPTED;
  301. }
  302. return NOERROR;
  303. }
  304. public override int Transform(ref IMediaSampleImpl input, ref IMediaSampleImpl sample)
  305. {
  306. int lDataLength = input.GetActualDataLength();
  307. sample.SetActualDataLength(lDataLength);
  308. IntPtr _ptrIn;
  309. IntPtr _ptrOut;
  310. input.GetPointer(out _ptrIn);
  311. sample.GetPointer(out _ptrOut);
  312. BitmapInfoHeader _bmiIn = (BitmapInfoHeader)Input.CurrentMediaType;
  313. BitmapInfoHeader _bmiOut = (BitmapInfoHeader)Output.CurrentMediaType;
  314. Bitmap _bmpIn = new Bitmap(_bmiIn.Width, _bmiIn.Height, _bmiIn.Width * 4, PixelFormat.Format32bppRgb, _ptrIn);
  315. Bitmap _bmpOut = new Bitmap(_bmiOut.Width, _bmiOut.Height, _bmiOut.Width * 4, PixelFormat.Format32bppRgb, _ptrOut);
  316. {
  317. _bmpIn.RotateFlip(RotateFlipType.RotateNoneFlipY);
  318. Graphics _graphics = Graphics.FromImage(_bmpIn);
  319. StringFormat _format = new StringFormat();
  320. _format.Alignment = StringAlignment.Center;
  321. _format.LineAlignment = StringAlignment.Center;
  322. Brush _brush = new SolidBrush(m_Color);
  323. RectangleF _rect = new RectangleF(0, 0, _bmpIn.Width, _bmpIn.Height);
  324. _graphics.DrawString(m_sText, m_Font, _brush, _rect, _format);
  325. _graphics.Dispose();
  326. _bmpIn.RotateFlip(RotateFlipType.RotateNoneFlipY);
  327. }
  328. {
  329. Graphics _graphics = Graphics.FromImage(_bmpOut);
  330. _graphics.DrawImage(_bmpIn, 0, 0);
  331. _graphics.Dispose();
  332. }
  333. _bmpOut.Dispose();
  334. _bmpIn.Dispose();
  335. return S_OK;
  336. }
  337. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  338. {
  339. if (!Output.IsConnected) return VFW_E_NOT_CONNECTED;
  340. if (Output.CurrentMediaType.majorType != MediaType.Video) return VFW_E_INVALIDMEDIATYPE;
  341. AllocatorProperties _actual = new AllocatorProperties();
  342. BitmapInfoHeader _bmi = (BitmapInfoHeader)Output.CurrentMediaType;
  343. if (_bmi == null) return VFW_E_INVALIDMEDIATYPE;
  344. prop.cbBuffer = _bmi.GetBitmapSize();
  345. if (prop.cbBuffer < _bmi.ImageSize)
  346. {
  347. prop.cbBuffer = _bmi.ImageSize;
  348. }
  349. prop.cBuffers = 1;
  350. int hr = pAlloc.SetProperties(prop, _actual);
  351. return hr;
  352. }
  353. public override int GetMediaType(int iPosition, ref AMMediaType pMediaType)
  354. {
  355. if (iPosition > 0) return VFW_S_NO_MORE_ITEMS;
  356. if (pMediaType == null) return E_INVALIDARG;
  357. if (!Input.IsConnected) return VFW_E_NOT_CONNECTED;
  358. AMMediaType.Copy(Input.CurrentMediaType, ref pMediaType);
  359. return NOERROR;
  360. }
  361. public override int CheckTransform(AMMediaType mtIn, AMMediaType mtOut)
  362. {
  363. return AMMediaType.AreEquals(mtIn, mtOut) ? NOERROR : VFW_E_INVALIDMEDIATYPE;
  364. }
  365. #endregion
  366. }
  367. #endregion
  368. #region Image Source
  369. [ComVisible(true)]
  370. public class ImageSourceStream : SourceStream
  371. {
  372. #region Constructor
  373. public ImageSourceStream(string _name, BaseSourceFilter _filter)
  374. :base(_name,_filter)
  375. {
  376. }
  377. #endregion
  378. #region Overridden Methods
  379. public override int GetMediaType(ref AMMediaType pMediaType)
  380. {
  381. return (m_Filter as ImageSourceFilter).GetMediaType(ref pMediaType);
  382. }
  383. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  384. {
  385. if (!IsConnected) return VFW_E_NOT_CONNECTED;
  386. return (m_Filter as ImageSourceFilter).DecideBufferSize(ref pAlloc, ref prop);
  387. }
  388. public override int FillBuffer(ref IMediaSampleImpl pSample)
  389. {
  390. return (m_Filter as ImageSourceFilter).FillBuffer(ref pSample);
  391. }
  392. #endregion
  393. }
  394. [ComVisible(true)]
  395. [Guid("170BB172-4FD1-4eb5-B6F6-A834B344268F")]
  396. [AMovieSetup(true)]
  397. [PropPageSetup(typeof(AboutForm))]
  398. public class ImageSourceFilter : BaseSourceFilter, IFileSourceFilter
  399. {
  400. #region Variables
  401. protected string m_sFileName = "";
  402. protected Bitmap m_pBitmap = null;
  403. protected long m_nAvgTimePerFrame = UNITS / 20;
  404. protected long m_lLastSampleTime = 0;
  405. #endregion
  406. #region Constructor
  407. public ImageSourceFilter()
  408. :base("CSharp Image Source Filter")
  409. {
  410. }
  411. ~ImageSourceFilter()
  412. {
  413. if (m_pBitmap != null)
  414. {
  415. m_pBitmap.Dispose();
  416. m_pBitmap = null;
  417. }
  418. }
  419. #endregion
  420. #region Overridden Methods
  421. protected override int OnInitializePins()
  422. {
  423. AddPin(new ImageSourceStream("Output", this));
  424. return NOERROR;
  425. }
  426. public override int Pause()
  427. {
  428. if (m_State == FilterState.Stopped)
  429. {
  430. m_lLastSampleTime = 0;
  431. }
  432. return base.Pause();
  433. }
  434. #endregion
  435. #region Methods
  436. public int GetMediaType(ref AMMediaType pMediaType)
  437. {
  438. if (m_pBitmap == null) return E_UNEXPECTED;
  439. pMediaType.majorType = DirectShow.MediaType.Video;
  440. pMediaType.subType = DirectShow.MediaSubType.RGB32;
  441. pMediaType.formatType = DirectShow.FormatType.VideoInfo;
  442. VideoInfoHeader vih = new VideoInfoHeader();
  443. vih.AvgTimePerFrame = m_nAvgTimePerFrame;
  444. vih.BmiHeader = new BitmapInfoHeader();
  445. vih.BmiHeader.Size = Marshal.SizeOf(typeof(BitmapInfoHeader));
  446. vih.BmiHeader.Compression = 0;
  447. vih.BmiHeader.BitCount = 32;
  448. vih.BmiHeader.Width = m_pBitmap.Width;
  449. vih.BmiHeader.Height = m_pBitmap.Height;
  450. vih.BmiHeader.Planes = 1;
  451. vih.BmiHeader.ImageSize = vih.BmiHeader.Width * vih.BmiHeader.Height * vih.BmiHeader.BitCount / 8;
  452. vih.SrcRect = new DsRect();
  453. vih.TargetRect = new DsRect();
  454. AMMediaType.SetFormat(ref pMediaType, ref vih);
  455. pMediaType.fixedSizeSamples = true;
  456. pMediaType.sampleSize = vih.BmiHeader.ImageSize;
  457. return NOERROR;
  458. }
  459. public int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  460. {
  461. AllocatorProperties _actual = new AllocatorProperties();
  462. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  463. prop.cbBuffer = _bmi.GetBitmapSize();
  464. if (prop.cbBuffer < _bmi.ImageSize)
  465. {
  466. prop.cbBuffer = _bmi.ImageSize;
  467. }
  468. prop.cBuffers = 1;
  469. int hr = pAlloc.SetProperties(prop, _actual);
  470. return hr;
  471. }
  472. public int FillBuffer(ref IMediaSampleImpl _sample)
  473. {
  474. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  475. IntPtr _ptr;
  476. _sample.GetPointer(out _ptr);
  477. Bitmap _bmp = new Bitmap(_bmi.Width, _bmi.Height, _bmi.Width * 4, PixelFormat.Format32bppRgb, _ptr);
  478. Graphics _graphics = Graphics.FromImage(_bmp);
  479. _graphics.DrawImage(m_pBitmap, new Rectangle(0, 0, _bmp.Width, _bmp.Height), 0, 0, m_pBitmap.Width, m_pBitmap.Height,GraphicsUnit.Pixel);
  480. _graphics.Dispose();
  481. _bmp.Dispose();
  482. _sample.SetActualDataLength(_bmi.ImageSize);
  483. _sample.SetSyncPoint(true);
  484. long _stop = m_lLastSampleTime + m_nAvgTimePerFrame;
  485. _sample.SetTime((DsLong)m_lLastSampleTime, (DsLong)_stop);
  486. m_lLastSampleTime = _stop;
  487. return NOERROR;
  488. }
  489. #endregion
  490. #region IFileSourceFilter Members
  491. public int Load(string pszFileName, AMMediaType pmt)
  492. {
  493. if (string.IsNullOrEmpty(pszFileName)) return E_POINTER;
  494. if (IsActive) return VFW_E_WRONG_STATE;
  495. m_sFileName = pszFileName;
  496. if (m_pBitmap != null)
  497. {
  498. m_pBitmap.Dispose();
  499. }
  500. m_pBitmap = new Bitmap(m_sFileName);
  501. m_pBitmap.RotateFlip(RotateFlipType.RotateNoneFlipY);
  502. if (Pins[0].IsConnected)
  503. {
  504. ((BaseOutputPin)Pins[0]).ReconnectPin();
  505. }
  506. return NOERROR;
  507. }
  508. public int GetCurFile(out string pszFileName, AMMediaType pmt)
  509. {
  510. pszFileName = m_sFileName;
  511. if (pmt != null)
  512. {
  513. pmt.Set(Pins[0].CurrentMediaType);
  514. }
  515. return NOERROR;
  516. }
  517. #endregion
  518. }
  519. #endregion
  520. #region Screen Capture
  521. [ComVisible(true)]
  522. public class ScreenCaptureStream : SourceStream
  523. {
  524. #region Constructor
  525. public ScreenCaptureStream(string _name, BaseSourceFilter _filter)
  526. : base(_name, _filter)
  527. {
  528. }
  529. #endregion
  530. #region Overridden Methods
  531. public override int GetMediaType(ref AMMediaType pMediaType)
  532. {
  533. return (m_Filter as ScreenCaptureFilter).GetMediaType(ref pMediaType);
  534. }
  535. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  536. {
  537. if (!IsConnected) return VFW_E_NOT_CONNECTED;
  538. return (m_Filter as ScreenCaptureFilter).DecideBufferSize(ref pAlloc, ref prop);
  539. }
  540. public override int FillBuffer(ref IMediaSampleImpl pSample)
  541. {
  542. return (m_Filter as ScreenCaptureFilter).FillBuffer(ref pSample);
  543. }
  544. #endregion
  545. }
  546. [ComVisible(true)]
  547. [Guid("63E2D3DC-9266-4277-A796-6DCD5400772C")]
  548. [AMovieSetup(true)]
  549. [PropPageSetup(typeof(AboutForm))]
  550. public class ScreenCaptureFilter : BaseSourceFilter
  551. {
  552. #region Variables
  553. protected int m_nWidth = 640;
  554. protected int m_nHeight = 480;
  555. protected long m_nAvgTimePerFrame = UNITS / 20;
  556. protected long m_lLastSampleTime = 0;
  557. protected IntPtr m_hScreenDC = IntPtr.Zero;
  558. protected IntPtr m_hMemDC = IntPtr.Zero;
  559. protected IntPtr m_hBitmap = IntPtr.Zero;
  560. protected BitmapInfo m_bmi = new BitmapInfo();
  561. protected int m_nMaxWidth = 0;
  562. protected int m_nMaxHeight = 0;
  563. #endregion
  564. #region Constructor
  565. public ScreenCaptureFilter()
  566. : base("CSharp Screen Capture Filter")
  567. {
  568. }
  569. #endregion
  570. #region Overridden Methods
  571. protected override int OnInitializePins()
  572. {
  573. AddPin(new ScreenCaptureStream("Output", this));
  574. return NOERROR;
  575. }
  576. public override int Pause()
  577. {
  578. if (m_State == FilterState.Stopped)
  579. {
  580. m_lLastSampleTime = 0;
  581. m_hScreenDC = CreateDC("DISPLAY", null, null, IntPtr.Zero);
  582. m_nMaxWidth = GetDeviceCaps(m_hScreenDC,8); // HORZRES
  583. m_nMaxHeight = GetDeviceCaps(m_hScreenDC, 10); // VERTRES
  584. m_hMemDC = CreateCompatibleDC(m_hScreenDC);
  585. }
  586. return base.Pause();
  587. }
  588. public override int Stop()
  589. {
  590. int hr = base.Stop();
  591. if (m_hBitmap != IntPtr.Zero)
  592. {
  593. DeleteObject(m_hBitmap);
  594. m_hBitmap = IntPtr.Zero;
  595. }
  596. if (m_hScreenDC != IntPtr.Zero)
  597. {
  598. DeleteDC(m_hScreenDC);
  599. m_hScreenDC = IntPtr.Zero;
  600. }
  601. if (m_hMemDC != IntPtr.Zero)
  602. {
  603. DeleteDC(m_hMemDC);
  604. m_hMemDC = IntPtr.Zero;
  605. }
  606. return hr;
  607. }
  608. #endregion
  609. #region Methods
  610. public int GetMediaType(ref AMMediaType pMediaType)
  611. {
  612. pMediaType.majorType = DirectShow.MediaType.Video;
  613. pMediaType.subType = DirectShow.MediaSubType.RGB32;
  614. pMediaType.formatType = DirectShow.FormatType.VideoInfo;
  615. VideoInfoHeader vih = new VideoInfoHeader();
  616. vih.AvgTimePerFrame = m_nAvgTimePerFrame;
  617. vih.BmiHeader = new BitmapInfoHeader();
  618. vih.BmiHeader.Size = Marshal.SizeOf(typeof(BitmapInfoHeader));
  619. vih.BmiHeader.Compression = 0;
  620. vih.BmiHeader.BitCount = 32;
  621. vih.BmiHeader.Width = m_nWidth;
  622. vih.BmiHeader.Height = m_nHeight;
  623. vih.BmiHeader.Planes = 1;
  624. vih.BmiHeader.ImageSize = vih.BmiHeader.Width * vih.BmiHeader.Height * vih.BmiHeader.BitCount / 8;
  625. vih.SrcRect = new DsRect();
  626. vih.TargetRect = new DsRect();
  627. AMMediaType.SetFormat(ref pMediaType, ref vih);
  628. pMediaType.fixedSizeSamples = true;
  629. pMediaType.sampleSize = vih.BmiHeader.ImageSize;
  630. return NOERROR;
  631. }
  632. public int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  633. {
  634. AllocatorProperties _actual = new AllocatorProperties();
  635. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  636. prop.cbBuffer = _bmi.GetBitmapSize();
  637. if (prop.cbBuffer < _bmi.ImageSize)
  638. {
  639. prop.cbBuffer = _bmi.ImageSize;
  640. }
  641. prop.cBuffers = 1;
  642. int hr = pAlloc.SetProperties(prop, _actual);
  643. return hr;
  644. }
  645. public int FillBuffer(ref IMediaSampleImpl _sample)
  646. {
  647. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  648. if (m_hBitmap == IntPtr.Zero)
  649. {
  650. m_hBitmap = CreateCompatibleBitmap(m_hScreenDC, _bmi.Width, Math.Abs(_bmi.Height));
  651. m_bmi.bmiHeader = _bmi;
  652. }
  653. IntPtr _ptr;
  654. _sample.GetPointer(out _ptr);
  655. IntPtr hOldBitmap = SelectObject(m_hMemDC, m_hBitmap);
  656. StretchBlt(m_hMemDC, 0, 0, m_nWidth, m_nHeight, m_hScreenDC, 0, 0, m_nMaxWidth, m_nMaxHeight,TernaryRasterOperations.SRCCOPY);
  657. SelectObject(m_hMemDC, hOldBitmap);
  658. GetDIBits(m_hMemDC, m_hBitmap, 0, (uint)m_nHeight, _ptr, ref m_bmi, 0);
  659. _sample.SetActualDataLength(_bmi.ImageSize);
  660. _sample.SetSyncPoint(true);
  661. long _stop = m_lLastSampleTime + m_nAvgTimePerFrame;
  662. _sample.SetTime((DsLong)m_lLastSampleTime, (DsLong)_stop);
  663. m_lLastSampleTime = _stop;
  664. return NOERROR;
  665. }
  666. #endregion
  667. #region API
  668. [StructLayout(LayoutKind.Sequential)]
  669. protected struct BitmapInfo
  670. {
  671. public BitmapInfoHeader bmiHeader;
  672. public int[] bmiColors;
  673. }
  674. private enum TernaryRasterOperations : uint
  675. {
  676. SRCCOPY = 0x00CC0020,
  677. SRCPAINT = 0x00EE0086,
  678. SRCAND = 0x008800C6,
  679. SRCINVERT = 0x00660046,
  680. SRCERASE = 0x00440328,
  681. NOTSRCCOPY = 0x00330008,
  682. NOTSRCERASE = 0x001100A6,
  683. MERGECOPY = 0x00C000CA,
  684. MERGEPAINT = 0x00BB0226,
  685. PATCOPY = 0x00F00021,
  686. PATPAINT = 0x00FB0A09,
  687. PATINVERT = 0x005A0049,
  688. DSTINVERT = 0x00550009,
  689. BLACKNESS = 0x00000042,
  690. WHITENESS = 0x00FF0062,
  691. CAPTUREBLT = 0x40000000
  692. }
  693. [DllImport("gdi32.dll")]
  694. private static extern IntPtr CreateDC(string lpszDriver, string lpszDevice, string lpszOutput, IntPtr lpInitData);
  695. [DllImport("gdi32.dll", SetLastError = true)]
  696. private static extern IntPtr CreateCompatibleDC(IntPtr hdc);
  697. [DllImport("gdi32.dll")]
  698. private static extern IntPtr CreateCompatibleBitmap(IntPtr hdc, int nWidth, int nHeight);
  699. [DllImport("gdi32.dll", ExactSpelling = true, PreserveSig = true, SetLastError = true)]
  700. private static extern IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
  701. [DllImport("gdi32.dll")]
  702. private static extern bool DeleteObject(IntPtr hObject);
  703. [DllImport("gdi32.dll")]
  704. private static extern bool DeleteDC(IntPtr hdc);
  705. [DllImport("gdi32.dll")]
  706. private static extern bool StretchBlt(IntPtr hdcDest, int nXOriginDest, int nYOriginDest,
  707. int nWidthDest, int nHeightDest,
  708. IntPtr hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc,
  709. TernaryRasterOperations dwRop);
  710. [DllImport("gdi32.dll")]
  711. private static extern int GetDIBits(IntPtr hdc, IntPtr hbmp, uint uStartScan,
  712. uint cScanLines, [Out] IntPtr lpvBits, ref BitmapInfo lpbmi, uint uUsage);
  713. [DllImport("gdi32.dll")]
  714. private static extern int GetDeviceCaps(IntPtr hdc, int nIndex);
  715. #endregion
  716. }
  717. #endregion
  718. #region Video Rotation Filter
  719. [ComVisible(true)]
  720. [Guid("7FB1203E-5E75-4ead-AB36-92C41CF9DAA5")]
  721. [AMovieSetup(true)]
  722. [PropPageSetup(typeof(AboutForm))]
  723. public class VideoRotationFilter : TransformFilter
  724. {
  725. #region Constructor
  726. public VideoRotationFilter()
  727. : base("CSharp Video Rotation Filter")
  728. {
  729. }
  730. #endregion
  731. #region Overridden Methods
  732. public override int CheckInputType(AMMediaType pmt)
  733. {
  734. if (pmt.majorType != MediaType.Video)
  735. {
  736. return VFW_E_TYPE_NOT_ACCEPTED;
  737. }
  738. if (pmt.formatType != FormatType.VideoInfo)
  739. {
  740. return VFW_E_TYPE_NOT_ACCEPTED;
  741. }
  742. if (pmt.subType != MediaSubType.RGB24)
  743. {
  744. return VFW_E_TYPE_NOT_ACCEPTED;
  745. }
  746. if (!pmt.fixedSizeSamples)
  747. {
  748. return VFW_E_TYPE_NOT_ACCEPTED;
  749. }
  750. if (pmt.formatPtr == IntPtr.Zero)
  751. {
  752. return VFW_E_INVALIDMEDIATYPE;
  753. }
  754. return NOERROR;
  755. }
  756. public override int Transform(ref IMediaSampleImpl input, ref IMediaSampleImpl sample)
  757. {
  758. sample.SetActualDataLength(input.GetActualDataLength());
  759. IntPtr pSourceBuffer, pDestBuffer;
  760. input.GetPointer(out pSourceBuffer);
  761. sample.GetPointer(out pDestBuffer);
  762. BitmapInfoHeader _bmi = Output.CurrentMediaType;
  763. Bitmap _bmpOut = new Bitmap(_bmi.Width, _bmi.Height, _bmi.Width * 3, PixelFormat.Format24bppRgb, pDestBuffer);
  764. Bitmap _bmpInput = null;
  765. _bmpInput = new Bitmap(_bmi.Height, _bmi.Width, _bmi.Height * 3, PixelFormat.Format24bppRgb, pSourceBuffer);
  766. _bmpInput.RotateFlip(RotateFlipType.Rotate90FlipNone);
  767. Graphics _gr = Graphics.FromImage(_bmpOut);
  768. _gr.DrawImage(_bmpInput, 0, 0);
  769. _gr.Dispose();
  770. return NOERROR;
  771. }
  772. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  773. {
  774. if (!Output.IsConnected) return VFW_E_NOT_CONNECTED;
  775. if (Output.CurrentMediaType.majorType != MediaType.Video) return VFW_E_INVALIDMEDIATYPE;
  776. AllocatorProperties _actual = new AllocatorProperties();
  777. BitmapInfoHeader _bmi = (BitmapInfoHeader)Output.CurrentMediaType;
  778. if (_bmi == null) return VFW_E_INVALIDMEDIATYPE;
  779. prop.cbBuffer = _bmi.GetBitmapSize();
  780. if (prop.cbBuffer < _bmi.ImageSize)
  781. {
  782. prop.cbBuffer = _bmi.ImageSize;
  783. }
  784. prop.cBuffers = 1;
  785. int hr = pAlloc.SetProperties(prop, _actual);
  786. return hr;
  787. }
  788. public override int GetMediaType(int iPosition, ref AMMediaType pMediaType)
  789. {
  790. if (iPosition > 0) return VFW_S_NO_MORE_ITEMS;
  791. if (pMediaType == null) return E_INVALIDARG;
  792. if (!Input.IsConnected) return VFW_E_NOT_CONNECTED;
  793. AMMediaType.Copy(Input.CurrentMediaType, ref pMediaType);
  794. VideoInfoHeader _vih = (VideoInfoHeader)pMediaType;
  795. int Width = _vih.BmiHeader.Width;
  796. _vih.BmiHeader.Width = Math.Abs(_vih.BmiHeader.Height);
  797. _vih.BmiHeader.Height = Width;
  798. Marshal.StructureToPtr(_vih, pMediaType.formatPtr, true);
  799. return NOERROR;
  800. }
  801. public override int CheckTransform(AMMediaType mtIn, AMMediaType mtOut)
  802. {
  803. if (mtIn.majorType != mtOut.majorType)
  804. {
  805. return VFW_E_INVALIDMEDIATYPE;
  806. }
  807. if (mtIn.subType != mtOut.subType)
  808. {
  809. return VFW_E_INVALIDMEDIATYPE;
  810. }
  811. BitmapInfoHeader _bmiIn = mtIn;
  812. BitmapInfoHeader _bmiOut = mtOut;
  813. if (_bmiIn == null || _bmiOut == null)
  814. {
  815. return VFW_E_INVALIDMEDIATYPE;
  816. }
  817. if (_bmiIn.Width != _bmiOut.Height)
  818. {
  819. return VFW_E_INVALIDMEDIATYPE;
  820. }
  821. return NOERROR;
  822. }
  823. #endregion
  824. };
  825. #endregion
  826. #region Wav Dest Filter
  827. [ComVisible(true)]
  828. public class WavDestInputPin : RenderedInputPin
  829. {
  830. #region Constructor
  831. public WavDestInputPin(string _name, BaseFilter _filter)
  832. : base(_name, _filter)
  833. {
  834. }
  835. #endregion
  836. #region Overridden Methods
  837. public override int CheckMediaType(AMMediaType pmt)
  838. {
  839. return (m_Filter as WavDestFilter).CheckMediaType(pmt);
  840. }
  841. public override int OnReceive(ref IMediaSampleImpl _sample)
  842. {
  843. HRESULT hr = (HRESULT)CheckStreaming();
  844. if (hr != S_OK) return hr;
  845. return (m_Filter as WavDestFilter).OnReceive(ref _sample);
  846. }
  847. public override int EndOfStream()
  848. {
  849. (m_Filter as WavDestFilter).EndOfStream();
  850. return base.EndOfStream();
  851. }
  852. #endregion
  853. }
  854. [ComVisible(true)]
  855. [Guid("EC5D99F0-8D1E-49ec-8C30-9CBE4AF4FD0B")]
  856. [AMovieSetup(true)]
  857. [PropPageSetup(typeof(AboutForm))]
  858. public class WavDestFilter : BaseFilter, IFileSinkFilter, IAMFilterMiscFlags
  859. {
  860. #region Structures
  861. [StructLayout(LayoutKind.Sequential)]
  862. private class OUTPUT_DATA_HEADER
  863. {
  864. public uint dwData = 0;
  865. public uint dwDataLength = 0;
  866. }
  867. [StructLayout(LayoutKind.Sequential)]
  868. private class OUTPUT_FILE_HEADER
  869. {
  870. public uint dwRiff = 0;
  871. public uint dwFileSize = 0;
  872. public uint dwWave = 0;
  873. public uint dwFormat = 0;
  874. public uint dwFormatLength = 0;
  875. }
  876. #endregion
  877. #region Constants
  878. private const uint RIFF_TAG = 0x46464952;
  879. private const uint WAVE_TAG = 0x45564157;
  880. private const uint FMT__TAG = 0x20746D66;
  881. private const uint DATA_TAG = 0x61746164;
  882. private const uint WAVE_FORMAT_PCM = 0x01;
  883. #endregion
  884. #region Variables
  885. private FileStream m_Stream = null;
  886. private string m_sFileName = "";
  887. #endregion
  888. #region Constructor
  889. public WavDestFilter()
  890. : base("CSharp Wav Dest Filter")
  891. {
  892. }
  893. #endregion
  894. #region Overridden Methods
  895. protected override int OnInitializePins()
  896. {
  897. AddPin(new WavDestInputPin("In", this));
  898. return NOERROR;
  899. }
  900. public override int Pause()
  901. {
  902. if (m_State == FilterState.Stopped && m_Stream == null)
  903. {
  904. OpenFile();
  905. }
  906. return base.Pause();
  907. }
  908. public override int Stop()
  909. {
  910. int hr = base.Stop();
  911. CloseFile();
  912. return hr;
  913. }
  914. #endregion
  915. #region Methods
  916. public int CheckMediaType(AMMediaType pmt)
  917. {
  918. if (pmt.majorType != MediaType.Audio)
  919. {
  920. return VFW_E_TYPE_NOT_ACCEPTED;
  921. }
  922. if (pmt.subType != MediaSubType.PCM)
  923. {
  924. return VFW_E_TYPE_NOT_ACCEPTED;
  925. }
  926. WaveFormatEx _wfx = pmt;
  927. if (_wfx == null || _wfx.wFormatTag != WAVE_FORMAT_PCM)
  928. {
  929. return VFW_E_TYPE_NOT_ACCEPTED;
  930. }
  931. return S_OK;
  932. }
  933. public int EndOfStream()
  934. {
  935. CloseFile();
  936. NotifyEvent(EventCode.Complete, (IntPtr)((int)S_OK), Marshal.GetIUnknownForObject(this));
  937. return S_OK;
  938. }
  939. public int OnReceive(ref IMediaSampleImpl _sample)
  940. {
  941. lock (m_Lock)
  942. {
  943. if (m_Stream == null)
  944. {
  945. OpenFile();
  946. }
  947. int _length = _sample.GetActualDataLength();
  948. if (m_Stream != null && _length > 0)
  949. {
  950. byte[] _data = new byte[_length];
  951. IntPtr _ptr;
  952. _sample.GetPointer(out _ptr);
  953. Marshal.Copy(_ptr, _data, 0, _length);
  954. m_Stream.Write(_data, 0, _length);
  955. }
  956. }
  957. return S_OK;
  958. }
  959. #endregion
  960. #region Helper Methods
  961. protected int OpenFile()
  962. {
  963. if (m_Stream == null && m_sFileName != "" && Pins[0].IsConnected)
  964. {
  965. m_Stream = new FileStream(m_sFileName, FileMode.Create, FileAccess.Write, FileShare.Read);
  966. WaveFormatEx _wfx = Pins[0].CurrentMediaType;
  967. int _size;
  968. byte[] _buffer;
  969. IntPtr _ptr;
  970. OUTPUT_FILE_HEADER _header = new OUTPUT_FILE_HEADER();
  971. _header.dwRiff = RIFF_TAG;
  972. _header.dwFileSize = 0;
  973. _header.dwWave = WAVE_TAG;
  974. _header.dwFormat = FMT__TAG;
  975. _header.dwFormatLength = (uint)Marshal.SizeOf(_wfx);
  976. _size = Marshal.SizeOf(_header);
  977. _buffer = new byte[_size];
  978. _ptr = Marshal.AllocCoTaskMem(_size);
  979. Marshal.StructureToPtr(_header, _ptr, true);
  980. Marshal.Copy(_ptr, _buffer, 0, _size);
  981. m_Stream.Write(_buffer, 0, _size);
  982. Marshal.FreeCoTaskMem(_ptr);
  983. _size = Marshal.SizeOf(_wfx);
  984. _buffer = new byte[_size];
  985. _ptr = Marshal.AllocCoTaskMem(_size);
  986. Marshal.StructureToPtr(_wfx, _ptr, true);
  987. Marshal.Copy(_ptr, _buffer, 0, _size);
  988. m_Stream.Write(_buffer, 0, _size);
  989. Marshal.FreeCoTaskMem(_ptr);
  990. OUTPUT_DATA_HEADER _data = new OUTPUT_DATA_HEADER();
  991. _data.dwData = DATA_TAG;
  992. _data.dwDataLength = 0;
  993. _size = Marshal.SizeOf(_data);
  994. _buffer = new byte[_size];
  995. _ptr = Marshal.AllocCoTaskMem(_size);
  996. Marshal.StructureToPtr(_data, _ptr, true);
  997. Marshal.Copy(_ptr, _buffer, 0, _size);
  998. m_Stream.Write(_buffer, 0, _size);
  999. Marshal.FreeCoTaskMem(_ptr);
  1000. return NOERROR;
  1001. }
  1002. return S_FALSE;
  1003. }
  1004. protected int CloseFile()
  1005. {
  1006. lock (m_Lock)
  1007. {
  1008. if (m_Stream != null)
  1009. {
  1010. WaveFormatEx _wfx = Pins[0].CurrentMediaType;
  1011. int _size;
  1012. byte[] _buffer;
  1013. IntPtr _ptr;
  1014. OUTPUT_FILE_HEADER _header = new OUTPUT_FILE_HEADER();
  1015. _header.dwRiff = RIFF_TAG;
  1016. _header.dwFileSize = (uint)m_Stream.Length - 2 * 4;
  1017. _header.dwWave = WAVE_TAG;
  1018. _header.dwFormat = FMT__TAG;
  1019. _header.dwFormatLength = (uint)Marshal.SizeOf(_wfx);
  1020. _size = Marshal.SizeOf(_header);
  1021. _buffer = new byte[_size];
  1022. _ptr = Marshal.AllocCoTaskMem(_size);
  1023. Marshal.StructureToPtr(_header, _ptr, true);
  1024. Marshal.Copy(_ptr, _buffer, 0, _size);
  1025. m_Stream.Write(_buffer, 0, _size);
  1026. Marshal.FreeCoTaskMem(_ptr);
  1027. _size = Marshal.SizeOf(_wfx);
  1028. _buffer = new byte[_size];
  1029. _ptr = Marshal.AllocCoTaskMem(_size);
  1030. Marshal.StructureToPtr(_wfx, _ptr, true);
  1031. Marshal.Copy(_ptr, _buffer, 0, _size);
  1032. m_Stream.Write(_buffer, 0, _size);
  1033. Marshal.FreeCoTaskMem(_ptr);
  1034. OUTPUT_DATA_HEADER _data = new OUTPUT_DATA_HEADER();
  1035. _data.dwData = DATA_TAG;
  1036. _data.dwDataLength = (uint)(m_Stream.Length - Marshal.SizeOf(_header) - _header.dwFormatLength - Marshal.SizeOf(_data));
  1037. _size = Marshal.SizeOf(_data);
  1038. _buffer = new byte[_size];
  1039. _ptr = Marshal.AllocCoTaskMem(_size);
  1040. Marshal.StructureToPtr(_data, _ptr, true);
  1041. Marshal.Copy(_ptr, _buffer, 0, _size);
  1042. m_Stream.Write(_buffer, 0, _size);
  1043. Marshal.FreeCoTaskMem(_ptr);
  1044. m_Stream.Dispose();
  1045. m_Stream = null;
  1046. }
  1047. }
  1048. return NOERROR;
  1049. }
  1050. #endregion
  1051. #region IFileSinkFilter Members
  1052. public int SetFileName(string pszFileName, AMMediaType pmt)
  1053. {
  1054. if (string.IsNullOrEmpty(pszFileName)) return E_POINTER;
  1055. if (IsActive) return VFW_E_WRONG_STATE;
  1056. m_sFileName = pszFileName;
  1057. return NOERROR;
  1058. }
  1059. public int GetCurFile(out string pszFileName, AMMediaType pmt)
  1060. {
  1061. pszFileName = m_sFileName;
  1062. if (pmt != null)
  1063. {
  1064. pmt.Set(Pins[0].CurrentMediaType);
  1065. }
  1066. return NOERROR;
  1067. }
  1068. #endregion
  1069. #region IAMFilterMiscFlags Members
  1070. public int GetMiscFlags()
  1071. {
  1072. return 1;
  1073. }
  1074. #endregion
  1075. }
  1076. #endregion
  1077. #region Channel Output
  1078. public enum AudioChannel : int
  1079. {
  1080. FRONT_LEFT = 0x1,
  1081. FRONT_RIGHT = 0x2,
  1082. FRONT_CENTER = 0x4,
  1083. LOW_FREQUENCY = 0x8,
  1084. BACK_LEFT = 0x10,
  1085. BACK_RIGHT = 0x20,
  1086. SIDE_LEFT = 0x200,
  1087. SIDE_RIGHT = 0x400,
  1088. }
  1089. [ComVisible(true)]
  1090. [System.Security.SuppressUnmanagedCodeSecurity]
  1091. [Guid("29D64CCD-D271-4390-8CF2-89D445E7814B")]
  1092. [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  1093. public interface IAudioChannel
  1094. {
  1095. [PreserveSig]
  1096. int put_ActiveChannel([In] AudioChannel _channel);
  1097. [PreserveSig]
  1098. int get_ActiveChannel([Out] out AudioChannel _channel);
  1099. }
  1100. [ComVisible(true)]
  1101. [Guid("701F5A6E-CE48-4dd8-A619-3FEB42E4AC77")]
  1102. [AMovieSetup(true)]
  1103. [PropPageSetup(typeof(AudioChannelForm),typeof(AboutForm))]
  1104. public class AudioChannelFilter : TransformFilter, IAudioChannel
  1105. {
  1106. #region Constants
  1107. private const uint WAVE_FORMAT_PCM = 0x0001;
  1108. private const uint WAVE_FORMAT_EXTENSIBLE = 0xFFFE;
  1109. private static readonly Guid KSDATAFORMAT_SUBTYPE_PCM = new Guid("00000001-0000-0010-8000-00aa00389b71");
  1110. #endregion
  1111. #region Variables
  1112. protected AudioChannel m_Channel = AudioChannel.FRONT_LEFT;
  1113. #endregion
  1114. #region Constructor
  1115. public AudioChannelFilter()
  1116. : base("CSharp Audio Channel Filter")
  1117. {
  1118. }
  1119. #endregion
  1120. #region Overridden Methods
  1121. public override int CheckInputType(AMMediaType pmt)
  1122. {
  1123. if (pmt.majorType != MediaType.Audio)
  1124. {
  1125. return VFW_E_TYPE_NOT_ACCEPTED;
  1126. }
  1127. if (pmt.formatType != FormatType.WaveEx)
  1128. {
  1129. return VFW_E_TYPE_NOT_ACCEPTED;
  1130. }
  1131. WaveFormatEx _wfx = pmt;
  1132. if (_wfx == null)
  1133. {
  1134. return VFW_E_TYPE_NOT_ACCEPTED;
  1135. }
  1136. if (_wfx.wFormatTag != WAVE_FORMAT_PCM)
  1137. {
  1138. return VFW_E_TYPE_NOT_ACCEPTED;
  1139. }
  1140. if (_wfx.nChannels == 0)
  1141. {
  1142. return VFW_E_TYPE_NOT_ACCEPTED;
  1143. }
  1144. if (_wfx.wBitsPerSample != 16 && _wfx.wBitsPerSample != 8)
  1145. {
  1146. return VFW_E_TYPE_NOT_ACCEPTED;
  1147. }
  1148. return NOERROR;
  1149. }
  1150. public override int GetMediaType(int iPosition, ref AMMediaType pMediaType)
  1151. {
  1152. if (!Input.IsConnected) return E_INVALIDARG;
  1153. if (iPosition < 0) return E_INVALIDARG;
  1154. if (iPosition > 0) return VFW_S_NO_MORE_ITEMS;
  1155. WaveFormatEx _wfx = Input.CurrentMediaType;
  1156. WaveFormatExtensible _wfxOut = new WaveFormatExtensible();
  1157. _wfxOut.Format.wFormatTag = (ushort)WAVE_FORMAT_EXTENSIBLE;
  1158. _wfxOut.Format.cbSize = (ushort)(Marshal.SizeOf(_wfxOut) - Marshal.SizeOf(typeof(WaveFormatEx)));
  1159. _wfxOut.Format.wBitsPerSample = _wfx.wBitsPerSample;
  1160. _wfxOut.Format.nChannels = 1;
  1161. _wfxOut.Format.nSamplesPerSec = _wfx.nSamplesPerSec;
  1162. _wfxOut.Format.nBlockAlign = (ushort)(_wfxOut.Format.nChannels * _wfxOut.Format.wBitsPerSample / 8);
  1163. _wfxOut.Format.nAvgBytesPerSec = _wfxOut.Format.nBlockAlign * _wfxOut.Format.nSamplesPerSec;
  1164. _wfxOut.wReserved = 0;
  1165. _wfxOut.dwChannelMask = (SPEAKER)m_Channel;
  1166. _wfxOut.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
  1167. pMediaType.majorType = MediaType.Audio;
  1168. pMediaType.subType = MediaSubType.PCM;
  1169. pMediaType.formatType = FormatType.WaveEx;
  1170. pMediaType.fixedSizeSamples = true;
  1171. pMediaType.sampleSize = _wfxOut.Format.nBlockAlign;
  1172. pMediaType.formatSize = Marshal.SizeOf(_wfxOut);
  1173. pMediaType.formatPtr = Marshal.AllocCoTaskMem(pMediaType.formatSize);
  1174. Marshal.StructureToPtr(_wfxOut, pMediaType.formatPtr, true);
  1175. return NOERROR;
  1176. }
  1177. public override int CheckTransform(AMMediaType mtIn, AMMediaType mtOut)
  1178. {
  1179. return NOERROR;
  1180. }
  1181. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  1182. {
  1183. if (!Output.IsConnected) return VFW_E_NOT_CONNECTED;
  1184. AllocatorProperties _actual = new AllocatorProperties();
  1185. WaveFormatExtensible _wfx = (WaveFormatExtensible)Marshal.PtrToStructure(Output.CurrentMediaType.formatPtr, typeof(WaveFormatExtensible));
  1186. if (_wfx == null) return VFW_E_INVALIDMEDIATYPE;
  1187. prop.cbBuffer = _wfx.Format.nAvgBytesPerSec;
  1188. if (prop.cbBuffer < _wfx.Format.nBlockAlign * _wfx.Format.nSamplesPerSec)
  1189. {
  1190. prop.cbBuffer = _wfx.Format.nBlockAlign * _wfx.Format.nSamplesPerSec;
  1191. }
  1192. prop.cbAlign = _wfx.Format.nBlockAlign;
  1193. prop.cBuffers = 3;
  1194. int hr = pAlloc.SetProperties(prop, _actual);
  1195. return hr;
  1196. }
  1197. public override int Transform(ref IMediaSampleImpl input, ref IMediaSampleImpl sample)
  1198. {
  1199. WaveFormatEx _wfx = Input.CurrentMediaType;
  1200. int iSize = input.GetActualDataLength();
  1201. IntPtr pBuffer;
  1202. input.GetPointer(out pBuffer);
  1203. IntPtr pOutBuffer;
  1204. sample.GetPointer(out pOutBuffer);
  1205. sample.SetActualDataLength(iSize / _wfx.nChannels);
  1206. int iCount = (_wfx.wBitsPerSample == 8 ? 1 : 2);
  1207. float fMax = _wfx.wBitsPerSample == 8 ? 127.0f : 32767.0f;
  1208. float fMin = _wfx.wBitsPerSample == 8 ? -127.0f : -32767.0f;
  1209. float fTemp;
  1210. if (_wfx.wBitsPerSample == 8)
  1211. {
  1212. while (iSize > 0)
  1213. {
  1214. fTemp = 0;
  1215. int nChannel = 0;
  1216. while (nChannel++ < _wfx.nChannels)
  1217. {
  1218. fTemp += ((float)(Marshal.ReadByte(pBuffer)) - 128.0f);
  1219. iSize -= iCount;
  1220. pBuffer = new IntPtr(pBuffer.ToInt32() + 1);
  1221. }
  1222. fTemp /= _wfx.nChannels;
  1223. if (fTemp < fMin) fTemp = fMin;
  1224. if (fTemp > fMax) fTemp = fMax;
  1225. Marshal.WriteByte(pOutBuffer, (byte)(fTemp + 128.0f));
  1226. pOutBuffer = new IntPtr(pOutBuffer.ToInt32() + 1);
  1227. }
  1228. }
  1229. else
  1230. if (_wfx.wBitsPerSample == 16)
  1231. {
  1232. while (iSize > 0)
  1233. {
  1234. fTemp = 0;
  1235. int nChannel = 0;
  1236. while (nChannel++ < _wfx.nChannels)
  1237. {
  1238. fTemp += (float)Marshal.ReadInt16(pBuffer);
  1239. iSize -= iCount;
  1240. pBuffer = new IntPtr(pBuffer.ToInt32() + 2);
  1241. }
  1242. fTemp /= _wfx.nChannels;
  1243. if (fTemp < fMin) fTemp = fMin;
  1244. if (fTemp > fMax) fTemp = fMax;
  1245. Marshal.WriteInt16(pOutBuffer, (short)(fTemp + 128.0f));
  1246. pOutBuffer = new IntPtr(pOutBuffer.ToInt32() + 2);
  1247. }
  1248. }
  1249. return NOERROR;
  1250. }
  1251. #endregion
  1252. #region IAudioChannel Members
  1253. public int put_ActiveChannel(AudioChannel _channel)
  1254. {
  1255. if (IsActive) return VFW_E_WRONG_STATE;
  1256. if (m_Channel != _channel)
  1257. {
  1258. m_Channel = _channel;
  1259. if (Output.IsConnected)
  1260. {
  1261. Output.ReconnectPin();
  1262. }
  1263. }
  1264. return NOERROR;
  1265. }
  1266. public int get_ActiveChannel(out AudioChannel _channel)
  1267. {
  1268. _channel = m_Channel;
  1269. return NOERROR;
  1270. }
  1271. #endregion
  1272. }
  1273. #endregion
  1274. #region Inf Tee
  1275. [ComVisible(true)]
  1276. public class InfTeeInputPin: BaseInputPin
  1277. {
  1278. #region Variables
  1279. private bool m_bInsideCheckMediaType = false;
  1280. #endregion
  1281. #region Constructor
  1282. public InfTeeInputPin(string _name, BaseFilter _filter)
  1283. : base(_name, _filter)
  1284. {
  1285. }
  1286. #endregion
  1287. #region Overridden Methods
  1288. public override int CheckMediaType(AMMediaType pmt)
  1289. {
  1290. lock (m_Lock)
  1291. {
  1292. if (m_bInsideCheckMediaType) return NOERROR;
  1293. m_bInsideCheckMediaType = true;
  1294. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1295. {
  1296. InfTeeOutputPin _pin = (m_Filter.Pins[i] as InfTeeOutputPin);
  1297. if (_pin.IsConnected)
  1298. {
  1299. HRESULT hr = (HRESULT)_pin.QueryAccept(pmt);
  1300. if (hr != NOERROR)
  1301. {
  1302. m_bInsideCheckMediaType = false;
  1303. return VFW_E_TYPE_NOT_ACCEPTED;
  1304. }
  1305. }
  1306. }
  1307. m_bInsideCheckMediaType = false;
  1308. }
  1309. return NOERROR;
  1310. }
  1311. public override int EndOfStream()
  1312. {
  1313. lock (m_Lock)
  1314. {
  1315. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1316. {
  1317. HRESULT hr = (HRESULT)(m_Filter.Pins[i] as InfTeeOutputPin).DeliverEndOfStream();
  1318. if (hr.Failed) return hr;
  1319. }
  1320. }
  1321. return NOERROR;
  1322. }
  1323. public override int BeginFlush()
  1324. {
  1325. lock (m_Lock)
  1326. {
  1327. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1328. {
  1329. HRESULT hr = (HRESULT)(m_Filter.Pins[i] as InfTeeOutputPin).DeliverBeginFlush();
  1330. if (hr.Failed) return hr;
  1331. }
  1332. }
  1333. return NOERROR;
  1334. }
  1335. public override int EndFlush()
  1336. {
  1337. lock (m_Lock)
  1338. {
  1339. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1340. {
  1341. HRESULT hr = (HRESULT)(m_Filter.Pins[i] as InfTeeOutputPin).DeliverEndFlush();
  1342. if (hr.Failed) return hr;
  1343. }
  1344. }
  1345. return NOERROR;
  1346. }
  1347. public override int NewSegment(long tStart, long tStop, double dRate)
  1348. {
  1349. lock (m_Lock)
  1350. {
  1351. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1352. {
  1353. HRESULT hr = (HRESULT)(m_Filter.Pins[i] as InfTeeOutputPin).DeliverNewSegment(tStart, tStop, dRate);
  1354. if (hr.Failed) return hr;
  1355. }
  1356. }
  1357. return NOERROR;
  1358. }
  1359. public override int CompleteConnect(ref IPinImpl pReceivePin)
  1360. {
  1361. HRESULT hr = (HRESULT)base.CompleteConnect(ref pReceivePin);
  1362. if (hr.Failed) return hr;
  1363. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1364. {
  1365. InfTeeOutputPin _pin = (m_Filter.Pins[i] as InfTeeOutputPin);
  1366. if (_pin.IsConnected && _pin.CurrentMediaType != m_mt)
  1367. {
  1368. m_Filter.ReconnectPin(_pin, m_mt);
  1369. }
  1370. }
  1371. return hr;
  1372. }
  1373. public override int OnReceive(ref IMediaSampleImpl _sample)
  1374. {
  1375. HRESULT hr;
  1376. lock (m_Lock)
  1377. {
  1378. hr = (HRESULT)base.OnReceive(ref _sample);
  1379. if (hr != S_OK) return hr;
  1380. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1381. {
  1382. hr = (HRESULT)(m_Filter.Pins[i] as InfTeeOutputPin).Deliver(ref _sample);
  1383. if (hr.Failed) return hr;
  1384. }
  1385. }
  1386. return hr;
  1387. }
  1388. #endregion
  1389. }
  1390. [ComVisible(true)]
  1391. public class InfTeeOutputPin : BaseOutputPin
  1392. {
  1393. #region Constants
  1394. private const int INFTEE_MAX_PINS = 1000;
  1395. #endregion
  1396. #region Valiables
  1397. private OutputQueue m_pOutputQueue = null;
  1398. private bool m_bInsideCheckMediaType = false;
  1399. #endregion
  1400. #region Constructor
  1401. public InfTeeOutputPin(string _name, BaseFilter _filter)
  1402. : base(_name, _filter)
  1403. {
  1404. }
  1405. #endregion
  1406. #region Overriden Methods
  1407. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  1408. {
  1409. return NOERROR;
  1410. }
  1411. public override int DecideAllocator(IMemInputPinImpl pPin, out IntPtr ppAlloc)
  1412. {
  1413. ppAlloc = IntPtr.Zero;
  1414. HRESULT hr = (HRESULT)pPin.NotifyAllocator((m_Filter as InfTeeFilter).Input.AllocatorPtr, true);
  1415. if (hr.Failed) return hr;
  1416. ppAlloc = (m_Filter as InfTeeFilter).Input.AllocatorPtr;
  1417. Marshal.AddRef(ppAlloc);
  1418. return hr;
  1419. }
  1420. public override int CheckMediaType(AMMediaType pmt)
  1421. {
  1422. lock (m_Lock)
  1423. {
  1424. HRESULT hr = NOERROR;
  1425. if (m_bInsideCheckMediaType == true) return hr;
  1426. m_bInsideCheckMediaType = true;
  1427. if (!(m_Filter as InfTeeFilter).Input.IsConnected)
  1428. {
  1429. m_bInsideCheckMediaType = false;
  1430. return VFW_E_NOT_CONNECTED;
  1431. }
  1432. hr = (HRESULT)(m_Filter as InfTeeFilter).Input.Connected.QueryAccept(pmt);
  1433. if (hr != NOERROR)
  1434. {
  1435. m_bInsideCheckMediaType = false;
  1436. return VFW_E_TYPE_NOT_ACCEPTED;
  1437. }
  1438. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1439. {
  1440. InfTeeOutputPin _pin = (m_Filter.Pins[i] as InfTeeOutputPin);
  1441. if (_pin.IsConnected && !object.ReferenceEquals(this, _pin))
  1442. {
  1443. hr = (HRESULT)_pin.QueryAccept(pmt);
  1444. if (hr != NOERROR)
  1445. {
  1446. m_bInsideCheckMediaType = false;
  1447. return VFW_E_TYPE_NOT_ACCEPTED;
  1448. }
  1449. }
  1450. }
  1451. }
  1452. m_bInsideCheckMediaType = false;
  1453. return NOERROR;
  1454. }
  1455. public override int EnumMediaTypes(out IntPtr ppEnum)
  1456. {
  1457. lock (m_Lock)
  1458. {
  1459. ppEnum = IntPtr.Zero;
  1460. if (!(m_Filter as InfTeeFilter).Input.IsConnected)
  1461. {
  1462. return VFW_E_NOT_CONNECTED;
  1463. }
  1464. return (m_Filter as InfTeeFilter).Input.Connected.EnumMediaTypes(out ppEnum);
  1465. }
  1466. }
  1467. public override int SetMediaType(AMMediaType mt)
  1468. {
  1469. lock (m_Lock)
  1470. {
  1471. if (!(m_Filter as InfTeeFilter).Input.IsConnected)
  1472. {
  1473. return VFW_E_NOT_CONNECTED;
  1474. }
  1475. return base.SetMediaType(mt);
  1476. }
  1477. }
  1478. public override int CompleteConnect(ref IPinImpl pReceivePin)
  1479. {
  1480. lock (m_Lock)
  1481. {
  1482. HRESULT hr = (HRESULT)base.CompleteConnect(ref pReceivePin);
  1483. if (hr.Failed) return hr;
  1484. if (m_mt != (m_Filter as InfTeeFilter).Input.CurrentMediaType)
  1485. {
  1486. hr = (HRESULT)m_Filter.ReconnectPin((m_Filter as InfTeeFilter).Input.Connected.UnknownPtr, m_mt);
  1487. if (FAILED(hr))
  1488. {
  1489. return hr;
  1490. }
  1491. }
  1492. int nCount = m_Filter.Pins.Count - 1;
  1493. for (int i = 1; i < m_Filter.Pins.Count; i++)
  1494. {
  1495. if (m_Filter.Pins[i].IsConnected) nCount--;
  1496. }
  1497. if (nCount == 0)
  1498. {
  1499. (m_Filter as InfTeeFilter).AddOutputPin();
  1500. }
  1501. return NOERROR;
  1502. }
  1503. }
  1504. public override int Active()
  1505. {
  1506. lock (m_Lock)
  1507. {
  1508. if (!IsConnected) return NOERROR;
  1509. if (m_pOutputQueue == null)
  1510. {
  1511. m_pOutputQueue = new OutputQueue(m_ConnectedPin);
  1512. }
  1513. return base.Active();
  1514. }
  1515. }
  1516. public override int Inactive()
  1517. {
  1518. lock (m_Lock)
  1519. {
  1520. if (m_pOutputQueue != null)
  1521. {
  1522. m_pOutputQueue.Dispose();
  1523. m_pOutputQueue = null;
  1524. }
  1525. return base.Inactive();
  1526. }
  1527. }
  1528. public override int Deliver(ref IMediaSampleImpl _sample)
  1529. {
  1530. if (m_pOutputQueue == null) return NOERROR;
  1531. return m_pOutputQueue.Receive(ref _sample);
  1532. }
  1533. public override int Notify(IntPtr pSelf, Quality q)
  1534. {
  1535. if (m_Filter.Pins.IndexOf(this) == 1)
  1536. {
  1537. if ((m_Filter as InfTeeFilter).Input.IsConnected)
  1538. {
  1539. IntPtr _ptr;
  1540. Guid _guid = typeof(IQualityControl).GUID;
  1541. if (S_OK == (m_Filter as InfTeeFilter).Input.Connected._QueryInterface(ref _guid,out _ptr))
  1542. {
  1543. IQualityControl _qcontrol = (IQualityControl)Marshal.GetObjectForIUnknown(_ptr);
  1544. _qcontrol.Notify(Marshal.GetIUnknownForObject(m_Filter), q);
  1545. Marshal.Release(_ptr);
  1546. }
  1547. }
  1548. }
  1549. return NOERROR;
  1550. }
  1551. public override int DeliverEndOfStream()
  1552. {
  1553. if (m_pOutputQueue == null) return NOERROR;
  1554. m_pOutputQueue.EOS();
  1555. return NOERROR;
  1556. }
  1557. public override int DeliverBeginFlush()
  1558. {
  1559. if (m_pOutputQueue == null) return NOERROR;
  1560. m_pOutputQueue.BeginFlush();
  1561. return NOERROR;
  1562. }
  1563. public override int DeliverEndFlush()
  1564. {
  1565. if (m_pOutputQueue == null) return NOERROR;
  1566. m_pOutputQueue.EndFlush();
  1567. return NOERROR;
  1568. }
  1569. public override int DeliverNewSegment(long tStart, long tStop, double dRate)
  1570. {
  1571. if (m_pOutputQueue == null) return NOERROR;
  1572. m_pOutputQueue.NewSegment(tStart, tStop, dRate);
  1573. return NOERROR;
  1574. }
  1575. #endregion
  1576. }
  1577. [ComVisible(true)]
  1578. [Guid("F45BC9DF-C9FD-42ce-8BED-9A2DDE053DF9")]
  1579. [AMovieSetup(true)]
  1580. [PropPageSetup(typeof(AboutForm))]
  1581. public class InfTeeFilter : BaseFilter
  1582. {
  1583. #region Properties
  1584. public InfTeeInputPin Input
  1585. {
  1586. get { return (InfTeeInputPin)Pins[0]; }
  1587. }
  1588. #endregion
  1589. #region Constructor
  1590. public InfTeeFilter()
  1591. : base("CSharp Inf Tee Filter")
  1592. {
  1593. }
  1594. #endregion
  1595. #region Overridden Methods
  1596. protected override int OnInitializePins()
  1597. {
  1598. AddPin(new InfTeeInputPin("In", this));
  1599. AddOutputPin();
  1600. return NOERROR;
  1601. }
  1602. public override int Run(long tStart)
  1603. {
  1604. lock (m_Lock)
  1605. {
  1606. int hr = base.Run(tStart);
  1607. if (!Input.IsConnected)
  1608. {
  1609. Input.EndOfStream();
  1610. }
  1611. return hr;
  1612. }
  1613. }
  1614. public override int Pause()
  1615. {
  1616. lock (m_Lock)
  1617. {
  1618. int hr = base.Pause();
  1619. if (!Input.IsConnected)
  1620. {
  1621. Input.EndOfStream();
  1622. }
  1623. return hr;
  1624. }
  1625. }
  1626. public override int Stop()
  1627. {
  1628. int hr = base.Stop();
  1629. m_State = FilterState.Stopped;
  1630. return hr;
  1631. }
  1632. #endregion
  1633. #region Methods
  1634. public void AddOutputPin()
  1635. {
  1636. AddPin(new InfTeeOutputPin("Output", this));
  1637. }
  1638. #endregion
  1639. }
  1640. #endregion
  1641. #region Null Renderer
  1642. [ComVisible(true)]
  1643. [Guid("8DE31E85-10FC-4088-8861-E0EC8E70744A")]
  1644. [AMovieSetup(true)]
  1645. [PropPageSetup(typeof(AboutForm))]
  1646. public class NullRendererFilter : BaseRendererFilter
  1647. {
  1648. #region Constructor
  1649. public NullRendererFilter()
  1650. : base("CSharp Null Renderer Filter")
  1651. {
  1652. }
  1653. #endregion
  1654. #region Overridden Methods
  1655. public override int CheckMediaType(AMMediaType pmt)
  1656. {
  1657. if (pmt.IsValid() && pmt.formatPtr != IntPtr.Zero)
  1658. {
  1659. return NOERROR;
  1660. }
  1661. return VFW_E_TYPE_NOT_ACCEPTED;
  1662. }
  1663. public override int DoRenderSample(ref IMediaSampleImpl pMediaSample)
  1664. {
  1665. return NOERROR;
  1666. }
  1667. #endregion
  1668. }
  1669. #endregion
  1670. #region WAVE Splitter
  1671. [ComVisible(false)]
  1672. public class WaveTrack : DemuxTrack
  1673. {
  1674. #region Variables
  1675. protected AMMediaType m_mt = null;
  1676. protected long m_ullReadPosition = 0;
  1677. protected int m_lSampleSize = 0;
  1678. protected long m_rtMediaPosition = 0;
  1679. #endregion
  1680. #region Constructor
  1681. public WaveTrack(WaveParser _parser, AMMediaType mt)
  1682. :base (_parser,TrackType.Audio)
  1683. {
  1684. m_mt = mt;
  1685. WaveFormatEx _wfx = m_mt;
  1686. m_lSampleSize = _wfx.nAvgBytesPerSec / 2;
  1687. }
  1688. #endregion
  1689. #region Overridden Methods
  1690. public override HRESULT SetMediaType(AMMediaType pmt)
  1691. {
  1692. if (pmt.majorType != m_mt.majorType) return VFW_E_TYPE_NOT_ACCEPTED;
  1693. if (pmt.formatPtr == IntPtr.Zero) return VFW_E_INVALIDMEDIATYPE;
  1694. if (pmt.subType != m_mt.subType) return VFW_E_TYPE_NOT_ACCEPTED;
  1695. if (pmt.formatType != m_mt.formatType) return VFW_E_TYPE_NOT_ACCEPTED;
  1696. return NOERROR;
  1697. }
  1698. public override HRESULT GetMediaType(int iPosition, ref AMMediaType pmt)
  1699. {
  1700. if (iPosition < 0) return E_INVALIDARG;
  1701. if (iPosition > 0) return VFW_S_NO_MORE_ITEMS;
  1702. pmt.Set(m_mt);
  1703. return NOERROR;
  1704. }
  1705. public override HRESULT SeekTrack(long _time)
  1706. {
  1707. WaveParser pParser = (WaveParser)m_pParser;
  1708. if (_time <= 0 || _time > pParser.Duration)
  1709. {
  1710. m_ullReadPosition = pParser.DataOffset;
  1711. }
  1712. else
  1713. {
  1714. WaveFormatEx _wfx = m_mt;
  1715. if (pParser.Duration > 0)
  1716. {
  1717. m_ullReadPosition = (pParser.Stream.TotalSize - pParser.DataOffset) * _time / pParser.Duration;
  1718. if (_wfx.nBlockAlign != 0)
  1719. {
  1720. m_ullReadPosition -= m_ullReadPosition % _wfx.nBlockAlign;
  1721. }
  1722. }
  1723. }
  1724. m_rtMediaPosition = _time;
  1725. return base.SeekTrack(_time);
  1726. }
  1727. public override PacketData GetNextPacket()
  1728. {
  1729. if (m_ullReadPosition < m_pParser.Stream.TotalSize)
  1730. {
  1731. PacketData _data = new PacketData();
  1732. _data.Position = m_ullReadPosition;
  1733. _data.Size = m_lSampleSize;
  1734. _data.SyncPoint = true;
  1735. _data.Start = m_rtMediaPosition;
  1736. _data.Stop = _data.Start + UNITS / 2;
  1737. m_ullReadPosition += m_lSampleSize;
  1738. m_rtMediaPosition = _data.Stop;
  1739. return _data;
  1740. }
  1741. return null;
  1742. }
  1743. #endregion
  1744. }
  1745. [ComVisible(false)]
  1746. public class WaveParser : FileParser
  1747. {
  1748. #region Structures
  1749. [StructLayout(LayoutKind.Sequential)]
  1750. private class OUTPUT_DATA_HEADER
  1751. {
  1752. public uint dwData = 0;
  1753. public uint dwDataLength = 0;
  1754. }
  1755. [StructLayout(LayoutKind.Sequential)]
  1756. private class OUTPUT_FILE_HEADER
  1757. {
  1758. public uint dwRiff = 0;
  1759. public uint dwFileSize = 0;
  1760. public uint dwWave = 0;
  1761. public uint dwFormat = 0;
  1762. public uint dwFormatLength = 0;
  1763. }
  1764. #endregion
  1765. #region Constants
  1766. private const uint RIFF_TAG = 0x46464952;
  1767. private const uint WAVE_TAG = 0x45564157;
  1768. private const uint FMT__TAG = 0x20746D66;
  1769. private const uint DATA_TAG = 0x61746164;
  1770. private const uint WAVE_FORMAT_PCM = 0x01;
  1771. #endregion
  1772. #region Variables
  1773. protected long m_llDataOffset = 0;
  1774. #endregion
  1775. #region Constructor
  1776. public WaveParser()
  1777. : base(false)
  1778. {
  1779. }
  1780. #endregion
  1781. #region Properties
  1782. public long DataOffset
  1783. {
  1784. get { return m_llDataOffset; }
  1785. }
  1786. #endregion
  1787. #region Overridden Methods
  1788. protected override HRESULT CheckFile()
  1789. {
  1790. m_Stream.Seek(0);
  1791. OUTPUT_FILE_HEADER _header = (OUTPUT_FILE_HEADER)m_Stream.ReadValue(typeof(OUTPUT_FILE_HEADER));
  1792. if (_header != null)
  1793. {
  1794. if (_header.dwRiff == RIFF_TAG && _header.dwWave == WAVE_TAG && _header.dwFormat == FMT__TAG)
  1795. {
  1796. return NOERROR;
  1797. }
  1798. }
  1799. return S_FALSE;
  1800. }
  1801. protected override HRESULT LoadTracks()
  1802. {
  1803. m_Stream.Seek(0);
  1804. OUTPUT_FILE_HEADER _header = (OUTPUT_FILE_HEADER)m_Stream.ReadValue(typeof(OUTPUT_FILE_HEADER));
  1805. if (_header.dwRiff == RIFF_TAG && _header.dwWave == WAVE_TAG && _header.dwFormat == FMT__TAG)
  1806. {
  1807. WaveFormatEx pwfx = (WaveFormatEx)m_Stream.ReadValue<WaveFormatEx>((int)_header.dwFormatLength);
  1808. if (pwfx == null) return E_UNEXPECTED;
  1809. if (pwfx.nBlockAlign == 0)
  1810. {
  1811. pwfx.nBlockAlign = (ushort)(pwfx.nChannels * pwfx.wBitsPerSample / 8);
  1812. }
  1813. if (pwfx.nAvgBytesPerSec == 0)
  1814. {
  1815. pwfx.nAvgBytesPerSec = pwfx.nSamplesPerSec * pwfx.nBlockAlign;
  1816. }
  1817. AMMediaType mt = new AMMediaType();
  1818. mt.majorType = MediaType.Audio;
  1819. mt.subType = MediaSubType.PCM;
  1820. mt.sampleSize = pwfx.nBlockAlign;
  1821. mt.fixedSizeSamples = true;
  1822. mt.SetFormat(pwfx);
  1823. m_Tracks.Add(new WaveTrack(this, mt));
  1824. HRESULT hr = E_UNEXPECTED;
  1825. OUTPUT_DATA_HEADER _data = (OUTPUT_DATA_HEADER)m_Stream.ReadValue<OUTPUT_DATA_HEADER>();
  1826. if (_data.dwData == DATA_TAG)
  1827. {
  1828. hr = NOERROR;
  1829. m_llDataOffset = m_Stream.Position;
  1830. if (pwfx.nAvgBytesPerSec != 0)
  1831. {
  1832. m_rtDuration = (UNITS * (m_Stream.TotalSize - m_llDataOffset)) / pwfx.nAvgBytesPerSec;
  1833. }
  1834. }
  1835. return hr;
  1836. }
  1837. return S_FALSE;
  1838. }
  1839. #endregion
  1840. }
  1841. [ComVisible(true)]
  1842. [Guid("E097F784-8D20-4dd7-A2C8-D54350DBBE99")]
  1843. [AMovieSetup(true)]
  1844. [PropPageSetup(typeof(AboutForm))]
  1845. public class WAVESplitterFilter : BaseSplitterFilterTemplate<WaveParser>
  1846. {
  1847. public WAVESplitterFilter()
  1848. : base("CSharp WAVE Splitter")
  1849. {
  1850. }
  1851. }
  1852. [ComVisible(true)]
  1853. [Guid("0C9925E8-F4D6-4d27-9253-A09F9D9123A6")]
  1854. [AMovieSetup(true)]
  1855. [PropPageSetup(typeof(AboutForm))]
  1856. public class WAVESourceFilter : BaseSourceFilterTemplate<WaveParser>
  1857. {
  1858. public WAVESourceFilter()
  1859. : base("CSharp WAVE Source")
  1860. {
  1861. }
  1862. }
  1863. #endregion
  1864. #region DSNetwork
  1865. [ComVisible(true)]
  1866. [System.Security.SuppressUnmanagedCodeSecurity]
  1867. [Guid("96D8A0B7-8EE7-4325-98D4-BB7C66F27B1A")]
  1868. [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  1869. public interface INetworkConfig
  1870. {
  1871. string IP { get; set; }
  1872. int Port { get; set; }
  1873. }
  1874. [ComVisible(true)]
  1875. [Guid("E15A7277-13C6-4b05-A50C-C6E85E4348C8")]
  1876. [AMovieSetup(true)]
  1877. [PropPageSetup(typeof(NetworkForm),typeof(AboutForm))]
  1878. public class NetworkSyncFilter : BaseRendererFilter, INetworkConfig
  1879. {
  1880. #region Variables
  1881. private object m_csLockNetwork = new object();
  1882. private string m_sIP = "224.0.0.1";
  1883. private int m_iPort = 1234;
  1884. private IPEndPoint m_EndPoint = null;
  1885. private Socket m_Socket = null;
  1886. private MemoryStream m_Stream = null;
  1887. #endregion
  1888. #region Constructor
  1889. public NetworkSyncFilter()
  1890. : base("CSharp Network Sync Filter")
  1891. {
  1892. }
  1893. ~NetworkSyncFilter()
  1894. {
  1895. if (m_Socket != null)
  1896. {
  1897. m_Socket.Close();
  1898. }
  1899. }
  1900. #endregion
  1901. #region Overridden Methods
  1902. public override int Pause()
  1903. {
  1904. if (m_State == FilterState.Stopped)
  1905. {
  1906. m_Stream = new MemoryStream();
  1907. Connect();
  1908. }
  1909. return base.Pause();
  1910. }
  1911. public override int Stop()
  1912. {
  1913. int hr = base.Stop();
  1914. if (m_Stream != null)
  1915. {
  1916. m_Stream.Dispose();
  1917. m_Stream = null;
  1918. }
  1919. return hr;
  1920. }
  1921. public override int CheckMediaType(AMMediaType pmt)
  1922. {
  1923. if (pmt.majorType != MediaType.Video)
  1924. {
  1925. return VFW_E_TYPE_NOT_ACCEPTED;
  1926. }
  1927. if (pmt.subType != MediaSubType.RGB24)
  1928. {
  1929. return VFW_E_TYPE_NOT_ACCEPTED;
  1930. }
  1931. if (pmt.formatType != FormatType.VideoInfo)
  1932. {
  1933. return VFW_E_TYPE_NOT_ACCEPTED;
  1934. }
  1935. if (pmt.formatPtr == IntPtr.Zero)
  1936. {
  1937. return VFW_E_TYPE_NOT_ACCEPTED;
  1938. }
  1939. return NOERROR;
  1940. }
  1941. public override int DoRenderSample(ref IMediaSampleImpl pMediaSample)
  1942. {
  1943. if (m_Stream != null)
  1944. {
  1945. IntPtr _ptr;
  1946. pMediaSample.GetPointer(out _ptr);
  1947. BitmapInfoHeader _bmi = (BitmapInfoHeader)InputPin.CurrentMediaType;
  1948. PixelFormat _format = (_bmi.BitCount == 32 ? PixelFormat.Format32bppRgb : PixelFormat.Format24bppRgb);
  1949. Bitmap _bmp = new Bitmap(_bmi.Width, Math.Abs(_bmi.Height), _bmi.Width * _bmi.BitCount / 8, _format, _ptr);
  1950. m_Stream.SetLength(0);
  1951. _bmp.Save(m_Stream, ImageFormat.Jpeg);
  1952. lock (m_csLockNetwork)
  1953. {
  1954. if (m_EndPoint != null)
  1955. {
  1956. m_Stream.Position = 0;
  1957. try
  1958. {
  1959. m_Socket.SendBufferSize = (int)m_Stream.Length;
  1960. m_Socket.SendTo(m_Stream.ToArray(), m_EndPoint);
  1961. }
  1962. catch (Exception _exception)
  1963. {
  1964. TRACE(_exception.Message);
  1965. m_EndPoint = null;
  1966. }
  1967. }
  1968. }
  1969. }
  1970. return NOERROR;
  1971. }
  1972. #endregion
  1973. #region Methods
  1974. public void Connect()
  1975. {
  1976. lock (m_csLockNetwork)
  1977. {
  1978. if (m_Socket != null)
  1979. {
  1980. m_Socket.Close();
  1981. m_Socket = null;
  1982. }
  1983. m_EndPoint = null;
  1984. try
  1985. {
  1986. m_Socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
  1987. m_Socket.MulticastLoopback = true;
  1988. m_Socket.EnableBroadcast = true;
  1989. IPAddress _ip = IPAddress.Parse(m_sIP);
  1990. m_Socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(_ip));
  1991. m_Socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 5);
  1992. m_EndPoint = new IPEndPoint(_ip, m_iPort);
  1993. }
  1994. catch (Exception _exception)
  1995. {
  1996. TRACE(_exception.Message);
  1997. }
  1998. }
  1999. }
  2000. #endregion
  2001. #region INetworkConfig Members
  2002. public string IP
  2003. {
  2004. get
  2005. {
  2006. return m_sIP;
  2007. }
  2008. set
  2009. {
  2010. if (m_sIP != value)
  2011. {
  2012. m_sIP = value;
  2013. if (m_State != FilterState.Stopped)
  2014. {
  2015. Connect();
  2016. }
  2017. }
  2018. }
  2019. }
  2020. public int Port
  2021. {
  2022. get
  2023. {
  2024. return m_iPort;
  2025. }
  2026. set
  2027. {
  2028. if (m_iPort != value)
  2029. {
  2030. m_iPort = value;
  2031. if (m_State != FilterState.Stopped)
  2032. {
  2033. Connect();
  2034. }
  2035. }
  2036. }
  2037. }
  2038. #endregion
  2039. }
  2040. [ComVisible(true)]
  2041. public class NetworkStream : SourceStream
  2042. {
  2043. #region Constructor
  2044. public NetworkStream(string _name, NetworkSourceFilter _filter)
  2045. :base(_name,_filter)
  2046. {
  2047. }
  2048. #endregion
  2049. #region Overridden Methods
  2050. public override int GetMediaType(ref AMMediaType pMediaType)
  2051. {
  2052. return (m_Filter as NetworkSourceFilter).GetMediaType(ref pMediaType);
  2053. }
  2054. public override int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  2055. {
  2056. if (!IsConnected) return VFW_E_NOT_CONNECTED;
  2057. return (m_Filter as NetworkSourceFilter).DecideBufferSize(ref pAlloc, ref prop);
  2058. }
  2059. public override int FillBuffer(ref IMediaSampleImpl pSample)
  2060. {
  2061. return (m_Filter as NetworkSourceFilter).FillBuffer(ref pSample);
  2062. }
  2063. #endregion
  2064. }
  2065. [ComVisible(true)]
  2066. [Guid("FDE01FF1-D110-46a8-AB87-2341E4809DE5")]
  2067. [AMovieSetup(true)]
  2068. [PropPageSetup(typeof(NetworkForm), typeof(AboutForm))]
  2069. public class NetworkSourceFilter : BaseSourceFilter, INetworkConfig
  2070. {
  2071. #region Variables
  2072. private string m_sIP = "224.0.0.1";
  2073. private int m_iPort = 1234;
  2074. protected object m_csLockNetwork = new object();
  2075. protected Image m_pBitmap = null;
  2076. protected long m_nAvgTimePerFrame = UNITS / 20;
  2077. protected long m_lLastSampleTime = 0;
  2078. protected Thread m_ReceiveThread = null;
  2079. protected ManualResetEvent m_evQuit = new ManualResetEvent(false);
  2080. #endregion
  2081. #region Constructor
  2082. public NetworkSourceFilter()
  2083. :base("CSharp Network Source Filter")
  2084. {
  2085. }
  2086. ~NetworkSourceFilter()
  2087. {
  2088. if (m_pBitmap != null)
  2089. {
  2090. m_pBitmap.Dispose();
  2091. m_pBitmap = null;
  2092. }
  2093. }
  2094. #endregion
  2095. #region Overridden Methods
  2096. protected override int OnInitializePins()
  2097. {
  2098. AddPin(new NetworkStream("Output", this));
  2099. return NOERROR;
  2100. }
  2101. public override int Pause()
  2102. {
  2103. if (m_State == FilterState.Stopped)
  2104. {
  2105. m_lLastSampleTime = 0;
  2106. }
  2107. return base.Pause();
  2108. }
  2109. public override int JoinFilterGraph(IntPtr pGraph, string pName)
  2110. {
  2111. if (pGraph != IntPtr.Zero)
  2112. {
  2113. StartThread();
  2114. }
  2115. else
  2116. {
  2117. StopThread();
  2118. }
  2119. return base.JoinFilterGraph(pGraph, pName);
  2120. }
  2121. #endregion
  2122. #region Methods
  2123. public void StartThread()
  2124. {
  2125. if (m_ReceiveThread == null || !m_ReceiveThread.IsAlive)
  2126. {
  2127. m_evQuit.Reset();
  2128. m_ReceiveThread = new Thread(new ThreadStart(ReceiveThreadProc));
  2129. m_ReceiveThread.Start();
  2130. }
  2131. }
  2132. public void StopThread()
  2133. {
  2134. if (m_ReceiveThread != null)
  2135. {
  2136. m_evQuit.Set();
  2137. if (!m_ReceiveThread.Join(1000))
  2138. {
  2139. m_ReceiveThread.Abort();
  2140. }
  2141. m_ReceiveThread = null;
  2142. }
  2143. }
  2144. public void Connect()
  2145. {
  2146. StopThread();
  2147. StartThread();
  2148. }
  2149. private void ReceiveThreadProc()
  2150. {
  2151. string _ip = m_sIP;
  2152. int _port = m_iPort;
  2153. Socket _socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
  2154. _socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
  2155. IPEndPoint _EndPoint = new IPEndPoint(IPAddress.Any, _port);
  2156. _socket.Bind(_EndPoint);
  2157. _socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress.Parse(_ip)));
  2158. Stream _stream = new MemoryStream();
  2159. byte[] _data = new byte[1920 * 1080 * 4];
  2160. try
  2161. {
  2162. while (!m_evQuit.WaitOne(0, false))
  2163. {
  2164. EndPoint ep = _EndPoint;
  2165. int iLength = _socket.ReceiveFrom(_data, SocketFlags.None, ref ep);
  2166. _stream.SetLength(0);
  2167. _stream.Write(_data, 0, _data.Length);
  2168. _stream.Position = 0;
  2169. Image img = Image.FromStream(_stream);
  2170. if (img != null)
  2171. {
  2172. lock (m_csLockNetwork)
  2173. {
  2174. if (m_pBitmap != null)
  2175. {
  2176. m_pBitmap.Dispose();
  2177. }
  2178. m_pBitmap = img;
  2179. }
  2180. }
  2181. }
  2182. }
  2183. catch (Exception _exception)
  2184. {
  2185. if (!(_exception is ThreadAbortException))
  2186. {
  2187. TRACE(_exception.Message);
  2188. }
  2189. }
  2190. _socket.Close();
  2191. _socket = null;
  2192. _stream.Dispose();
  2193. }
  2194. public int GetMediaType(ref AMMediaType pMediaType)
  2195. {
  2196. lock (m_csLockNetwork)
  2197. {
  2198. if (m_pBitmap == null) return E_UNEXPECTED;
  2199. pMediaType.majorType = DirectShow.MediaType.Video;
  2200. pMediaType.subType = DirectShow.MediaSubType.RGB32;
  2201. pMediaType.formatType = DirectShow.FormatType.VideoInfo;
  2202. VideoInfoHeader vih = new VideoInfoHeader();
  2203. vih.AvgTimePerFrame = m_nAvgTimePerFrame;
  2204. vih.BmiHeader = new BitmapInfoHeader();
  2205. vih.BmiHeader.Size = Marshal.SizeOf(typeof(BitmapInfoHeader));
  2206. vih.BmiHeader.Compression = 0;
  2207. vih.BmiHeader.BitCount = 32;
  2208. vih.BmiHeader.Width = m_pBitmap.Width;
  2209. vih.BmiHeader.Height = m_pBitmap.Height;
  2210. vih.BmiHeader.Planes = 1;
  2211. vih.BmiHeader.ImageSize = vih.BmiHeader.Width * vih.BmiHeader.Height * vih.BmiHeader.BitCount / 8;
  2212. vih.SrcRect = new DsRect();
  2213. vih.TargetRect = new DsRect();
  2214. AMMediaType.SetFormat(ref pMediaType, ref vih);
  2215. pMediaType.fixedSizeSamples = true;
  2216. pMediaType.sampleSize = vih.BmiHeader.ImageSize;
  2217. }
  2218. return NOERROR;
  2219. }
  2220. public int DecideBufferSize(ref IMemAllocatorImpl pAlloc, ref AllocatorProperties prop)
  2221. {
  2222. AllocatorProperties _actual = new AllocatorProperties();
  2223. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  2224. prop.cbBuffer = _bmi.GetBitmapSize();
  2225. if (prop.cbBuffer < _bmi.ImageSize)
  2226. {
  2227. prop.cbBuffer = _bmi.ImageSize;
  2228. }
  2229. prop.cBuffers = 1;
  2230. int hr = pAlloc.SetProperties(prop, _actual);
  2231. return hr;
  2232. }
  2233. public int FillBuffer(ref IMediaSampleImpl _sample)
  2234. {
  2235. BitmapInfoHeader _bmi = (BitmapInfoHeader)Pins[0].CurrentMediaType;
  2236. IntPtr _ptr;
  2237. _sample.GetPointer(out _ptr);
  2238. Bitmap _bmp = new Bitmap(_bmi.Width, _bmi.Height, _bmi.Width * 4, PixelFormat.Format32bppRgb, _ptr);
  2239. Graphics _graphics = Graphics.FromImage(_bmp);
  2240. lock (m_csLockNetwork)
  2241. {
  2242. _graphics.DrawImage(m_pBitmap, new Rectangle(0, 0, _bmp.Width, _bmp.Height), 0, 0, m_pBitmap.Width, m_pBitmap.Height, GraphicsUnit.Pixel);
  2243. }
  2244. _graphics.Dispose();
  2245. _bmp.Dispose();
  2246. _sample.SetActualDataLength(_bmi.ImageSize);
  2247. _sample.SetSyncPoint(true);
  2248. long _stop = m_lLastSampleTime + m_nAvgTimePerFrame;
  2249. _sample.SetTime((DsLong)m_lLastSampleTime, (DsLong)_stop);
  2250. m_lLastSampleTime = _stop;
  2251. return NOERROR;
  2252. }
  2253. #endregion
  2254. #region INetworkConfig Members
  2255. public string IP
  2256. {
  2257. get
  2258. {
  2259. return m_sIP;
  2260. }
  2261. set
  2262. {
  2263. if (m_sIP != value)
  2264. {
  2265. m_sIP = value;
  2266. Connect();
  2267. }
  2268. }
  2269. }
  2270. public int Port
  2271. {
  2272. get
  2273. {
  2274. return m_iPort;
  2275. }
  2276. set
  2277. {
  2278. if (m_iPort != value)
  2279. {
  2280. m_iPort = value;
  2281. Connect();
  2282. }
  2283. }
  2284. }
  2285. #endregion
  2286. }
  2287. #endregion
  2288. }