DirectShow.cs 206 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Drawing;
  4. using System.Runtime.InteropServices.ComTypes;
  5. using Sonic;
  6. // namespace for export direct show interfaces
  7. namespace DirectShow
  8. {
  9. [ComVisible(false)]
  10. public static class MediaType
  11. {
  12. public static readonly Guid Null = Guid.Empty;
  13. /// <summary> MEDIATYPE_Video 'vids' </summary>
  14. public static readonly Guid Video = new Guid(0x73646976, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  15. /// <summary> MEDIATYPE_Interleaved 'iavs' </summary>
  16. public static readonly Guid Interleaved = new Guid(0x73766169, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  17. /// <summary> MEDIATYPE_Audio 'auds' </summary>
  18. public static readonly Guid Audio = new Guid(0x73647561, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  19. /// <summary> MEDIATYPE_Text 'txts' </summary>
  20. public static readonly Guid Texts = new Guid(0x73747874, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  21. /// <summary> MEDIATYPE_Stream </summary>
  22. public static readonly Guid Stream = new Guid(0xe436eb83, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  23. /// <summary> MEDIATYPE_VBI </summary>
  24. public static readonly Guid VBI = new Guid(0xf72a76e1, 0xeb0a, 0x11d0, 0xac, 0xe4, 0x00, 0x00, 0xc0, 0xcc, 0x16, 0xba);
  25. /// <summary> MEDIATYPE_Midi </summary>
  26. public static readonly Guid Midi = new Guid(0x7364696D, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  27. /// <summary> MEDIATYPE_File </summary>
  28. public static readonly Guid File = new Guid(0x656c6966, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  29. /// <summary> MEDIATYPE_ScriptCommand </summary>
  30. public static readonly Guid ScriptCommand = new Guid(0x73636d64, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  31. /// <summary> MEDIATYPE_AUXLine21Data </summary>
  32. public static readonly Guid AuxLine21Data = new Guid(0x670aea80, 0x3a82, 0x11d0, 0xb7, 0x9b, 0x00, 0xaa, 0x00, 0x37, 0x67, 0xa7);
  33. /// <summary> MEDIATYPE_Timecode </summary>
  34. public static readonly Guid Timecode = new Guid(0x0482dee3, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  35. /// <summary> MEDIATYPE_LMRT </summary>
  36. public static readonly Guid LMRT = new Guid(0x74726c6d, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  37. /// <summary> MEDIATYPE_URL_STREAM </summary>
  38. public static readonly Guid URLStream = new Guid(0x736c7275, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  39. /// <summary> MEDIATYPE_AnalogVideo </summary>
  40. public static readonly Guid AnalogVideo = new Guid(0x0482dde1, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  41. /// <summary> MEDIATYPE_AnalogAudio </summary>
  42. public static readonly Guid AnalogAudio = new Guid(0x0482dee1, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  43. /// <summary> MEDIATYPE_MPEG2_SECTIONS </summary>
  44. public static readonly Guid Mpeg2Sections = new Guid(0x455f176c, 0x4b06, 0x47ce, 0x9a, 0xef, 0x8c, 0xae, 0xf7, 0x3d, 0xf7, 0xb5);
  45. /// <summary> MEDIATYPE_DTVCCData </summary>
  46. public static readonly Guid DTVCCData = new Guid(0xfb77e152, 0x53b2, 0x499c, 0xb4, 0x6b, 0x50, 0x9f, 0xc3, 0x3e, 0xdf, 0xd7);
  47. /// <summary> MEDIATYPE_MSTVCaption </summary>
  48. public static readonly Guid MSTVCaption = new Guid(0xB88B8A89, 0xB049, 0x4C80, 0xAD, 0xCF, 0x58, 0x98, 0x98, 0x5E, 0x22, 0xC1);
  49. /// <summary> MEDIATYPE_AUXTeletextPage </summary>
  50. public static readonly Guid AUXTeletextPage = new Guid(0x11264acb, 0x37de, 0x4eba, 0x8c, 0x35, 0x7f, 0x4, 0xa1, 0xa6, 0x83, 0x32);
  51. /// <summary> MEDIATYPE_CC_CONTAINER </summary>
  52. public static readonly Guid CC_Container = new Guid(0xaeb312e9, 0x3357, 0x43ca, 0xb7, 0x1, 0x97, 0xec, 0x19, 0x8e, 0x2b, 0x62);
  53. }
  54. [ComVisible(false)]
  55. public static class MediaSubType
  56. {
  57. public static readonly Guid Null = Guid.Empty;
  58. /// <summary> MEDIASUBTYPE_CLPL </summary>
  59. public static readonly Guid CLPL = new Guid(0x4C504C43, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  60. /// <summary> MEDIASUBTYPE_YUYV </summary>
  61. public static readonly Guid YUYV = new Guid(0x56595559, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  62. /// <summary> MEDIASUBTYPE_IYUV </summary>
  63. public static readonly Guid IYUV = new Guid(0x56555949, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  64. /// <summary> MEDIASUBTYPE_YVU9 </summary>
  65. public static readonly Guid YVU9 = new Guid(0x39555659, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  66. /// <summary> MEDIASUBTYPE_Y411 </summary>
  67. public static readonly Guid Y411 = new Guid(0x31313459, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  68. /// <summary> MEDIASUBTYPE_Y41P </summary>
  69. public static readonly Guid Y41P = new Guid(0x50313459, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  70. /// <summary> MEDIASUBTYPE_YUY2 </summary>
  71. public static readonly Guid YUY2 = new Guid(0x32595559, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  72. /// <summary> MEDIASUBTYPE_YVYU </summary>
  73. public static readonly Guid YVYU = new Guid(0x55595659, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  74. /// <summary> MEDIASUBTYPE_UYVY </summary>
  75. public static readonly Guid UYVY = new Guid(0x59565955, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  76. /// <summary> MEDIASUBTYPE_Y211 </summary>
  77. public static readonly Guid Y211 = new Guid(0x31313259, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  78. /// <summary> MEDIASUBTYPE_CLJR </summary>
  79. public static readonly Guid CLJR = new Guid(0x524a4c43, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  80. /// <summary> MEDIASUBTYPE_IF09 </summary>
  81. public static readonly Guid IF09 = new Guid(0x39304649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  82. /// <summary> MEDIASUBTYPE_CPLA </summary>
  83. public static readonly Guid CPLA = new Guid(0x414c5043, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  84. /// <summary> MEDIASUBTYPE_MJPG </summary>
  85. public static readonly Guid MJPG = new Guid(0x47504A4D, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  86. /// <summary> MEDIASUBTYPE_TVMJ </summary>
  87. public static readonly Guid TVMJ = new Guid(0x4A4D5654, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  88. /// <summary> MEDIASUBTYPE_WAKE </summary>
  89. public static readonly Guid WAKE = new Guid(0x454B4157, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  90. /// <summary> MEDIASUBTYPE_CFCC </summary>
  91. public static readonly Guid CFCC = new Guid(0x43434643, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  92. /// <summary> MEDIASUBTYPE_IJPG </summary>
  93. public static readonly Guid IJPG = new Guid(0x47504A49, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  94. /// <summary> MEDIASUBTYPE_Plum </summary>
  95. public static readonly Guid PLUM = new Guid(0x6D756C50, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  96. /// <summary> MEDIASUBTYPE_DVCS </summary>
  97. public static readonly Guid DVCS = new Guid(0x53435644, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  98. /// <summary> MEDIASUBTYPE_DVSD </summary>
  99. public static readonly Guid DVSD = new Guid(0x44535644, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  100. /// <summary> MEDIASUBTYPE_MDVF </summary>
  101. public static readonly Guid MDVF = new Guid(0x4656444D, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  102. /// <summary> MEDIASUBTYPE_RGB1 </summary>
  103. public static readonly Guid RGB1 = new Guid(0xe436eb78, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  104. /// <summary> MEDIASUBTYPE_RGB4 </summary>
  105. public static readonly Guid RGB4 = new Guid(0xe436eb79, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  106. /// <summary> MEDIASUBTYPE_RGB8 </summary>
  107. public static readonly Guid RGB8 = new Guid(0xe436eb7a, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  108. /// <summary> MEDIASUBTYPE_RGB565 </summary>
  109. public static readonly Guid RGB565 = new Guid(0xe436eb7b, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  110. /// <summary> MEDIASUBTYPE_RGB555 </summary>
  111. public static readonly Guid RGB555 = new Guid(0xe436eb7c, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  112. /// <summary> MEDIASUBTYPE_RGB24 </summary>
  113. public static readonly Guid RGB24 = new Guid(0xe436eb7d, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  114. /// <summary> MEDIASUBTYPE_RGB32 </summary>
  115. public static readonly Guid RGB32 = new Guid(0xe436eb7e, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  116. /// <summary> MEDIASUBTYPE_ARGB1555 </summary>
  117. public static readonly Guid ARGB1555 = new Guid(0x297c55af, 0xe209, 0x4cb3, 0xb7, 0x57, 0xc7, 0x6d, 0x6b, 0x9c, 0x88, 0xa8);
  118. /// <summary> MEDIASUBTYPE_ARGB4444 </summary>
  119. public static readonly Guid ARGB4444 = new Guid(0x6e6415e6, 0x5c24, 0x425f, 0x93, 0xcd, 0x80, 0x10, 0x2b, 0x3d, 0x1c, 0xca);
  120. /// <summary> MEDIASUBTYPE_ARGB32 </summary>
  121. public static readonly Guid ARGB32 = new Guid(0x773c9ac0, 0x3274, 0x11d0, 0xb7, 0x24, 0x00, 0xaa, 0x00, 0x6c, 0x1a, 0x01);
  122. /// <summary> MEDIASUBTYPE_A2R10G10B10 </summary>
  123. public static readonly Guid A2R10G10B10 = new Guid(0x2f8bb76d, 0xb644, 0x4550, 0xac, 0xf3, 0xd3, 0x0c, 0xaa, 0x65, 0xd5, 0xc5);
  124. /// <summary> MEDIASUBTYPE_A2B10G10R10 </summary>
  125. public static readonly Guid A2B10G10R10 = new Guid(0x576f7893, 0xbdf6, 0x48c4, 0x87, 0x5f, 0xae, 0x7b, 0x81, 0x83, 0x45, 0x67);
  126. /// <summary> MEDIASUBTYPE_AYUV </summary>
  127. public static readonly Guid AYUV = new Guid(0x56555941, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  128. /// <summary> MEDIASUBTYPE_AI44 </summary>
  129. public static readonly Guid AI44 = new Guid(0x34344941, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  130. /// <summary> MEDIASUBTYPE_IA44 </summary>
  131. public static readonly Guid IA44 = new Guid(0x34344149, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  132. /// <summary> MEDIASUBTYPE_RGB32_D3D_DX7_RT </summary>
  133. public static readonly Guid RGB32_D3D_DX7_RT = new Guid(0x32335237, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  134. /// <summary> MEDIASUBTYPE_RGB16_D3D_DX7_RT </summary>
  135. public static readonly Guid RGB16_D3D_DX7_RT = new Guid(0x36315237, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  136. /// <summary> MEDIASUBTYPE_ARGB32_D3D_DX7_RT </summary>
  137. public static readonly Guid ARGB32_D3D_DX7_RT = new Guid(0x38384137, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  138. /// <summary> MEDIASUBTYPE_ARGB4444_D3D_DX7_RT </summary>
  139. public static readonly Guid ARGB4444_D3D_DX7_RT = new Guid(0x34344137, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  140. /// <summary> MEDIASUBTYPE_ARGB1555_D3D_DX7_RT </summary>
  141. public static readonly Guid ARGB1555_D3D_DX7_RT = new Guid(0x35314137, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  142. /// <summary> MEDIASUBTYPE_RGB32_D3D_DX9_RT </summary>
  143. public static readonly Guid RGB32_D3D_DX9_RT = new Guid(0x32335239, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  144. /// <summary> MEDIASUBTYPE_RGB16_D3D_DX9_RT </summary>
  145. public static readonly Guid RGB16_D3D_DX9_RT = new Guid(0x36315239, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  146. /// <summary> MEDIASUBTYPE_ARGB32_D3D_DX9_RT </summary>
  147. public static readonly Guid ARGB32_D3D_DX9_RT = new Guid(0x38384139, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  148. /// <summary> MEDIASUBTYPE_ARGB4444_D3D_DX9_RT </summary>
  149. public static readonly Guid ARGB4444_D3D_DX9_RT = new Guid(0x34344139, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  150. /// <summary> MEDIASUBTYPE_ARGB1555_D3D_DX9_RT </summary>
  151. public static readonly Guid ARGB1555_D3D_DX9_RT = new Guid(0x35314139, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  152. /// <summary> MEDIASUBTYPE_YV12 </summary>
  153. public static readonly Guid YV12 = new Guid(0x32315659, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  154. /// <summary> MEDIASUBTYPE_NV12 </summary>
  155. public static readonly Guid NV12 = new Guid(0x3231564E, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  156. /// <summary> MEDIASUBTYPE_IMC1 </summary>
  157. public static readonly Guid IMC1 = new Guid(0x31434D49, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  158. /// <summary> MEDIASUBTYPE_IMC2 </summary>
  159. public static readonly Guid IMC2 = new Guid(0x32434D49, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  160. /// <summary> MEDIASUBTYPE_IMC3 </summary>
  161. public static readonly Guid IMC3 = new Guid(0x33434D49, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  162. /// <summary> MEDIASUBTYPE_IMC4 </summary>
  163. public static readonly Guid IMC4 = new Guid(0x34434D49, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  164. /// <summary> MEDIASUBTYPE_S340 </summary>
  165. public static readonly Guid S340 = new Guid(0x30343353, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  166. /// <summary> MEDIASUBTYPE_S342 </summary>
  167. public static readonly Guid S342 = new Guid(0x32343353, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  168. /// <summary> MEDIASUBTYPE_Overlay </summary>
  169. public static readonly Guid Overlay = new Guid(0xe436eb7f, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  170. /// <summary> MEDIASUBTYPE_MPEG1Packet </summary>
  171. public static readonly Guid MPEG1Packet = new Guid(0xe436eb80, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  172. /// <summary> MEDIASUBTYPE_MPEG1Payload </summary>
  173. public static readonly Guid MPEG1Payload = new Guid(0xe436eb81, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  174. /// <summary> MEDIASUBTYPE_MPEG1AudioPayload </summary>
  175. public static readonly Guid MPEG1AudioPayload = new Guid(0x00000050, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
  176. /// <summary> MEDIATYPE_MPEG1SystemStream </summary>
  177. public static readonly Guid MPEG1SystemStream = new Guid(0xe436eb82, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  178. /// <summary> MEDIASUBTYPE_MPEG1System </summary>
  179. public static readonly Guid MPEG1System = new Guid(0xe436eb84, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  180. /// <summary> MEDIASUBTYPE_MPEG1VideoCD </summary>
  181. public static readonly Guid MPEG1VideoCD = new Guid(0xe436eb85, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  182. /// <summary> MEDIASUBTYPE_MPEG1Video </summary>
  183. public static readonly Guid MPEG1Video = new Guid(0xe436eb86, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  184. /// <summary> MEDIASUBTYPE_MPEG1Audio </summary>
  185. public static readonly Guid MPEG1Audio = new Guid(0xe436eb87, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  186. /// <summary> MEDIASUBTYPE_Avi </summary>
  187. public static readonly Guid Avi = new Guid(0xe436eb88, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  188. /// <summary> MEDIASUBTYPE_Asf </summary>
  189. public static readonly Guid Asf = new Guid(0x3db80f90, 0x9412, 0x11d1, 0xad, 0xed, 0x00, 0x00, 0xf8, 0x75, 0x4b, 0x99);
  190. /// <summary> MEDIASUBTYPE_QTMovie </summary>
  191. public static readonly Guid QTMovie = new Guid(0xe436eb89, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  192. /// <summary> MEDIASUBTYPE_QTRpza </summary>
  193. public static readonly Guid QTRpza = new Guid(0x617a7072, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  194. /// <summary> MEDIASUBTYPE_QTSmc </summary>
  195. public static readonly Guid QTSmc = new Guid(0x20636d73, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  196. /// <summary> MEDIASUBTYPE_QTRle </summary>
  197. public static readonly Guid QTRle = new Guid(0x20656c72, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  198. /// <summary> MEDIASUBTYPE_QTJpeg </summary>
  199. public static readonly Guid QTJpeg = new Guid(0x6765706a, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  200. /// <summary> MEDIASUBTYPE_PCMAudio_Obsolete </summary>
  201. public static readonly Guid PCMAudio_Obsolete = new Guid(0xe436eb8a, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  202. /// <summary> MEDIASUBTYPE_PCM </summary>
  203. public static readonly Guid PCM = new Guid(0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
  204. /// <summary> MEDIASUBTYPE_WAVE </summary>
  205. public static readonly Guid WAVE = new Guid(0xe436eb8b, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  206. /// <summary> MEDIASUBTYPE_AU </summary>
  207. public static readonly Guid AU = new Guid(0xe436eb8c, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  208. /// <summary> MEDIASUBTYPE_AIFF </summary>
  209. public static readonly Guid AIFF = new Guid(0xe436eb8d, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  210. /// <summary> MEDIASUBTYPE_dvhd </summary>
  211. public static readonly Guid dvhd = new Guid(0x64687664, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  212. /// <summary> MEDIASUBTYPE_dvsl </summary>
  213. public static readonly Guid dvsl = new Guid(0x6c737664, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  214. /// <summary> MEDIASUBTYPE_dv25 </summary>
  215. public static readonly Guid dv25 = new Guid(0x35327664, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  216. /// <summary> MEDIASUBTYPE_dv50 </summary>
  217. public static readonly Guid dv50 = new Guid(0x30357664, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  218. /// <summary> MEDIASUBTYPE_dvh1 </summary>
  219. public static readonly Guid dvh1 = new Guid(0x31687664, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  220. /// <summary> MEDIASUBTYPE_Line21_BytePair </summary>
  221. public static readonly Guid Line21_BytePair = new Guid(0x6e8d4a22, 0x310c, 0x11d0, 0xb7, 0x9a, 0x00, 0xaa, 0x00, 0x37, 0x67, 0xa7);
  222. /// <summary> MEDIASUBTYPE_Line21_GOPPacket </summary>
  223. public static readonly Guid Line21_GOPPacket = new Guid(0x6e8d4a23, 0x310c, 0x11d0, 0xb7, 0x9a, 0x00, 0xaa, 0x00, 0x37, 0x67, 0xa7);
  224. /// <summary> MEDIASUBTYPE_Line21_VBIRawData </summary>
  225. public static readonly Guid Line21_VBIRawData = new Guid(0x6e8d4a24, 0x310c, 0x11d0, 0xb7, 0x9a, 0x00, 0xaa, 0x00, 0x37, 0x67, 0xa7);
  226. /// <summary> MEDIASUBTYPE_TELETEXT </summary>
  227. public static readonly Guid TELETEXT = new Guid(0xf72a76e3, 0xeb0a, 0x11d0, 0xac, 0xe4, 0x00, 0x00, 0xc0, 0xcc, 0x16, 0xba);
  228. /// <summary> MEDIASUBTYPE_WSS </summary>
  229. public static readonly Guid WSS = new Guid(0x2791D576, 0x8E7A, 0x466F, 0x9E, 0x90, 0x5D, 0x3F, 0x30, 0x83, 0x73, 0x8B);
  230. /// <summary> MEDIASUBTYPE_VPS </summary>
  231. public static readonly Guid VPS = new Guid(0xa1b3f620, 0x9792, 0x4d8d, 0x81, 0xa4, 0x86, 0xaf, 0x25, 0x77, 0x20, 0x90);
  232. /// <summary> MEDIASUBTYPE_DRM_Audio </summary>
  233. public static readonly Guid DRM_Audio = new Guid(0x00000009, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  234. /// <summary> MEDIASUBTYPE_IEEE_FLOAT </summary>
  235. public static readonly Guid IEEE_FLOAT = new Guid(0x00000003, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  236. /// <summary> MEDIASUBTYPE_DOLBY_AC3_SPDIF </summary>
  237. public static readonly Guid DOLBY_AC3_SPDIF = new Guid(0x00000092, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  238. /// <summary> MEDIASUBTYPE_RAW_SPORT </summary>
  239. public static readonly Guid RAW_SPORT = new Guid(0x00000240, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  240. /// <summary> MEDIASUBTYPE_SPDIF_TAG_241h </summary>
  241. public static readonly Guid SPDIF_TAG_241h = new Guid(0x00000241, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  242. /// <summary> MEDIASUBTYPE_DssVideo </summary>
  243. public static readonly Guid DssVideo = new Guid(0xa0af4f81, 0xe163, 0x11d0, 0xba, 0xd9, 0x00, 0x60, 0x97, 0x44, 0x11, 0x1a);
  244. /// <summary> MEDIASUBTYPE_DssAudio </summary>
  245. public static readonly Guid DssAudio = new Guid(0xa0af4f82, 0xe163, 0x11d0, 0xba, 0xd9, 0x00, 0x60, 0x97, 0x44, 0x11, 0x1a);
  246. /// <summary> MEDIASUBTYPE_VPVideo </summary>
  247. public static readonly Guid VPVideo = new Guid(0x5a9b6a40, 0x1a22, 0x11d1, 0xba, 0xd9, 0x00, 0x60, 0x97, 0x44, 0x11, 0x1a);
  248. /// <summary> MEDIASUBTYPE_VPVBI </summary>
  249. public static readonly Guid VPVBI = new Guid(0x5a9b6a41, 0x1a22, 0x11d1, 0xba, 0xd9, 0x00, 0x60, 0x97, 0x44, 0x11, 0x1a);
  250. /// <summary> MEDIASUBTYPE_AnalogVideo_NTSC_M </summary>
  251. public static readonly Guid AnalogVideo_NTSC_M = new Guid(0x0482dde2, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  252. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_B </summary>
  253. public static readonly Guid AnalogVideo_PAL_B = new Guid(0x0482dde5, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  254. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_D </summary>
  255. public static readonly Guid AnalogVideo_PAL_D = new Guid(0x0482dde6, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  256. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_G </summary>
  257. public static readonly Guid AnalogVideo_PAL_G = new Guid(0x0482dde7, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  258. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_H </summary>
  259. public static readonly Guid AnalogVideo_PAL_H = new Guid(0x0482dde8, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  260. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_I </summary>
  261. public static readonly Guid AnalogVideo_PAL_I = new Guid(0x0482dde9, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  262. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_M </summary>
  263. public static readonly Guid AnalogVideo_PAL_M = new Guid(0x0482ddea, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  264. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_N </summary>
  265. public static readonly Guid AnalogVideo_PAL_N = new Guid(0x0482ddeb, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  266. /// <summary> MEDIASUBTYPE_AnalogVideo_PAL_N_COMBO </summary>
  267. public static readonly Guid AnalogVideo_PAL_N_COMBO = new Guid(0x0482ddec, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  268. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_B </summary>
  269. public static readonly Guid AnalogVideo_SECAM_B = new Guid(0x0482ddf0, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  270. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_D </summary>
  271. public static readonly Guid AnalogVideo_SECAM_D = new Guid(0x0482ddf1, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  272. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_G </summary>
  273. public static readonly Guid AnalogVideo_SECAM_G = new Guid(0x0482ddf2, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  274. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_H </summary>
  275. public static readonly Guid AnalogVideo_SECAM_H = new Guid(0x0482ddf3, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  276. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_K </summary>
  277. public static readonly Guid AnalogVideo_SECAM_K = new Guid(0x0482ddf4, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  278. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_K1 </summary>
  279. public static readonly Guid AnalogVideo_SECAM_K1 = new Guid(0x0482ddf5, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  280. /// <summary> MEDIASUBTYPE_AnalogVideo_SECAM_L </summary>
  281. public static readonly Guid AnalogVideo_SECAM_L = new Guid(0x0482ddf6, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  282. /// <summary> not in uuids.h </summary>
  283. public static readonly Guid I420 = new Guid(0x30323449, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  284. /// <summary> WMMEDIASUBTYPE_VIDEOIMAGE </summary>
  285. public static readonly Guid VideoImage = new Guid(0x1d4a45f2, 0xe5f6, 0x4b44, 0x83, 0x88, 0xf0, 0xae, 0x5c, 0x0e, 0x0c, 0x37);
  286. /// <summary> WMMEDIASUBTYPE_MPEG2_VIDEO </summary>
  287. public static readonly Guid Mpeg2Video = new Guid(0xe06d8026, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  288. /// <summary> WMMEDIASUBTYPE_WebStream </summary>
  289. public static readonly Guid WebStream = new Guid(0x776257d4, 0xc627, 0x41cb, 0x8f, 0x81, 0x7a, 0xc7, 0xff, 0x1c, 0x40, 0xcc);
  290. /// <summary> MEDIASUBTYPE_MPEG2_AUDIO </summary>
  291. public static readonly Guid Mpeg2Audio = new Guid(0xe06d802b, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  292. /// <summary> MEDIASUBTYPE_DOLBY_AC3 </summary>
  293. public static readonly Guid DolbyAC3 = new Guid(0xe06d802c, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  294. /// <summary> MEDIASUBTYPE_DVB_SI </summary>
  295. public static readonly Guid DvbSI = new Guid(0xe9dd31a3, 0x221d, 0x4adb, 0x85, 0x32, 0x9a, 0xf3, 0x09, 0xc1, 0xa4, 0x08);
  296. /// <summary> MEDIASUBTYPE_ATSC_SI </summary>
  297. public static readonly Guid AtscSI = new Guid(0xb3c7397c, 0xd303, 0x414d, 0xb3, 0x3c, 0x4e, 0xd2, 0xc9, 0xd2, 0x97, 0x33);
  298. /// <summary> MEDIASUBTYPE_MPEG2DATA </summary>
  299. public static readonly Guid Mpeg2Data = new Guid(0xc892e55b, 0x252d, 0x42b5, 0xa3, 0x16, 0xd9, 0x97, 0xe7, 0xa5, 0xd9, 0x95);
  300. /// <summary> MEDIASUBTYPE_MPEG2_PROGRAM </summary>
  301. public static readonly Guid Mpeg2Program = new Guid(0xe06d8022, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  302. /// <summary> MEDIASUBTYPE_MPEG2_TRANSPORT </summary>
  303. public static readonly Guid Mpeg2Transport = new Guid(0xe06d8023, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  304. /// <summary> MEDIASUBTYPE_MPEG2_TRANSPORT_STRIDE </summary>
  305. public static readonly Guid Mpeg2TransportStride = new Guid(0x138aa9a4, 0x1ee2, 0x4c5b, 0x98, 0x8e, 0x19, 0xab, 0xfd, 0xbc, 0x8a, 0x11);
  306. /// <summary> MEDIASUBTYPE_None </summary>
  307. public static readonly Guid None = new Guid(0xe436eb8e, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  308. /// <summary> MEDIASUBTYPE_H264 </summary>
  309. public static readonly Guid H264 = new Guid(0x34363248, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  310. /// <summary> MEDIASUBTYPE_NV24 </summary>
  311. public static readonly Guid NV24 = new Guid(0x3432564E, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  312. /// <summary> MEDIASUBTYPE_708_608Data </summary>
  313. public static readonly Guid Data708_608 = new Guid(0xaf414bc, 0x4ed2, 0x445e, 0x98, 0x39, 0x8f, 0x9, 0x55, 0x68, 0xab, 0x3c);
  314. /// <summary> MEDIASUBTYPE_DtvCcData </summary>
  315. public static readonly Guid DtvCcData = new Guid(0xF52ADDAA, 0x36F0, 0x43F5, 0x95, 0xEA, 0x6D, 0x86, 0x64, 0x84, 0x26, 0x2A);
  316. /// <summary> MEDIASUBTYPE_DVB_SUBTITLES </summary>
  317. public static readonly Guid DVB_Subtitles = new Guid(0x34FFCBC3, 0xD5B3, 0x4171, 0x90, 0x02, 0xD4, 0xC6, 0x03, 0x01, 0x69, 0x7F);
  318. /// <summary> MEDIASUBTYPE_ISDB_CAPTIONS </summary>
  319. public static readonly Guid ISDB_Captions = new Guid(0x059dd67d, 0x2e55, 0x4d41, 0x8d, 0x1b, 0x01, 0xf5, 0xe4, 0xf5, 0x06, 0x07);
  320. /// <summary> MEDIASUBTYPE_ISDB_SUPERIMPOSE </summary>
  321. public static readonly Guid ISDB_Superimpose = new Guid(0x36dc6d28, 0xf1a6, 0x4216, 0x90, 0x48, 0x9c, 0xfc, 0xef, 0xeb, 0x5e, 0xba);
  322. /// <summary> MEDIASUBTYPE_NV11 </summary>
  323. public static readonly Guid NV11 = new Guid(0x3131564E, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  324. /// <summary> MEDIASUBTYPE_P208 </summary>
  325. public static readonly Guid P208 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  326. /// <summary> MEDIASUBTYPE_P210 </summary>
  327. public static readonly Guid P210 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  328. /// <summary> MEDIASUBTYPE_P216 </summary>
  329. public static readonly Guid P216 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  330. /// <summary> MEDIASUBTYPE_P010 </summary>
  331. public static readonly Guid P010 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  332. /// <summary> MEDIASUBTYPE_P016 </summary>
  333. public static readonly Guid P016 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  334. /// <summary> MEDIASUBTYPE_Y210 </summary>
  335. public static readonly Guid Y210 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  336. /// <summary> MEDIASUBTYPE_Y216 </summary>
  337. public static readonly Guid Y216 = new Guid(0x38303250, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  338. /// <summary> MEDIASUBTYPE_P408 </summary>
  339. public static readonly Guid P408 = new Guid(0x38303450, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
  340. /// <summary> MEDIASUBTYPE_CC_CONTAINER </summary>
  341. public static readonly Guid CC_Container = new Guid(0x7ea626db, 0x54da, 0x437b, 0xbe, 0x9f, 0xf7, 0x30, 0x73, 0xad, 0xfa, 0x3c);
  342. /// <summary> MEDIASUBTYPE_VBI </summary>
  343. public static readonly Guid VBI = new Guid(0x663da43c, 0x3e8, 0x4e9a, 0x9c, 0xd5, 0xbf, 0x11, 0xed, 0xd, 0xef, 0x76);
  344. /// <summary> MEDIASUBTYPE_XDS </summary>
  345. public static readonly Guid XDS = new Guid(0x1ca73e3, 0xdce6, 0x4575, 0xaf, 0xe1, 0x2b, 0xf1, 0xc9, 0x2, 0xca, 0xf3);
  346. /// <summary> MEDIASUBTYPE_ETDTFilter_Tagged </summary>
  347. public static readonly Guid ETDTFilter_Tagged = new Guid(0xC4C4C4D0, 0x0049, 0x4E2B, 0x98, 0xFB, 0x95, 0x37, 0xF6, 0xCE, 0x51, 0x6D);
  348. /// <summary> MEDIASUBTYPE_CPFilters_Processed </summary>
  349. public static readonly Guid CPFilters_Processed = new Guid(0x46adbd28, 0x6fd0, 0x4796, 0x93, 0xb2, 0x15, 0x5c, 0x51, 0xdc, 0x4, 0x8d);
  350. }
  351. [ComVisible(false)]
  352. public static class FormatType
  353. {
  354. public static readonly Guid Null = Guid.Empty;
  355. /// <summary> FORMAT_None </summary>
  356. public static readonly Guid None = new Guid(0x0F6417D6, 0xc318, 0x11d0, 0xa4, 0x3f, 0x00, 0xa0, 0xc9, 0x22, 0x31, 0x96);
  357. /// <summary> FORMAT_VideoInfo </summary>
  358. public static readonly Guid VideoInfo = new Guid(0x05589f80, 0xc356, 0x11ce, 0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a);
  359. /// <summary> FORMAT_VideoInfo2 </summary>
  360. public static readonly Guid VideoInfo2 = new Guid(0xf72a76A0, 0xeb0a, 0x11d0, 0xac, 0xe4, 0x00, 0x00, 0xc0, 0xcc, 0x16, 0xba);
  361. /// <summary> FORMAT_WaveFormatEx </summary>
  362. public static readonly Guid WaveEx = new Guid(0x05589f81, 0xc356, 0x11ce, 0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a);
  363. /// <summary> FORMAT_MPEGVideo </summary>
  364. public static readonly Guid MpegVideo = new Guid(0x05589f82, 0xc356, 0x11ce, 0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a);
  365. /// <summary> FORMAT_MPEGStreams </summary>
  366. public static readonly Guid MpegStreams = new Guid(0x05589f83, 0xc356, 0x11ce, 0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a);
  367. /// <summary> FORMAT_DvInfo </summary>
  368. public static readonly Guid DvInfo = new Guid(0x05589f84, 0xc356, 0x11ce, 0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a);
  369. /// <summary> FORMAT_AnalogVideo </summary>
  370. public static readonly Guid AnalogVideo = new Guid(0x0482dde0, 0x7817, 0x11cf, 0x8a, 0x03, 0x00, 0xaa, 0x00, 0x6e, 0xcb, 0x65);
  371. /// <summary> FORMAT_MPEG2Video </summary>
  372. public static readonly Guid Mpeg2Video = new Guid(0xe06d80e3, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  373. /// <summary> FORMAT_DolbyAC3 </summary>
  374. public static readonly Guid DolbyAC3 = new Guid(0xe06d80e4, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  375. /// <summary> FORMAT_MPEG2Audio </summary>
  376. public static readonly Guid Mpeg2Audio = new Guid(0xe06d80e5, 0xdb46, 0x11cf, 0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea);
  377. /// <summary> FORMAT_525WSS </summary>
  378. public static readonly Guid WSS525 = new Guid(0xc7ecf04d, 0x4582, 0x4869, 0x9a, 0xbb, 0xbf, 0xb5, 0x23, 0xb6, 0x2e, 0xdf);
  379. /// <summary> FORMATTYPE_ETDTFilter_Tagged </summary>
  380. public static readonly Guid ETDTFilter_Tagged = new Guid(0xC4C4C4D1, 0x0049, 0x4E2B, 0x98, 0xFB, 0x95, 0x37, 0xF6, 0xCE, 0x51, 0x6D);
  381. /// <summary> FORMATTYPE_CPFilters_Processed </summary>
  382. public static readonly Guid CPFilters_Processed = new Guid(0x6739b36f, 0x1d5f, 0x4ac2, 0x81, 0x92, 0x28, 0xbb, 0xe, 0x73, 0xd1, 0x6a);
  383. }
  384. [ComVisible(false)]
  385. public static class FilterCategory
  386. {
  387. /// <summary> CLSID_CPCAFiltersCategory </summary>
  388. public static readonly Guid CPCAFiltersCategory = new Guid(0xC4C4C4FC, 0x0049, 0x4E2B, 0x98, 0xFB, 0x95, 0x37, 0xF6, 0xCE, 0x51, 0x6D);
  389. /// <summary> CLSID_MediaEncoderCategory </summary>
  390. public static readonly Guid MediaEncoderCategory = new Guid(0x7D22E920, 0x5CA9, 0x4787, 0x8C, 0x2B, 0xA6, 0x77, 0x9B, 0xD1, 0x17, 0x81);
  391. /// <summary> CLSID_MediaMultiplexerCategory </summary>
  392. public static readonly Guid MediaMultiplexerCategory = new Guid(0x236C9559, 0xADCE, 0x4736, 0xBF, 0x72, 0xBA, 0xB3, 0x4E, 0x39, 0x21, 0x96);
  393. /// <summary> CLSID_DMOFilterCategory </summary>
  394. public static readonly Guid DMOFilterCategory = new Guid(0xbcd5796c, 0xbd52, 0x4d30, 0xab, 0x76, 0x70, 0xf9, 0x75, 0xb8, 0x91, 0x99);
  395. /// <summary> CLSID_AudioInputDeviceCategory, audio capture category </summary>
  396. public static readonly Guid AudioInputDevice = new Guid(0x33d9a762, 0x90c8, 0x11d0, 0xbd, 0x43, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86);
  397. /// <summary> CLSID_VideoInputDeviceCategory, video capture category </summary>
  398. public static readonly Guid VideoInputDevice = new Guid(0x860BB310, 0x5D01, 0x11d0, 0xBD, 0x3B, 0x00, 0xA0, 0xC9, 0x11, 0xCE, 0x86);
  399. /// <summary> CLSID_VideoCompressorCategory, video compressor category </summary>
  400. public static readonly Guid VideoCompressorCategory = new Guid(0x33d9a760, 0x90c8, 0x11d0, 0xbd, 0x43, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86);
  401. /// <summary> CLSID_AudioCompressorCategory, audio compressor category </summary>
  402. public static readonly Guid AudioCompressorCategory = new Guid(0x33d9a761, 0x90c8, 0x11d0, 0xbd, 0x43, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86);
  403. /// <summary> CLSID_LegacyAmFilterCategory, legacy filters </summary>
  404. public static readonly Guid LegacyAmFilterCategory = new Guid(0x083863F1, 0x70DE, 0x11d0, 0xBD, 0x40, 0x00, 0xA0, 0xC9, 0x11, 0xCE, 0x86);
  405. /// <summary> CLSID_AudioRendererCategory, Audio renderer category</summary>
  406. public static readonly Guid AudioRendererCategory = new Guid(0xe0f158e1, 0xcb04, 0x11d0, 0xbd, 0x4e, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86);
  407. /// <summary> KSCATEGORY_BDA_RECEIVER_COMPONENT, BDA Receiver Components category</summary>
  408. public static readonly Guid BDAReceiverComponentsCategory = new Guid(0xFD0A5AF4, 0xB41D, 0x11d2, 0x9c, 0x95, 0x00, 0xc0, 0x4f, 0x79, 0x71, 0xe0);
  409. /// <summary> KSCATEGORY_BDA_NETWORK_TUNER, BDA Source Filters category</summary>
  410. public static readonly Guid BDASourceFiltersCategory = new Guid(0x71985f48, 0x1ca1, 0x11d3, 0x9c, 0xc8, 0x00, 0xc0, 0x4f, 0x79, 0x71, 0xe0);
  411. /// <summary> KSCATEGORY_BDA_IP_SINK, BDA Rendering Filters category</summary>
  412. public static readonly Guid BDARenderingFiltersCategory = new Guid(0x71985f4a, 0x1ca1, 0x11d3, 0x9c, 0xc8, 0x00, 0xc0, 0x4f, 0x79, 0x71, 0xe0);
  413. /// <summary> KSCATEGORY_BDA_NETWORK_PROVIDER, BDA Network Providers category</summary>
  414. public static readonly Guid BDANetworkProvidersCategory = new Guid(0x71985f4b, 0x1ca1, 0x11d3, 0x9c, 0xc8, 0x00, 0xc0, 0x4f, 0x79, 0x71, 0xe0);
  415. /// <summary> KSCATEGORY_BDA_TRANSPORT_INFORMATION, BDA Transport Information Renderers category</summary>
  416. public static readonly Guid BDATransportInformationRenderersCategory = new Guid(0xa2e3074f, 0x6c3d, 0x11d3, 0xb6, 0x53, 0x00, 0xc0, 0x4f, 0x79, 0x49, 0x8e);
  417. /// <summary> CLSID_MidiRendererCategory </summary>
  418. public static readonly Guid MidiRendererCategory = new Guid(0x4EfE2452, 0x168A, 0x11d1, 0xBC, 0x76, 0x00, 0xc0, 0x4F, 0xB9, 0x45, 0x3B);
  419. /// <summary> CLSID_TransmitCategory External Renderers Category</summary>
  420. public static readonly Guid TransmitCategory = new Guid(0xcc7bfb41, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  421. /// <summary> CLSID_DeviceControlCategory Device Control Filters</summary>
  422. public static readonly Guid DeviceControlCategory = new Guid(0xcc7bfb46, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  423. /// <summary> CLSID_VideoEffects1Category </summary>
  424. public static readonly Guid VideoEffects1Category = new Guid(0xcc7bfb42, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  425. /// <summary> CLSID_VideoEffects2Category </summary>
  426. public static readonly Guid VideoEffects2Category = new Guid(0xcc7bfb43, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  427. /// <summary> CLSID_AudioEffects1Category </summary>
  428. public static readonly Guid AudioEffects1Category = new Guid(0xcc7bfb44, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  429. /// <summary> CLSID_AudioEffects2Category </summary>
  430. public static readonly Guid AudioEffects2Category = new Guid(0xcc7bfb45, 0xf175, 0x11d1, 0xa3, 0x92, 0x00, 0xe0, 0x29, 0x1f, 0x39, 0x59);
  431. /// <summary> KSCATEGORY_DATADECOMPRESSOR & CLSID_DVDHWDecodersCategory</summary>
  432. public static readonly Guid KSDataDecompressor = new Guid(0x2721AE20, 0x7E70, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
  433. /// <summary> KSCATEGORY_COMMUNICATIONSTRANSFORM </summary>
  434. public static readonly Guid KSCommunicationsTransform = new Guid(0xCF1DDA2C, 0x9743, 0x11D0, 0xA3, 0xEE, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  435. /// <summary> KSCATEGORY_DATATRANSFORM </summary>
  436. public static readonly Guid KSDataTransform = new Guid(0x2EB07EA0, 0x7E70, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
  437. /// <summary> KSCATEGORY_INTERFACETRANSFORM </summary>
  438. public static readonly Guid KSInterfaceTransform = new Guid(0xCF1DDA2D, 0x9743, 0x11D0, 0xA3, 0xEE, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  439. /// <summary> KSCATEGORY_MIXER </summary>
  440. public static readonly Guid KSMixer = new Guid(0xAD809C00, 0x7B88, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
  441. /// <summary> KSCATEGORY_AUDIO_DEVICE </summary>
  442. public static readonly Guid KSAudioDevice = new Guid(0xFBF6F530, 0x07B9, 0x11D2, 0xA7, 0x1E, 0x00, 0x00, 0xF8, 0x00, 0x47, 0x88);
  443. /// <summary> CLSID_ActiveMovieCategories </summary>
  444. public static readonly Guid ActiveMovieCategories = new Guid(0xda4e3da0, 0xd07d, 0x11d0, 0xbd, 0x50, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86);
  445. /// <summary> AM_KSCATEGORY_CAPTURE </summary>
  446. public static readonly Guid AMKSCapture = new Guid(0x65E8773D, 0x8F56, 0x11D0, 0xA3, 0xB9, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  447. /// <summary> AM_KSCATEGORY_RENDER </summary>
  448. public static readonly Guid AMKSRender = new Guid(0x65E8773E, 0x8F56, 0x11D0, 0xA3, 0xB9, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  449. /// <summary> AM_KSCATEGORY_DATACOMPRESSOR </summary>
  450. public static readonly Guid AMKSDataCompressor = new Guid(0x1E84C900, 0x7E70, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
  451. /// <summary> AM_KSCATEGORY_AUDIO </summary>
  452. public static readonly Guid AMKSAudio = new Guid(0x6994AD04, 0x93EF, 0x11D0, 0xA3, 0xCC, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  453. /// <summary> AM_KSCATEGORY_VIDEO </summary>
  454. public static readonly Guid AMKSVideo = new Guid(0x6994AD05, 0x93EF, 0x11D0, 0xA3, 0xCC, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
  455. /// <summary> AM_KSCATEGORY_TVTUNER </summary>
  456. public static readonly Guid AMKSTVTuner = new Guid(0xa799a800, 0xa46d, 0x11d0, 0xa1, 0x8c, 0x00, 0xa0, 0x24, 0x01, 0xdc, 0xd4);
  457. /// <summary> AM_KSCATEGORY_CROSSBAR </summary>
  458. public static readonly Guid AMKSCrossbar = new Guid(0xa799a801, 0xa46d, 0x11d0, 0xa1, 0x8c, 0x00, 0xa0, 0x24, 0x01, 0xdc, 0xd4);
  459. /// <summary> AM_KSCATEGORY_TVAUDIO </summary>
  460. public static readonly Guid AMKSTVAudio = new Guid(0xa799a802, 0xa46d, 0x11d0, 0xa1, 0x8c, 0x00, 0xa0, 0x24, 0x01, 0xdc, 0xd4);
  461. /// <summary> AM_KSCATEGORY_VBICODEC </summary>
  462. public static readonly Guid AMKSVBICodec = new Guid(0x07dad660, 0x22f1, 0x11d1, 0xa9, 0xf4, 0x00, 0xc0, 0x4f, 0xbb, 0xde, 0x8f);
  463. /// <summary> AM_KSCATEGORY_SPLITTER </summary>
  464. public static readonly Guid AMKSSplitter = new Guid(0x0A4252A0, 0x7E70, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
  465. /// <summary> Not defined </summary>
  466. public static readonly Guid WDMStreamingEncoderDevices = new Guid(0x19689BF6, 0xC384, 0x48FD, 0xAD, 0x51, 0x90, 0xE5, 0x8C, 0x79, 0xF7, 0x0B);
  467. /// <summary> Not defined </summary>
  468. public static readonly Guid WDMStreamingMultiplexerDevices = new Guid(0x7A5DE1D3, 0x01A1, 0x452C, 0xB4, 0x81, 0x4F, 0xA2, 0xB9, 0x62, 0x71, 0xE8);
  469. /// <summary> Not defined </summary>
  470. public static readonly Guid LTMMVideoProcessors = new Guid(0xE526D606, 0x22E7, 0x494C, 0xB8, 0x1E, 0xAC, 0x0A, 0x94, 0xBF, 0xE6, 0x03);
  471. }
  472. [ComVisible(false)]
  473. public static class TimeFormat
  474. {
  475. // 00000000-0000-0000-0000-000000000000 TIME_FORMAT_NONE
  476. public static readonly Guid None = new Guid(0x0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  477. // 7b785570-8c82-11cf-bc0c-00aa00ac74f6 TIME_FORMAT_FRAME
  478. public static readonly Guid Frame = new Guid(0x7b785570, 0x8c82, 0x11cf, 0xbc, 0x0c, 0x00, 0xaa, 0x00, 0xac, 0x74, 0xf6);
  479. // 7b785571-8c82-11cf-bc0c-00aa00ac74f6 TIME_FORMAT_BYTE
  480. public static readonly Guid Byte = new Guid(0x7b785571, 0x8c82, 0x11cf, 0xbc, 0x0c, 0x00, 0xaa, 0x00, 0xac, 0x74, 0xf6);
  481. // 7b785572-8c82-11cf-bc0c-00aa00ac74f6 TIME_FORMAT_SAMPLE
  482. public static readonly Guid Sample = new Guid(0x7b785572, 0x8c82, 0x11cf, 0xbc, 0x0c, 0x00, 0xaa, 0x00, 0xac, 0x74, 0xf6);
  483. // 7b785573-8c82-11cf-bc0c-00aa00ac74f6 TIME_FORMAT_FIELD
  484. public static readonly Guid Field = new Guid(0x7b785573, 0x8c82, 0x11cf, 0xbc, 0x0c, 0x00, 0xaa, 0x00, 0xac, 0x74, 0xf6);
  485. // 7b785574-8c82-11cf-bc0c-00aa00ac74f6 TIME_FORMAT_MEDIA_TIME
  486. public static readonly Guid MediaTime = new Guid(0x7b785574, 0x8c82, 0x11cf, 0xbc, 0x0c, 0x00, 0xaa, 0x00, 0xac, 0x74, 0xf6);
  487. }
  488. [ComVisible(false)]
  489. public static class PropSetID
  490. {
  491. /// <summary> AMPROPSETID_Pin</summary>
  492. public static readonly Guid Pin = new Guid(0x9b00f101, 0x1567, 0x11d1, 0xb3, 0xf1, 0x00, 0xaa, 0x00, 0x37, 0x61, 0xc5);
  493. /// <summary> PROPSETID_VIDCAP_DROPPEDFRAMES </summary>
  494. public static readonly Guid DroppedFrames = new Guid(0xC6E13344, 0x30AC, 0x11D0, 0xA1, 0x8C, 0x00, 0xA0, 0xC9, 0x11, 0x89, 0x56);
  495. /// <summary> STATIC_ENCAPIPARAM_BITRATE </summary>
  496. public static readonly Guid ENCAPIPARAM_BitRate = new Guid(0x49cc4c43, 0xca83, 0x4ad4, 0xa9, 0xaf, 0xf3, 0x69, 0x6a, 0xf6, 0x66, 0xdf);
  497. /// <summary> STATIC_ENCAPIPARAM_PEAK_BITRATE </summary>
  498. public static readonly Guid ENCAPIPARAM_PeakBitRate = new Guid(0x703f16a9, 0x3d48, 0x44a1, 0xb0, 0x77, 0x01, 0x8d, 0xff, 0x91, 0x5d, 0x19);
  499. /// <summary> STATIC_ENCAPIPARAM_BITRATE_MODE </summary>
  500. public static readonly Guid ENCAPIPARAM_BitRateMode = new Guid(0xee5fb25c, 0xc713, 0x40d1, 0x9d, 0x58, 0xc0, 0xd7, 0x24, 0x1e, 0x25, 0x0f);
  501. /// <summary> ENCAPIPARAM_SAP_MODE </summary>
  502. public static readonly Guid ENCAPIPARAM_SAP_MODE = new Guid(0xc0171db, 0xfefc, 0x4af7, 0x99, 0x91, 0xa5, 0x65, 0x7c, 0x19, 0x1c, 0xd1);
  503. /// <summary> CODECAPI_AVDecMmcssClass </summary>
  504. public static readonly Guid CODECAPI_AVDecMmcssClass = new Guid(0xe0ad4828, 0xdf66, 0x4893, 0x9f, 0x33, 0x78, 0x8a, 0xa4, 0xec, 0x40, 0x82);
  505. /// <summary> STATIC_CODECAPI_CHANGELISTS </summary>
  506. public static readonly Guid CODECAPI_ChangeLists = new Guid(0x62b12acf, 0xf6b0, 0x47d9, 0x94, 0x56, 0x96, 0xf2, 0x2c, 0x4e, 0x0b, 0x9d);
  507. /// <summary> STATIC_CODECAPI_VIDEO_ENCODER </summary>
  508. public static readonly Guid CODECAPI_VideoEncoder = new Guid(0x7112e8e1, 0x3d03, 0x47ef, 0x8e, 0x60, 0x03, 0xf1, 0xcf, 0x53, 0x73, 0x01);
  509. /// <summary> STATIC_CODECAPI_AUDIO_ENCODER </summary>
  510. public static readonly Guid CODECAPI_AudioEncoder = new Guid(0xb9d19a3e, 0xf897, 0x429c, 0xbc, 0x46, 0x81, 0x38, 0xb7, 0x27, 0x2b, 0x2d);
  511. /// <summary> STATIC_CODECAPI_SETALLDEFAULTS </summary>
  512. public static readonly Guid CODECAPI_SetAllDefaults = new Guid(0x6c5e6a7c, 0xacf8, 0x4f55, 0xa9, 0x99, 0x1a, 0x62, 0x81, 0x09, 0x05, 0x1b);
  513. /// <summary> STATIC_CODECAPI_ALLSETTINGS </summary>
  514. public static readonly Guid CODECAPI_AllSettings = new Guid(0x6a577e92, 0x83e1, 0x4113, 0xad, 0xc2, 0x4f, 0xce, 0xc3, 0x2f, 0x83, 0xa1);
  515. /// <summary> STATIC_CODECAPI_SUPPORTSEVENTS </summary>
  516. public static readonly Guid CODECAPI_SupportsEvents = new Guid(0x0581af97, 0x7693, 0x4dbd, 0x9d, 0xca, 0x3f, 0x9e, 0xbd, 0x65, 0x85, 0xa1);
  517. /// <summary> STATIC_CODECAPI_CURRENTCHANGELIST </summary>
  518. public static readonly Guid CODECAPI_CurrentChangeList = new Guid(0x1cb14e83, 0x7d72, 0x4657, 0x83, 0xfd, 0x47, 0xa2, 0xc5, 0xb9, 0xd1, 0x3d);
  519. }
  520. [ComVisible(false)]
  521. public enum FilterState
  522. {
  523. Stopped = 0,
  524. Paused = 1,
  525. Running = 2,
  526. NotOpened = 3
  527. }
  528. [ComVisible(false)]
  529. public enum EventCode
  530. {
  531. None,
  532. Complete = 0x01, // EC_COMPLETE
  533. UserAbort = 0x02, // EC_USERABORT
  534. ErrorAbort = 0x03, // EC_ERRORABORT
  535. Time = 0x04, // EC_TIME
  536. Repaint = 0x05, // EC_REPAINT
  537. StErrStopped = 0x06, // EC_STREAM_ERROR_STOPPED
  538. StErrStPlaying = 0x07, // EC_STREAM_ERROR_STILLPLAYING
  539. ErrorStPlaying = 0x08, // EC_ERROR_STILLPLAYING
  540. PaletteChanged = 0x09, // EC_PALETTE_CHANGED
  541. VideoSizeChanged = 0x0a, // EC_VIDEO_SIZE_CHANGED
  542. QualityChange = 0x0b, // EC_QUALITY_CHANGE
  543. ShuttingDown = 0x0c, // EC_SHUTTING_DOWN
  544. ClockChanged = 0x0d, // EC_CLOCK_CHANGED
  545. Paused = 0x0e, // EC_PAUSED
  546. OpeningFile = 0x10, // EC_OPENING_FILE
  547. BufferingData = 0x11, // EC_BUFFERING_DATA
  548. FullScreenLost = 0x12, // EC_FULLSCREEN_LOST
  549. Activate = 0x13, // EC_ACTIVATE
  550. NeedRestart = 0x14, // EC_NEED_RESTART
  551. WindowDestroyed = 0x15, // EC_WINDOW_DESTROYED
  552. DisplayChanged = 0x16, // EC_DISPLAY_CHANGED
  553. Starvation = 0x17, // EC_STARVATION
  554. OleEvent = 0x18, // EC_OLE_EVENT
  555. NotifyWindow = 0x19, // EC_NOTIFY_WINDOW
  556. StreamControlStopped = 0x1A, // EC_STREAM_CONTROL_STOPPED
  557. StreamControlStarted = 0x1B, //EC_STREAM_CONTROL_STARTED
  558. DeviceLost = 0x1f, // EC_DEVICE_LOST
  559. ProcessingLatency = 0x21,
  560. // EC_ ....
  561. // DVDevCod.h
  562. DvdDomChange = 0x101, // EC_DVD_DOMAIN_CHANGE
  563. DvdTitleChange = 0x102, // EC_DVD_TITLE_CHANGE
  564. DvdChaptStart = 0x103, // EC_DVD_CHAPTER_START
  565. DvdAudioStChange = 0x104, // EC_DVD_AUDIO_STREAM_CHANGE
  566. DvdSubPicStChange = 0x105, // EC_DVD_SUBPICTURE_STREAM_CHANGE
  567. DvdAngleChange = 0x106, // EC_DVD_ANGLE_CHANGE
  568. DvdButtonChange = 0x107, // EC_DVD_BUTTON_CHANGE
  569. DvdValidUopsChange = 0x108, // EC_DVD_VALID_UOPS_CHANGE
  570. DvdStillOn = 0x109, // EC_DVD_STILL_ON
  571. DvdStillOff = 0x10a, // EC_DVD_STILL_OFF
  572. DvdCurrentTime = 0x10b, // EC_DVD_CURRENT_TIME
  573. DvdError = 0x10c, // EC_DVD_ERROR
  574. DvdWarning = 0x10d, // EC_DVD_WARNING
  575. DvdChaptAutoStop = 0x10e, // EC_DVD_CHAPTER_AUTOSTOP
  576. DvdNoFpPgc = 0x10f, // EC_DVD_NO_FP_PGC
  577. DvdPlaybRateChange = 0x110, // EC_DVD_PLAYBACK_RATE_CHANGE
  578. DvdParentalLChange = 0x111, // EC_DVD_PARENTAL_LEVEL_CHANGE
  579. DvdPlaybStopped = 0x112, // EC_DVD_PLAYBACK_STOPPED
  580. DvdAnglesAvail = 0x113, // EC_DVD_ANGLES_AVAILABLE
  581. DvdPeriodAStop = 0x114, // EC_DVD_PLAYPERIOD_AUTOSTOP
  582. DvdButtonAActivated = 0x115, // EC_DVD_BUTTON_AUTO_ACTIVATED
  583. DvdCmdStart = 0x116, // EC_DVD_CMD_START
  584. DvdCmdEnd = 0x117, // EC_DVD_CMD_END
  585. DvdDiscEjected = 0x118, // EC_DVD_DISC_EJECTED
  586. DvdDiscInserted = 0x119, // EC_DVD_DISC_INSERTED
  587. DvdCurrentHmsfTime = 0x11a, // EC_DVD_CURRENT_HMSF_TIME
  588. DvdKaraokeMode = 0x11b // EC_DVD_KARAOKE_MODE
  589. }
  590. [Flags]
  591. [ComVisible(false)]
  592. public enum AMRenderExFlags
  593. {
  594. None = 0,
  595. RenderToExistingRenderers = 1
  596. }
  597. [Flags]
  598. [ComVisible(false)]
  599. public enum AMInterlace
  600. {
  601. None = 0,
  602. IsInterlaced = 0x00000001,
  603. OneFieldPerSample = 0x00000002,
  604. Field1First = 0x00000004,
  605. Unused = 0x00000008,
  606. FieldPatternMask = 0x00000030,
  607. FieldPatField1Only = 0x00000000,
  608. FieldPatField2Only = 0x00000010,
  609. FieldPatBothRegular = 0x00000020,
  610. FieldPatBothIrregular = 0x00000030,
  611. DisplayModeMask = 0x000000c0,
  612. DisplayModeBobOnly = 0x00000000,
  613. DisplayModeWeaveOnly = 0x00000040,
  614. DisplayModeBobOrWeave = 0x00000080,
  615. }
  616. [Flags]
  617. [ComVisible(false)]
  618. public enum AMFileSinkFlags
  619. {
  620. None = 0,
  621. OverWrite = 0x00000001
  622. }
  623. [ComVisible(false)]
  624. public enum AMCopyProtect
  625. {
  626. None = 0,
  627. RestrictDuplication = 0x00000001
  628. }
  629. [Flags]
  630. [ComVisible(false)]
  631. public enum AMControl
  632. {
  633. None = 0,
  634. Used = 0x00000001,
  635. PadTo4x3 = 0x00000002,
  636. PadTo16x9 = 0x00000004,
  637. }
  638. [StructLayout(LayoutKind.Sequential)]
  639. [ComVisible(false)]
  640. public struct DsCAUUID
  641. {
  642. public int cElems;
  643. public IntPtr pElems;
  644. /// <summary>
  645. /// Perform a manual marshaling of pElems to retrieve an array of System.Guid.
  646. /// Assume this structure has been already filled by the ISpecifyPropertyPages.GetPages() method.
  647. /// </summary>
  648. /// <returns>A managed representation of pElems (cElems items)</returns>
  649. public Guid[] ToGuidArray()
  650. {
  651. Guid[] retval = new Guid[this.cElems];
  652. for (int i = 0; i < this.cElems; i++)
  653. {
  654. IntPtr ptr = new IntPtr(this.pElems.ToInt64() + (Marshal.SizeOf(typeof(Guid)) * i));
  655. retval[i] = (Guid)Marshal.PtrToStructure(ptr, typeof(Guid));
  656. }
  657. return retval;
  658. }
  659. }
  660. [ComVisible(false)]
  661. public enum AMPropertyPin
  662. {
  663. Category,
  664. Medium
  665. }
  666. [StructLayout(LayoutKind.Sequential)]
  667. [ComVisible(false)]
  668. public class DsRect
  669. {
  670. public int left;
  671. public int top;
  672. public int right;
  673. public int bottom;
  674. /// <summary>
  675. /// Empty contructor. Initialize all fields to 0
  676. /// </summary>
  677. public DsRect()
  678. {
  679. this.left = 0;
  680. this.top = 0;
  681. this.right = 0;
  682. this.bottom = 0;
  683. }
  684. /// <summary>
  685. /// A parametred constructor. Initialize fields with given values.
  686. /// </summary>
  687. /// <param name="left">the left value</param>
  688. /// <param name="top">the top value</param>
  689. /// <param name="right">the right value</param>
  690. /// <param name="bottom">the bottom value</param>
  691. public DsRect(int left, int top, int right, int bottom)
  692. {
  693. this.left = left;
  694. this.top = top;
  695. this.right = right;
  696. this.bottom = bottom;
  697. }
  698. /// <summary>
  699. /// A parametred constructor. Initialize fields with a given <see cref="System.Drawing.Rectangle"/>.
  700. /// </summary>
  701. /// <param name="rectangle">A <see cref="System.Drawing.Rectangle"/></param>
  702. /// <remarks>
  703. /// Warning, DsRect define a rectangle by defining two of his corners and <see cref="System.Drawing.Rectangle"/> define a rectangle with his upper/left corner, his width and his height.
  704. /// </remarks>
  705. public DsRect(Rectangle rectangle)
  706. {
  707. this.left = rectangle.Left;
  708. this.top = rectangle.Top;
  709. this.right = rectangle.Right;
  710. this.bottom = rectangle.Bottom;
  711. }
  712. /// <summary>
  713. /// Provide de string representation of this DsRect instance
  714. /// </summary>
  715. /// <returns>A string formated like this : [left, top - right, bottom]</returns>
  716. public override string ToString()
  717. {
  718. return string.Format("[{0}, {1} - {2}, {3}]", this.left, this.top, this.right, this.bottom);
  719. }
  720. public override int GetHashCode()
  721. {
  722. return this.left.GetHashCode() |
  723. this.top.GetHashCode() |
  724. this.right.GetHashCode() |
  725. this.bottom.GetHashCode();
  726. }
  727. public override bool Equals(object obj)
  728. {
  729. if (obj is DsRect)
  730. {
  731. DsRect cmp = (DsRect)obj;
  732. return right == cmp.right && bottom == cmp.bottom && left == cmp.left && top == cmp.top;
  733. }
  734. if (obj is Rectangle)
  735. {
  736. Rectangle cmp = (Rectangle)obj;
  737. return right == cmp.Right && bottom == cmp.Bottom && left == cmp.Left && top == cmp.Top;
  738. }
  739. return false;
  740. }
  741. /// <summary>
  742. /// Define implicit cast between DirectShowLib.DsRect and System.Drawing.Rectangle for languages supporting this feature.
  743. /// VB.Net doesn't support implicit cast. <see cref="DirectShowLib.DsRect.ToRectangle"/> for similar functionality.
  744. /// <code>
  745. /// // Define a new Rectangle instance
  746. /// Rectangle r = new Rectangle(0, 0, 100, 100);
  747. /// // Do implicit cast between Rectangle and DsRect
  748. /// DsRect dsR = r;
  749. ///
  750. /// Console.WriteLine(dsR.ToString());
  751. /// </code>
  752. /// </summary>
  753. /// <param name="r">a DsRect to be cast</param>
  754. /// <returns>A casted System.Drawing.Rectangle</returns>
  755. public static implicit operator Rectangle(DsRect r)
  756. {
  757. return r.ToRectangle();
  758. }
  759. /// <summary>
  760. /// Define implicit cast between System.Drawing.Rectangle and DirectShowLib.DsRect for languages supporting this feature.
  761. /// VB.Net doesn't support implicit cast. <see cref="DirectShowLib.DsRect.FromRectangle"/> for similar functionality.
  762. /// <code>
  763. /// // Define a new DsRect instance
  764. /// DsRect dsR = new DsRect(0, 0, 100, 100);
  765. /// // Do implicit cast between DsRect and Rectangle
  766. /// Rectangle r = dsR;
  767. ///
  768. /// Console.WriteLine(r.ToString());
  769. /// </code>
  770. /// </summary>
  771. /// <param name="r">A System.Drawing.Rectangle to be cast</param>
  772. /// <returns>A casted DsRect</returns>
  773. public static implicit operator DsRect(Rectangle r)
  774. {
  775. return new DsRect(r);
  776. }
  777. /// <summary>
  778. /// Get the System.Drawing.Rectangle equivalent to this DirectShowLib.DsRect instance.
  779. /// </summary>
  780. /// <returns>A System.Drawing.Rectangle</returns>
  781. public Rectangle ToRectangle()
  782. {
  783. return new Rectangle(this.left, this.top, (this.right - this.left), (this.bottom - this.top));
  784. }
  785. /// <summary>
  786. /// Get a new DirectShowLib.DsRect instance for a given <see cref="System.Drawing.Rectangle"/>
  787. /// </summary>
  788. /// <param name="r">The <see cref="System.Drawing.Rectangle"/> used to initialize this new DirectShowLib.DsGuid</param>
  789. /// <returns>A new instance of DirectShowLib.DsGuid</returns>
  790. public static DsRect FromRectangle(Rectangle r)
  791. {
  792. return new DsRect(r);
  793. }
  794. public bool IsEmpty()
  795. {
  796. return ToRectangle().IsEmpty;
  797. }
  798. }
  799. [StructLayout(LayoutKind.Sequential, Pack = 2)]
  800. [ComVisible(false)]
  801. public class BitmapInfoHeader
  802. {
  803. public int Size;
  804. public int Width;
  805. public int Height;
  806. public short Planes;
  807. public short BitCount;
  808. public int Compression;
  809. public int ImageSize;
  810. public int XPelsPerMeter;
  811. public int YPelsPerMeter;
  812. public int ClrUsed;
  813. public int ClrImportant;
  814. public BitmapInfoHeader()
  815. {
  816. Size = Marshal.SizeOf(this.GetType());
  817. Width = 0;
  818. Height = 0;
  819. Planes = 0;
  820. BitCount = 0;
  821. Compression = 0;
  822. ImageSize = 0;
  823. XPelsPerMeter = 0;
  824. YPelsPerMeter = 0;
  825. ClrUsed = 0;
  826. ClrImportant = 0;
  827. }
  828. public int GetBitmapSize()
  829. {
  830. return Width * Math.Abs(Height) * (BitCount + BitCount % 8) / 8;
  831. }
  832. }
  833. /// <summary>
  834. /// From VIDEOINFOHEADER
  835. /// </summary>
  836. [StructLayout(LayoutKind.Sequential)]
  837. [ComVisible(false)]
  838. public class VideoInfoHeader
  839. {
  840. public DsRect SrcRect;
  841. public DsRect TargetRect;
  842. public int BitRate;
  843. public int BitErrorRate;
  844. public long AvgTimePerFrame;
  845. public BitmapInfoHeader BmiHeader;
  846. public VideoInfoHeader()
  847. {
  848. BitRate = 0;
  849. BitErrorRate = 0;
  850. AvgTimePerFrame = 0;
  851. SrcRect = new DsRect();
  852. TargetRect = new DsRect();
  853. BmiHeader = new BitmapInfoHeader();
  854. }
  855. }
  856. /// <summary>
  857. /// From VIDEOINFOHEADER2
  858. /// </summary>
  859. [StructLayout(LayoutKind.Sequential)]
  860. [ComVisible(false)]
  861. public class VideoInfoHeader2
  862. {
  863. public DsRect SrcRect;
  864. public DsRect TargetRect;
  865. public int BitRate;
  866. public int BitErrorRate;
  867. public long AvgTimePerFrame;
  868. public AMInterlace InterlaceFlags;
  869. public AMCopyProtect CopyProtectFlags;
  870. public int PictAspectRatioX;
  871. public int PictAspectRatioY;
  872. public AMControl ControlFlags;
  873. public int Reserved2;
  874. public BitmapInfoHeader BmiHeader;
  875. public VideoInfoHeader2()
  876. {
  877. InterlaceFlags = AMInterlace.None;
  878. CopyProtectFlags = AMCopyProtect.None;
  879. ControlFlags = AMControl.None;
  880. BitRate = 0;
  881. BitErrorRate = 0;
  882. AvgTimePerFrame = 0;
  883. PictAspectRatioX = 0;
  884. PictAspectRatioY = 0;
  885. Reserved2 = 0;
  886. SrcRect = new DsRect();
  887. TargetRect = new DsRect();
  888. BmiHeader = new BitmapInfoHeader();
  889. }
  890. }
  891. [StructLayout(LayoutKind.Sequential)]
  892. [ComVisible(false)]
  893. public class Mpeg2VideoInfo
  894. {
  895. public VideoInfoHeader2 hdr;
  896. public uint dwStartTimeCode;
  897. public uint cbSequenceHeader;
  898. public uint dwProfile;
  899. public uint dwLevel;
  900. public uint dwFlags;
  901. public byte[] dwSequenceHeader;
  902. public Mpeg2VideoInfo()
  903. {
  904. hdr = new VideoInfoHeader2();
  905. dwSequenceHeader = null;
  906. dwStartTimeCode = 0;
  907. cbSequenceHeader = 0;
  908. dwProfile = 0;
  909. dwLevel = 0;
  910. dwFlags = 0;
  911. }
  912. }
  913. /// <summary>
  914. /// From WAVEFORMATEX
  915. /// </summary>
  916. [StructLayout(LayoutKind.Sequential, Pack = 2)]
  917. [ComVisible(false)]
  918. public class WaveFormatEx
  919. {
  920. public ushort wFormatTag;
  921. public ushort nChannels;
  922. public int nSamplesPerSec;
  923. public int nAvgBytesPerSec;
  924. public ushort nBlockAlign;
  925. public ushort wBitsPerSample;
  926. public ushort cbSize;
  927. }
  928. [Flags]
  929. [ComVisible(false)]
  930. public enum SPEAKER : uint
  931. {
  932. SPEAKER_FRONT_LEFT = 0x1,
  933. SPEAKER_FRONT_RIGHT = 0x2,
  934. SPEAKER_FRONT_CENTER = 0x4,
  935. SPEAKER_LOW_FREQUENCY = 0x8,
  936. SPEAKER_BACK_LEFT = 0x10,
  937. SPEAKER_BACK_RIGHT = 0x20,
  938. SPEAKER_FRONT_LEFT_OF_CENTER = 0x40,
  939. SPEAKER_FRONT_RIGHT_OF_CENTER = 0x80,
  940. SPEAKER_BACK_CENTER = 0x100,
  941. SPEAKER_SIDE_LEFT = 0x200,
  942. SPEAKER_SIDE_RIGHT = 0x400,
  943. SPEAKER_TOP_CENTER = 0x800,
  944. SPEAKER_TOP_FRONT_LEFT = 0x1000,
  945. SPEAKER_TOP_FRONT_CENTER = 0x2000,
  946. SPEAKER_TOP_FRONT_RIGHT = 0x4000,
  947. SPEAKER_TOP_BACK_LEFT = 0x8000,
  948. SPEAKER_TOP_BACK_CENTER = 0x10000,
  949. SPEAKER_TOP_BACK_RIGHT = 0x20000,
  950. // Bit mask locations reserved for future use
  951. SPEAKER_RESERVED = 0x7FFC0000,
  952. // Used to specify that any possible permutation of speaker configurations
  953. SPEAKER_ALL = 0x80000000,
  954. }
  955. [StructLayout(LayoutKind.Sequential)]
  956. [ComVisible(false)]
  957. public class WaveFormatExtensible
  958. {
  959. public WaveFormatEx Format;
  960. public ushort wReserved;
  961. public SPEAKER dwChannelMask;
  962. public Guid SubFormat;
  963. public WaveFormatExtensible()
  964. {
  965. Format = new WaveFormatEx();
  966. }
  967. }
  968. [StructLayout(LayoutKind.Sequential)]
  969. [ComVisible(false)]
  970. public class AMMediaType
  971. {
  972. #region Structure Variables
  973. public Guid majorType;
  974. public Guid subType;
  975. [MarshalAs(UnmanagedType.Bool)]
  976. public bool fixedSizeSamples;
  977. [MarshalAs(UnmanagedType.Bool)]
  978. public bool temporalCompression;
  979. public int sampleSize;
  980. public Guid formatType;
  981. public IntPtr unkPtr;
  982. public int formatSize;
  983. public IntPtr formatPtr;
  984. #endregion
  985. #region Constructor
  986. public AMMediaType()
  987. {
  988. unkPtr = IntPtr.Zero;
  989. formatPtr = IntPtr.Zero;
  990. Init();
  991. }
  992. public AMMediaType(AMMediaType mt)
  993. : this()
  994. {
  995. Set(mt);
  996. }
  997. #endregion
  998. #region ICloneable Members
  999. public object Clone()
  1000. {
  1001. return new AMMediaType(this);
  1002. }
  1003. #endregion
  1004. #region Overriden Methods
  1005. public override bool Equals(object obj)
  1006. {
  1007. if (obj is AMMediaType)
  1008. {
  1009. AMMediaType _dst = (obj as AMMediaType);
  1010. if ((_dst.majorType != majorType))
  1011. {
  1012. return false;
  1013. }
  1014. if (subType != _dst.subType)
  1015. {
  1016. return false;
  1017. }
  1018. if (formatType != _dst.formatType)
  1019. {
  1020. return false;
  1021. }
  1022. if (formatSize != _dst.formatSize)
  1023. {
  1024. return false;
  1025. }
  1026. if (formatSize > 0)
  1027. {
  1028. byte[] _source = new byte[formatSize];
  1029. byte[] _dest = new byte[formatSize];
  1030. Marshal.Copy(formatPtr, _source, 0, _source.Length);
  1031. Marshal.Copy(_dst.formatPtr, _dest, 0, _dest.Length);
  1032. for (int i = 0; i < _source.Length; i++)
  1033. {
  1034. if (_dest[i] != _source[i]) return false;
  1035. }
  1036. }
  1037. return true;
  1038. }
  1039. return base.Equals(obj);
  1040. }
  1041. public override int GetHashCode()
  1042. {
  1043. return base.GetHashCode();
  1044. }
  1045. #endregion
  1046. #region Public Methods
  1047. public void Set(AMMediaType mt)
  1048. {
  1049. Free();
  1050. majorType = mt.majorType;
  1051. subType = mt.subType;
  1052. fixedSizeSamples = mt.fixedSizeSamples;
  1053. temporalCompression = mt.temporalCompression;
  1054. sampleSize = mt.sampleSize;
  1055. formatType = mt.formatType;
  1056. unkPtr = mt.unkPtr;
  1057. formatPtr = IntPtr.Zero;
  1058. formatSize = mt.formatSize;
  1059. if (unkPtr != IntPtr.Zero)
  1060. {
  1061. Marshal.AddRef(unkPtr);
  1062. }
  1063. if (formatSize > 0)
  1064. {
  1065. SetFormat(mt.formatPtr, formatSize);
  1066. }
  1067. }
  1068. public void Free()
  1069. {
  1070. FreeFormat();
  1071. if (unkPtr != IntPtr.Zero)
  1072. {
  1073. Marshal.Release(unkPtr);
  1074. unkPtr = IntPtr.Zero;
  1075. }
  1076. }
  1077. public void Init()
  1078. {
  1079. Free();
  1080. majorType = Guid.Empty;
  1081. subType = Guid.Empty;
  1082. fixedSizeSamples = true;
  1083. temporalCompression = false;
  1084. sampleSize = 0;
  1085. formatType = Guid.Empty;
  1086. unkPtr = IntPtr.Zero;
  1087. formatPtr = IntPtr.Zero;
  1088. formatSize = 0;
  1089. }
  1090. public void FreeFormat()
  1091. {
  1092. if (formatPtr != IntPtr.Zero)
  1093. {
  1094. Marshal.FreeCoTaskMem(formatPtr);
  1095. formatPtr = IntPtr.Zero;
  1096. }
  1097. formatSize = 0;
  1098. }
  1099. public bool IsValid()
  1100. {
  1101. return (majorType != null && majorType != Guid.Empty);
  1102. }
  1103. public bool IsPartiallySpecified()
  1104. {
  1105. if ((majorType == Guid.Empty) || (formatType == Guid.Empty))
  1106. {
  1107. return true;
  1108. }
  1109. else
  1110. {
  1111. return false;
  1112. }
  1113. }
  1114. public bool MatchesPartial(AMMediaType _dst)
  1115. {
  1116. if ((_dst.majorType != Guid.Empty) && (majorType != _dst.majorType))
  1117. {
  1118. return false;
  1119. }
  1120. if ((_dst.subType != Guid.Empty) && (subType != _dst.subType))
  1121. {
  1122. return false;
  1123. }
  1124. if (_dst.formatType != Guid.Empty)
  1125. {
  1126. if (formatType != _dst.formatType)
  1127. {
  1128. return false;
  1129. }
  1130. if (formatSize != _dst.formatSize)
  1131. {
  1132. return false;
  1133. }
  1134. if (formatSize > 0)
  1135. {
  1136. byte[] _source = new byte[formatSize];
  1137. byte[] _dest = new byte[formatSize];
  1138. Marshal.Copy(formatPtr, _source, 0, _source.Length);
  1139. Marshal.Copy(_dst.formatPtr, _dest, 0, _dest.Length);
  1140. for (int i = 0; i < _source.Length; i++)
  1141. {
  1142. if (_dest[i] != _source[i]) return false;
  1143. }
  1144. }
  1145. }
  1146. return true;
  1147. }
  1148. public void AllocFormat(int nSize)
  1149. {
  1150. FreeFormat();
  1151. if (nSize > 0)
  1152. {
  1153. formatPtr = Marshal.AllocCoTaskMem(nSize);
  1154. formatSize = nSize;
  1155. }
  1156. }
  1157. public void SetFormat(byte[] _format)
  1158. {
  1159. SetFormat(_format, _format.Length);
  1160. }
  1161. public void SetFormat(byte[] _format, int nSize)
  1162. {
  1163. if (_format != null && nSize > 0)
  1164. {
  1165. IntPtr _ptr = Marshal.AllocCoTaskMem(nSize);
  1166. Marshal.Copy(_format, 0, _ptr, nSize);
  1167. SetFormat(_ptr, nSize);
  1168. Marshal.FreeCoTaskMem(_ptr);
  1169. }
  1170. }
  1171. public void SetFormat(IntPtr pFormat, int nSize)
  1172. {
  1173. AllocFormat(nSize);
  1174. if (pFormat != IntPtr.Zero)
  1175. {
  1176. COMHelper.API.CopyMemory(formatPtr, pFormat, formatSize);
  1177. }
  1178. }
  1179. public void SetFormat(WaveFormatEx wfx)
  1180. {
  1181. if (wfx != null)
  1182. {
  1183. int cb = Marshal.SizeOf(wfx);
  1184. IntPtr _ptr = Marshal.AllocCoTaskMem(cb);
  1185. try
  1186. {
  1187. Marshal.StructureToPtr(wfx, _ptr, true);
  1188. SetFormat(_ptr, cb);
  1189. formatType = FormatType.WaveEx;
  1190. }
  1191. finally
  1192. {
  1193. Marshal.FreeCoTaskMem(_ptr);
  1194. }
  1195. }
  1196. }
  1197. public void SetFormat(VideoInfoHeader vih)
  1198. {
  1199. if (vih != null)
  1200. {
  1201. int cb = Marshal.SizeOf(vih);
  1202. IntPtr _ptr = Marshal.AllocCoTaskMem(cb);
  1203. try
  1204. {
  1205. Marshal.StructureToPtr(vih, _ptr, true);
  1206. SetFormat(_ptr, cb);
  1207. formatType = FormatType.VideoInfo;
  1208. }
  1209. finally
  1210. {
  1211. Marshal.FreeCoTaskMem(_ptr);
  1212. }
  1213. }
  1214. }
  1215. public void SetFormat(VideoInfoHeader2 vih)
  1216. {
  1217. if (vih != null)
  1218. {
  1219. int cb = Marshal.SizeOf(vih);
  1220. IntPtr _ptr = Marshal.AllocCoTaskMem(cb);
  1221. try
  1222. {
  1223. Marshal.StructureToPtr(vih, _ptr, true);
  1224. SetFormat(_ptr, cb);
  1225. formatType = FormatType.VideoInfo2;
  1226. }
  1227. finally
  1228. {
  1229. Marshal.FreeCoTaskMem(_ptr);
  1230. }
  1231. }
  1232. }
  1233. public byte[] GetExtraData()
  1234. {
  1235. int _size = 0;
  1236. if (formatPtr != IntPtr.Zero && formatSize != 0)
  1237. {
  1238. if (formatType == FormatType.VideoInfo)
  1239. {
  1240. _size = formatSize - Marshal.SizeOf(typeof(VideoInfoHeader));
  1241. }
  1242. if (formatType == FormatType.VideoInfo2)
  1243. {
  1244. _size = formatSize - Marshal.SizeOf(typeof(VideoInfoHeader2));
  1245. }
  1246. if (formatType == FormatType.WaveEx || formatType == FormatType.Mpeg2Audio || formatType == FormatType.DolbyAC3)
  1247. {
  1248. _size = formatSize - Marshal.SizeOf(typeof(WaveFormatEx));
  1249. }
  1250. if (formatType == FormatType.Mpeg2Video)
  1251. {
  1252. _size = formatSize - Marshal.SizeOf(typeof(VideoInfoHeader2)) - 18;
  1253. }
  1254. }
  1255. byte[] _data = null;
  1256. if (_size > 0)
  1257. {
  1258. _data = new byte[_size];
  1259. IntPtr _ptr = new IntPtr(formatPtr.ToInt32() + (formatSize - _size));
  1260. Marshal.Copy(_ptr, _data, 0, _size);
  1261. }
  1262. return _data;
  1263. }
  1264. public void AddFormatExtraData(IntPtr _data, int _size)
  1265. {
  1266. if (_size > 0 && _data != IntPtr.Zero)
  1267. {
  1268. byte[] _buffer = new byte[_size];
  1269. Marshal.Copy(_data, _buffer, 0, _size);
  1270. AddFormatExtraData(_buffer,_size);
  1271. }
  1272. }
  1273. public void AddFormatExtraData(byte[] _data, int _size)
  1274. {
  1275. if (_data != null && _size > 0)
  1276. {
  1277. if (formatPtr != IntPtr.Zero && formatSize != 0)
  1278. {
  1279. IntPtr _ptr = Marshal.AllocCoTaskMem(formatSize + _size);
  1280. COMHelper.API.CopyMemory(_ptr, formatPtr, formatSize);
  1281. Marshal.FreeCoTaskMem(formatPtr);
  1282. formatPtr = _ptr;
  1283. _ptr = new IntPtr(_ptr.ToInt32() + formatSize);
  1284. Marshal.Copy(_data, 0, _ptr, _size);
  1285. formatSize += _size;
  1286. }
  1287. }
  1288. }
  1289. public void AddFormatExtraData(byte[] _data)
  1290. {
  1291. AddFormatExtraData(_data, _data.Length);
  1292. }
  1293. public byte[] ToArray()
  1294. {
  1295. byte[] _data = null;
  1296. if (formatPtr != IntPtr.Zero && formatSize != 0)
  1297. {
  1298. _data = new byte[formatSize];
  1299. Marshal.Copy(formatPtr, _data, 0, formatSize);
  1300. }
  1301. return _data;
  1302. }
  1303. public long GetFrameRate()
  1304. {
  1305. if (majorType == MediaType.Video && formatPtr != IntPtr.Zero)
  1306. {
  1307. VideoInfoHeader _vih = (VideoInfoHeader)Marshal.PtrToStructure(formatPtr, typeof(VideoInfoHeader));
  1308. return _vih.AvgTimePerFrame;
  1309. }
  1310. return 0;
  1311. }
  1312. #endregion
  1313. #region Operators
  1314. public static bool operator ==(AMMediaType _src, AMMediaType _dest)
  1315. {
  1316. if (System.Object.ReferenceEquals(_src, _dest))
  1317. {
  1318. return true;
  1319. }
  1320. if (((object)_src == null) || ((object)_dest == null))
  1321. {
  1322. return false;
  1323. }
  1324. return _src.Equals(_dest);
  1325. }
  1326. public static bool operator !=(AMMediaType _src, AMMediaType _dest)
  1327. {
  1328. return !(_src == _dest);
  1329. }
  1330. public static implicit operator WaveFormatEx(AMMediaType mt)
  1331. {
  1332. if (mt.formatPtr != IntPtr.Zero && mt.formatSize != 0 && mt.formatType == FormatType.WaveEx)
  1333. {
  1334. return (WaveFormatEx)Marshal.PtrToStructure(mt.formatPtr, typeof(WaveFormatEx));
  1335. }
  1336. return null;
  1337. }
  1338. public static implicit operator VideoInfoHeader(AMMediaType mt)
  1339. {
  1340. if (mt.formatPtr != IntPtr.Zero && mt.formatSize != 0)
  1341. {
  1342. return (VideoInfoHeader)Marshal.PtrToStructure(mt.formatPtr, typeof(VideoInfoHeader));
  1343. }
  1344. return null;
  1345. }
  1346. public static implicit operator VideoInfoHeader2(AMMediaType mt)
  1347. {
  1348. if (mt.formatPtr != IntPtr.Zero && mt.formatSize != 0 && (mt.formatType == FormatType.VideoInfo2 || mt.formatType == FormatType.Mpeg2Video))
  1349. {
  1350. return (VideoInfoHeader2)Marshal.PtrToStructure(mt.formatPtr, typeof(VideoInfoHeader2));
  1351. }
  1352. return null;
  1353. }
  1354. public static implicit operator BitmapInfoHeader(AMMediaType mt)
  1355. {
  1356. if (mt.formatType == FormatType.VideoInfo2 || mt.formatType == FormatType.Mpeg2Video)
  1357. {
  1358. VideoInfoHeader2 _vih = (VideoInfoHeader2)mt;
  1359. if (_vih != null) return _vih.BmiHeader;
  1360. }
  1361. if (mt.formatType == FormatType.VideoInfo || mt.formatType == FormatType.MpegVideo)
  1362. {
  1363. VideoInfoHeader _vih = (VideoInfoHeader)mt;
  1364. if (_vih != null) return _vih.BmiHeader;
  1365. }
  1366. return null;
  1367. }
  1368. #endregion
  1369. #region Static Methods
  1370. public static bool IsPartiallySpecified(AMMediaType mt)
  1371. {
  1372. if ((mt.majorType == Guid.Empty) || (mt.formatType == Guid.Empty))
  1373. {
  1374. return true;
  1375. }
  1376. else
  1377. {
  1378. return false;
  1379. }
  1380. }
  1381. public static bool MatchesPartial(AMMediaType _src, AMMediaType _dst)
  1382. {
  1383. if ((_dst.majorType != Guid.Empty) && (_src.majorType != _dst.majorType))
  1384. {
  1385. return false;
  1386. }
  1387. if ((_dst.subType != Guid.Empty) && (_src.subType != _dst.subType))
  1388. {
  1389. return false;
  1390. }
  1391. if (_dst.formatType != Guid.Empty)
  1392. {
  1393. if (_src.formatType != _dst.formatType)
  1394. {
  1395. return false;
  1396. }
  1397. if (_src.formatSize != _dst.formatSize)
  1398. {
  1399. return false;
  1400. }
  1401. if (_src.formatSize > 0)
  1402. {
  1403. byte[] _source = new byte[_src.formatSize];
  1404. byte[] _dest = new byte[_src.formatSize];
  1405. Marshal.Copy(_src.formatPtr, _source, 0, _source.Length);
  1406. Marshal.Copy(_dst.formatPtr, _dest, 0, _dest.Length);
  1407. for (int i = 0; i < _source.Length; i++)
  1408. {
  1409. if (_dest[i] != _source[i]) return false;
  1410. }
  1411. }
  1412. }
  1413. return true;
  1414. }
  1415. public static void Init(ref AMMediaType mt)
  1416. {
  1417. if (((object)mt) == null)
  1418. {
  1419. mt = new AMMediaType();
  1420. }
  1421. else
  1422. {
  1423. Free(ref mt);
  1424. }
  1425. mt.majorType = Guid.Empty;
  1426. mt.subType = Guid.Empty;
  1427. mt.fixedSizeSamples = true;
  1428. mt.temporalCompression = false;
  1429. mt.sampleSize = 0;
  1430. mt.formatType = Guid.Empty;
  1431. mt.unkPtr = IntPtr.Zero;
  1432. mt.formatPtr = IntPtr.Zero;
  1433. mt.formatSize = 0;
  1434. }
  1435. public static void Copy(AMMediaType mt, ref AMMediaType _dest)
  1436. {
  1437. if (((object)_dest) == null)
  1438. {
  1439. _dest = new AMMediaType();
  1440. }
  1441. else
  1442. {
  1443. Free(ref _dest);
  1444. }
  1445. _dest.majorType = mt.majorType;
  1446. _dest.subType = mt.subType;
  1447. _dest.fixedSizeSamples = mt.fixedSizeSamples;
  1448. _dest.temporalCompression = mt.temporalCompression;
  1449. _dest.sampleSize = mt.sampleSize;
  1450. _dest.formatType = mt.formatType;
  1451. _dest.unkPtr = mt.unkPtr;
  1452. _dest.formatPtr = IntPtr.Zero;
  1453. _dest.formatSize = mt.formatSize;
  1454. if (_dest.unkPtr != IntPtr.Zero)
  1455. {
  1456. Marshal.AddRef(_dest.unkPtr);
  1457. }
  1458. if (_dest.formatSize > 0)
  1459. {
  1460. _dest.formatPtr = Marshal.AllocCoTaskMem(_dest.formatSize);
  1461. COMHelper.API.CopyMemory(_dest.formatPtr, mt.formatPtr, _dest.formatSize);
  1462. }
  1463. }
  1464. public static void Free(ref AMMediaType mt)
  1465. {
  1466. if (mt != null)
  1467. {
  1468. FreeFormat(ref mt);
  1469. if (mt.unkPtr != IntPtr.Zero)
  1470. {
  1471. Marshal.Release(mt.unkPtr);
  1472. mt.unkPtr = IntPtr.Zero;
  1473. }
  1474. }
  1475. }
  1476. public static void AllocFormat(ref AMMediaType mt, int nSize)
  1477. {
  1478. FreeFormat(ref mt);
  1479. if (mt != null && nSize > 0)
  1480. {
  1481. mt.formatPtr = Marshal.AllocCoTaskMem(nSize);
  1482. mt.formatSize = nSize;
  1483. }
  1484. }
  1485. public static void SetFormat(ref AMMediaType mt, IntPtr pFormat, int nSize)
  1486. {
  1487. AllocFormat(ref mt, nSize);
  1488. if (mt != null && pFormat != IntPtr.Zero)
  1489. {
  1490. COMHelper.API.CopyMemory(mt.formatPtr, pFormat, mt.formatSize);
  1491. }
  1492. }
  1493. public static void SetFormat(ref AMMediaType mt, ref WaveFormatEx wfx)
  1494. {
  1495. if (wfx != null)
  1496. {
  1497. int cb = Marshal.SizeOf(wfx);
  1498. IntPtr _ptr = Marshal.AllocCoTaskMem(cb);
  1499. try
  1500. {
  1501. Marshal.StructureToPtr(wfx, _ptr, true);
  1502. SetFormat(ref mt, _ptr, cb);
  1503. if (mt != null)
  1504. {
  1505. mt.formatType = FormatType.WaveEx;
  1506. }
  1507. }
  1508. finally
  1509. {
  1510. Marshal.FreeCoTaskMem(_ptr);
  1511. }
  1512. }
  1513. }
  1514. public static void SetFormat(ref AMMediaType mt, ref VideoInfoHeader vih)
  1515. {
  1516. if (vih != null)
  1517. {
  1518. int cb = Marshal.SizeOf(vih);
  1519. IntPtr _ptr = Marshal.AllocCoTaskMem(cb);
  1520. try
  1521. {
  1522. Marshal.StructureToPtr(vih, _ptr, true);
  1523. SetFormat(ref mt, _ptr, cb);
  1524. if (mt != null)
  1525. {
  1526. mt.formatType = FormatType.VideoInfo;
  1527. }
  1528. }
  1529. finally
  1530. {
  1531. Marshal.FreeCoTaskMem(_ptr);
  1532. }
  1533. }
  1534. }
  1535. public static void FreeFormat(ref AMMediaType mt)
  1536. {
  1537. if (mt != null)
  1538. {
  1539. if (mt.formatPtr != IntPtr.Zero)
  1540. {
  1541. Marshal.FreeCoTaskMem(mt.formatPtr);
  1542. mt.formatPtr = IntPtr.Zero;
  1543. }
  1544. mt.formatSize = 0;
  1545. }
  1546. }
  1547. public static bool IsValid(AMMediaType mt)
  1548. {
  1549. return (mt.majorType != null && mt.majorType != Guid.Empty);
  1550. }
  1551. public static bool AreEquals(AMMediaType _src, AMMediaType _dst)
  1552. {
  1553. if ((_dst.majorType != _src.majorType))
  1554. {
  1555. return false;
  1556. }
  1557. if (_src.subType != _dst.subType)
  1558. {
  1559. return false;
  1560. }
  1561. if (_src.formatType != _dst.formatType)
  1562. {
  1563. return false;
  1564. }
  1565. if (_src.formatSize != _dst.formatSize)
  1566. {
  1567. return false;
  1568. }
  1569. if (_src.formatSize > 0)
  1570. {
  1571. byte[] _source = new byte[_src.formatSize];
  1572. byte[] _dest = new byte[_src.formatSize];
  1573. Marshal.Copy(_src.formatPtr, _source, 0, _source.Length);
  1574. Marshal.Copy(_dst.formatPtr, _dest, 0, _dest.Length);
  1575. for (int i = 0; i < _source.Length; i++)
  1576. {
  1577. if (_dest[i] != _source[i]) return false;
  1578. }
  1579. }
  1580. return true;
  1581. }
  1582. #endregion
  1583. }
  1584. [ComVisible(false)]
  1585. public enum PinDirection // PIN_DIRECTION
  1586. {
  1587. Input, // PINDIR_INPUT
  1588. Output // PINDIR_OUTPUT
  1589. }
  1590. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
  1591. [ComVisible(false)]
  1592. public struct PinInfo
  1593. {
  1594. [MarshalAs(UnmanagedType.Interface)]
  1595. public IBaseFilter filter;
  1596. public PinDirection dir;
  1597. [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
  1598. public string name;
  1599. }
  1600. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
  1601. [ComVisible(false)]
  1602. public struct FilterInfo
  1603. {
  1604. [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
  1605. public string achName;
  1606. [MarshalAs(UnmanagedType.Interface)]
  1607. public IFilterGraph pGraph;
  1608. }
  1609. [ComVisible(false)]
  1610. [StructLayout(LayoutKind.Sequential)]
  1611. public class AllocatorProperties
  1612. {
  1613. public int cBuffers;
  1614. public int cbBuffer;
  1615. public int cbAlign;
  1616. public int cbPrefix;
  1617. }
  1618. [ComVisible(false)]
  1619. public static class PinCategory
  1620. {
  1621. public static readonly Guid AnalogVideoIn = new Guid(0xfb6c4283, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1622. public static readonly Guid Capture = new Guid(0xfb6c4281, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1623. public static readonly Guid CC = new Guid(0xfb6c4289, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1624. public static readonly Guid EDS = new Guid(0xfb6c4287, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1625. public static readonly Guid NABTS = new Guid(0xfb6c4286, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1626. public static readonly Guid Preview = new Guid(0xfb6c4282, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1627. public static readonly Guid Still = new Guid(0xfb6c428a, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1628. public static readonly Guid TeleText = new Guid(0xfb6c4288, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1629. public static readonly Guid TimeCode = new Guid(0xfb6c428b, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1630. public static readonly Guid VBI = new Guid(0xfb6c4284, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1631. public static readonly Guid VideoPort = new Guid(0xfb6c4285, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1632. public static readonly Guid VideoPortVBI = new Guid(0xfb6c428c, 0x353, 0x11d1, 0x90, 0x5f, 0, 0, 0xc0, 0xcc, 0x16, 0xba);
  1633. }
  1634. [ComVisible(false)]
  1635. public enum KSPropertySupport
  1636. {
  1637. Get = 1,
  1638. Set = 2
  1639. }
  1640. [ComVisible(false)]
  1641. [StructLayout(LayoutKind.Sequential)]
  1642. public class DsLong
  1643. {
  1644. private long Value;
  1645. public DsLong(long Value)
  1646. {
  1647. this.Value = Value;
  1648. }
  1649. public override string ToString()
  1650. {
  1651. return this.Value.ToString();
  1652. }
  1653. public override int GetHashCode()
  1654. {
  1655. return this.Value.GetHashCode();
  1656. }
  1657. public static implicit operator long(DsLong l)
  1658. {
  1659. return l.Value;
  1660. }
  1661. public static implicit operator DsLong(long l)
  1662. {
  1663. return new DsLong(l);
  1664. }
  1665. public long ToInt64()
  1666. {
  1667. return this.Value;
  1668. }
  1669. public static DsLong FromInt64(long l)
  1670. {
  1671. return new DsLong(l);
  1672. }
  1673. }
  1674. [ComVisible(false)]
  1675. [StructLayout(LayoutKind.Explicit)]
  1676. public class DsGuid
  1677. {
  1678. public static readonly DsGuid Empty = Guid.Empty;
  1679. [FieldOffset(0)]
  1680. private Guid guid;
  1681. public DsGuid()
  1682. {
  1683. this.guid = Guid.Empty;
  1684. }
  1685. public DsGuid(Guid g)
  1686. {
  1687. this.guid = g;
  1688. }
  1689. public DsGuid(string g)
  1690. {
  1691. this.guid = new Guid(g);
  1692. }
  1693. public static DsGuid FromGuid(Guid g)
  1694. {
  1695. return new DsGuid(g);
  1696. }
  1697. public override int GetHashCode()
  1698. {
  1699. return this.guid.GetHashCode();
  1700. }
  1701. public static implicit operator Guid(DsGuid g)
  1702. {
  1703. return g.guid;
  1704. }
  1705. public static implicit operator DsGuid(Guid g)
  1706. {
  1707. return new DsGuid(g);
  1708. }
  1709. public Guid ToGuid()
  1710. {
  1711. return this.guid;
  1712. }
  1713. public override string ToString()
  1714. {
  1715. return this.guid.ToString();
  1716. }
  1717. public string ToString(string format)
  1718. {
  1719. return this.guid.ToString(format);
  1720. }
  1721. }
  1722. [Flags]
  1723. [ComVisible(false)]
  1724. public enum AMSeekingSeekingCapabilities
  1725. {
  1726. CanDoSegments = 0x80,
  1727. CanGetCurrentPos = 8,
  1728. CanGetDuration = 0x20,
  1729. CanGetStopPos = 0x10,
  1730. CanPlayBackwards = 0x40,
  1731. CanSeekAbsolute = 1,
  1732. CanSeekBackwards = 4,
  1733. CanSeekForwards = 2,
  1734. None = 0,
  1735. Source = 0x100
  1736. }
  1737. [Flags]
  1738. [ComVisible(false)]
  1739. public enum AMSeekingSeekingFlags
  1740. {
  1741. AbsolutePositioning = 1,
  1742. IncrementalPositioning = 3,
  1743. NoFlush = 0x20,
  1744. NoPositioning = 0,
  1745. PositioningBitsMask = 3,
  1746. RelativePositioning = 2,
  1747. ReturnTime = 8,
  1748. SeekToKeyFrame = 4,
  1749. Segment = 0x10
  1750. }
  1751. [Flags]
  1752. [ComVisible(false)]
  1753. public enum Merit
  1754. {
  1755. None = 0,
  1756. Preferred = 0x800000,
  1757. Normal = 0x600000,
  1758. Unlikely = 0x400000,
  1759. DoNotUse = 0x200000,
  1760. SWCompressor = 0x100000,
  1761. HWCompressor = 0x100050
  1762. }
  1763. [ComVisible(false)]
  1764. [StructLayout(LayoutKind.Sequential)]
  1765. public struct Quality
  1766. {
  1767. public QualityMessageType Type;
  1768. public int Proportion;
  1769. public long Late;
  1770. public long TimeStamp;
  1771. }
  1772. /// <summary>
  1773. /// From QualityMessageType
  1774. /// </summary>
  1775. [ComVisible(false)]
  1776. public enum QualityMessageType
  1777. {
  1778. Famine,
  1779. Flood
  1780. }
  1781. [Flags]
  1782. [ComVisible(false)]
  1783. public enum AMGBF
  1784. {
  1785. None = 0,
  1786. PrevFrameSkipped = 1,
  1787. NotAsyncPoint = 2,
  1788. NoWait = 4,
  1789. NoDDSurfaceLock = 8
  1790. }
  1791. /// <summary>
  1792. /// From AM_VIDEO_FLAG_* defines
  1793. /// </summary>
  1794. [Flags]
  1795. [ComVisible(false)]
  1796. public enum AMVideoFlag
  1797. {
  1798. FieldMask = 0x0003,
  1799. InterleavedFrame = 0x0000,
  1800. Field1 = 0x0001,
  1801. Field2 = 0x0002,
  1802. Field1First = 0x0004,
  1803. Weave = 0x0008,
  1804. IPBMask = 0x0030,
  1805. ISample = 0x0000,
  1806. PSample = 0x0010,
  1807. BSample = 0x0020,
  1808. RepeatField = 0x0040
  1809. }
  1810. /// <summary>
  1811. /// From AM_SAMPLE_PROPERTY_FLAGS
  1812. /// </summary>
  1813. [Flags]
  1814. [ComVisible(false)]
  1815. public enum AMSamplePropertyFlags
  1816. {
  1817. SplicePoint = 0x01,
  1818. PreRoll = 0x02,
  1819. DataDiscontinuity = 0x04,
  1820. TypeChanged = 0x08,
  1821. TimeValid = 0x10,
  1822. MediaTimeValid = 0x20,
  1823. TimeDiscontinuity = 0x40,
  1824. FlushOnPause = 0x80,
  1825. StopValid = 0x100,
  1826. EndOfStream = 0x200,
  1827. Media = 0,
  1828. Control = 1
  1829. }
  1830. [ComVisible(false)]
  1831. public enum OABool
  1832. {
  1833. False = 0,
  1834. True = -1 // bools in .NET use 1, not -1
  1835. }
  1836. [StructLayout(LayoutKind.Sequential)]
  1837. [ComVisible(false)]
  1838. public class RegPinMedium
  1839. {
  1840. public Guid clsMedium;
  1841. public int dw1;
  1842. public int dw2;
  1843. }
  1844. [StructLayout(LayoutKind.Sequential)]
  1845. [ComVisible(false)]
  1846. public class AMSample2Properties
  1847. {
  1848. public int cbData;
  1849. public AMVideoFlag dwTypeSpecificFlags;
  1850. public AMSamplePropertyFlags dwSampleFlags;
  1851. public int lActual;
  1852. public long tStart;
  1853. public long tStop;
  1854. public int dwStreamId;
  1855. public IntPtr pMediaType;
  1856. public IntPtr pbBuffer; // BYTE *
  1857. public int cbBuffer;
  1858. }
  1859. [StructLayout(LayoutKind.Sequential)]
  1860. [ComVisible(false)]
  1861. public class RegFilter2
  1862. {
  1863. public int dwVersion;
  1864. public Merit dwMerit;
  1865. public int cPins;
  1866. public IntPtr rgPins;
  1867. }
  1868. [StructLayout(LayoutKind.Sequential)]
  1869. [ComVisible(false)]
  1870. public class DsSize
  1871. {
  1872. public Int32 cx;
  1873. public Int32 cy;
  1874. public DsSize(Int32 cx, Int32 cy) { this.cx = cx; this.cy = cy; }
  1875. public DsSize() : this(0, 0) { }
  1876. }
  1877. [Flags]
  1878. [ComVisible(false)]
  1879. public enum PropStatus : int
  1880. {
  1881. Dirty = 0x1,
  1882. Validate = 0x2,
  1883. Clean = 0x4
  1884. }
  1885. [StructLayout(LayoutKind.Sequential)]
  1886. [ComVisible(false)]
  1887. public class PropPageInfo
  1888. {
  1889. public int cb;
  1890. public IntPtr pszTitle;
  1891. public DsSize size;
  1892. public IntPtr pszDocString;
  1893. public IntPtr pszHelpFile;
  1894. [MarshalAs(UnmanagedType.U4)]
  1895. public int dwHelpContext;
  1896. public PropPageInfo()
  1897. {
  1898. size = new DsSize();
  1899. cb = Marshal.SizeOf(this);
  1900. pszTitle = IntPtr.Zero;
  1901. pszDocString = IntPtr.Zero;
  1902. pszHelpFile = IntPtr.Zero;
  1903. dwHelpContext = 0;
  1904. }
  1905. }
  1906. [ComVisible(false)]
  1907. public enum SWOptions
  1908. {
  1909. Hide = 0,
  1910. ShowNormal = 1,
  1911. Normal = ShowNormal,
  1912. ShowMinimized = 2,
  1913. ShowMaximized = 3,
  1914. Maximize = ShowMaximized,
  1915. ShowNoActivate = 4,
  1916. Show = 5,
  1917. Minimize = 6,
  1918. ShowMinNoActive = 7,
  1919. ShowNA = 8,
  1920. Restore = 9,
  1921. ShowDefault = 10,
  1922. ForceMinimize = 11,
  1923. Max = ForceMinimize
  1924. }
  1925. [Flags]
  1926. [ComVisible(false)]
  1927. public enum AMPushSourceFlags
  1928. {
  1929. None = 0,
  1930. InternalRM = 0x00000001,
  1931. NotLive = 0x00000002,
  1932. PrivateClock = 0x00000004,
  1933. UseStreamClock = 0x00010000,
  1934. UseClockChain = 0x00020000,
  1935. }
  1936. [Flags]
  1937. [ComVisible(false)]
  1938. public enum AMFilterMiscFlags
  1939. {
  1940. None = 0,
  1941. IsRenderer = 0x00000001,
  1942. IsSource = 0x00000002
  1943. }
  1944. [Flags]
  1945. [ComVisible(false)]
  1946. public enum AMStreamInfoFlags
  1947. {
  1948. None = 0x00000000,
  1949. StartDefined = 0x00000001,
  1950. StopDefined = 0x00000002,
  1951. Discarding = 0x00000004,
  1952. StopSendExtra = 0x00000010
  1953. }
  1954. [StructLayout(LayoutKind.Sequential)]
  1955. [ComVisible(false)]
  1956. public struct AMStreamInfo
  1957. {
  1958. public long tStart;
  1959. public long tStop;
  1960. public int dwStartCookie;
  1961. public int dwStopCookie;
  1962. public AMStreamInfoFlags dwFlags;
  1963. }
  1964. [StructLayout(LayoutKind.Sequential)]
  1965. [ComVisible(false)]
  1966. public class VideoStreamConfigCaps
  1967. {
  1968. public Guid guid;
  1969. public AnalogVideoStandard VideoStandard;
  1970. public Size InputSize;
  1971. public Size MinCroppingSize;
  1972. public Size MaxCroppingSize;
  1973. public int CropGranularityX;
  1974. public int CropGranularityY;
  1975. public int CropAlignX;
  1976. public int CropAlignY;
  1977. public Size MinOutputSize;
  1978. public Size MaxOutputSize;
  1979. public int OutputGranularityX;
  1980. public int OutputGranularityY;
  1981. public int StretchTapsX;
  1982. public int StretchTapsY;
  1983. public int ShrinkTapsX;
  1984. public int ShrinkTapsY;
  1985. public long MinFrameInterval;
  1986. public long MaxFrameInterval;
  1987. public int MinBitsPerSecond;
  1988. public int MaxBitsPerSecond;
  1989. public VideoStreamConfigCaps()
  1990. {
  1991. InputSize = new Size();
  1992. MinCroppingSize = new Size();
  1993. MaxCroppingSize = new Size();
  1994. MinOutputSize = new Size();
  1995. MaxOutputSize = new Size();
  1996. }
  1997. }
  1998. [Flags]
  1999. [ComVisible(false)]
  2000. public enum AnalogVideoStandard
  2001. {
  2002. None = 0x00000000,
  2003. NTSC_M = 0x00000001,
  2004. NTSC_M_J = 0x00000002,
  2005. NTSC_433 = 0x00000004,
  2006. PAL_B = 0x00000010,
  2007. PAL_D = 0x00000020,
  2008. PAL_G = 0x00000040,
  2009. PAL_H = 0x00000080,
  2010. PAL_I = 0x00000100,
  2011. PAL_M = 0x00000200,
  2012. PAL_N = 0x00000400,
  2013. PAL_60 = 0x00000800,
  2014. SECAM_B = 0x00001000,
  2015. SECAM_D = 0x00002000,
  2016. SECAM_G = 0x00004000,
  2017. SECAM_H = 0x00008000,
  2018. SECAM_K = 0x00010000,
  2019. SECAM_K1 = 0x00020000,
  2020. SECAM_L = 0x00040000,
  2021. SECAM_L1 = 0x00080000,
  2022. PAL_N_COMBO = 0x00100000,
  2023. NTSCMask = 0x00000007,
  2024. PALMask = 0x00100FF0,
  2025. SECAMMask = 0x000FF000
  2026. }
  2027. #region Interfaces
  2028. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2029. Guid("56a868b2-0ad4-11ce-b03a-0020af0ba770"),
  2030. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  2031. public interface IMediaPosition
  2032. {
  2033. [PreserveSig]
  2034. int get_Duration([Out] out double pLength);
  2035. [PreserveSig]
  2036. int put_CurrentPosition([In] double llTime);
  2037. [PreserveSig]
  2038. int get_CurrentPosition([Out] out double pllTime);
  2039. [PreserveSig]
  2040. int get_StopTime([Out] out double pllTime);
  2041. [PreserveSig]
  2042. int put_StopTime([In] double llTime);
  2043. [PreserveSig]
  2044. int get_PrerollTime([Out] out double pllTime);
  2045. [PreserveSig]
  2046. int put_PrerollTime([In] double llTime);
  2047. [PreserveSig]
  2048. int put_Rate([In] double dRate);
  2049. [PreserveSig]
  2050. int get_Rate([Out] out double pdRate);
  2051. [PreserveSig]
  2052. int CanSeekForward([Out] out OABool pCanSeekForward);
  2053. [PreserveSig]
  2054. int CanSeekBackward([Out] out OABool pCanSeekBackward);
  2055. }
  2056. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2057. Guid("b79bb0b0-33c1-11d1-abe1-00a0c905f375"),
  2058. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2059. public interface IFilterMapper2
  2060. {
  2061. [PreserveSig]
  2062. int CreateCategory(
  2063. [In, MarshalAs(UnmanagedType.LPStruct)] Guid clsidCategory,
  2064. [In] Merit dwCategoryMerit,
  2065. [In, MarshalAs(UnmanagedType.LPWStr)] string Description
  2066. );
  2067. [PreserveSig]
  2068. int UnregisterFilter(
  2069. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid clsidCategory,
  2070. [In, MarshalAs(UnmanagedType.LPWStr)] string szInstance,
  2071. [In, MarshalAs(UnmanagedType.LPStruct)] Guid Filter
  2072. );
  2073. [PreserveSig]
  2074. int RegisterFilter(
  2075. [In, MarshalAs(UnmanagedType.LPStruct)] Guid clsidFilter,
  2076. [In, MarshalAs(UnmanagedType.LPWStr)] string Name,
  2077. [In] IntPtr ppMoniker,
  2078. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pclsidCategory,
  2079. [In, MarshalAs(UnmanagedType.LPWStr)] string szInstance,
  2080. [In] IntPtr prf2
  2081. );
  2082. [PreserveSig]
  2083. int EnumMatchingFilters(
  2084. [Out] out IEnumMoniker ppEnum,
  2085. [In] int dwFlags,
  2086. [In, MarshalAs(UnmanagedType.Bool)] bool bExactMatch,
  2087. [In] Merit dwMerit,
  2088. [In, MarshalAs(UnmanagedType.Bool)] bool bInputNeeded,
  2089. [In] int cInputTypes,
  2090. [In, MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct)] Guid[] pInputTypes, // GUID *
  2091. [In] RegPinMedium pMedIn,
  2092. [In] DsGuid pPinCategoryIn,
  2093. [In, MarshalAs(UnmanagedType.Bool)] bool bRender,
  2094. [In, MarshalAs(UnmanagedType.Bool)] bool bOutputNeeded,
  2095. [In] int cOutputTypes,
  2096. [In, MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct)] Guid[] pOutputTypes, // GUID *
  2097. [In] RegPinMedium pMedOut,
  2098. [In] DsGuid pPinCategoryOut
  2099. );
  2100. }
  2101. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2102. Guid("56a868a9-0ad4-11ce-b03a-0020af0ba770"),
  2103. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2104. public interface IGraphBuilder : IFilterGraph
  2105. {
  2106. #region IFilterGraph Methods
  2107. [PreserveSig]
  2108. new int AddFilter(
  2109. [In] IBaseFilter pFilter,
  2110. [In, MarshalAs(UnmanagedType.LPWStr)] string pName
  2111. );
  2112. [PreserveSig]
  2113. new int RemoveFilter([In] IBaseFilter pFilter);
  2114. [PreserveSig]
  2115. new int EnumFilters([Out] out IEnumFilters ppEnum);
  2116. [PreserveSig]
  2117. new int FindFilterByName(
  2118. [In, MarshalAs(UnmanagedType.LPWStr)] string pName,
  2119. [Out] out IBaseFilter ppFilter
  2120. );
  2121. [PreserveSig]
  2122. new int ConnectDirect(
  2123. [In] IPin ppinOut,
  2124. [In] IPin ppinIn,
  2125. [In, MarshalAs(UnmanagedType.LPStruct)]
  2126. AMMediaType pmt
  2127. );
  2128. [PreserveSig]
  2129. new int Reconnect([In] IPin ppin);
  2130. [PreserveSig]
  2131. new int Disconnect([In] IPin ppin);
  2132. [PreserveSig]
  2133. new int SetDefaultSyncSource();
  2134. #endregion
  2135. [PreserveSig]
  2136. int Connect(
  2137. [In] IPin ppinOut,
  2138. [In] IPin ppinIn
  2139. );
  2140. [PreserveSig]
  2141. int Render([In] IPin ppinOut);
  2142. [PreserveSig]
  2143. int RenderFile(
  2144. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFile,
  2145. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrPlayList
  2146. );
  2147. [PreserveSig]
  2148. int AddSourceFilter(
  2149. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFileName,
  2150. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFilterName,
  2151. [Out] out IBaseFilter ppFilter
  2152. );
  2153. [PreserveSig]
  2154. int SetLogFile(IntPtr hFile); // DWORD_PTR
  2155. [PreserveSig]
  2156. int Abort();
  2157. [PreserveSig]
  2158. int ShouldOperationContinue();
  2159. }
  2160. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2161. Guid("36b73882-c2c8-11cf-8b46-00805f6cef60"),
  2162. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2163. public interface IFilterGraph2 : IGraphBuilder
  2164. {
  2165. #region IFilterGraph Methods
  2166. [PreserveSig]
  2167. new int AddFilter(
  2168. [In] IBaseFilter pFilter,
  2169. [In, MarshalAs(UnmanagedType.LPWStr)] string pName
  2170. );
  2171. [PreserveSig]
  2172. new int RemoveFilter([In] IBaseFilter pFilter);
  2173. [PreserveSig]
  2174. new int EnumFilters([Out] out IEnumFilters ppEnum);
  2175. [PreserveSig]
  2176. new int FindFilterByName(
  2177. [In, MarshalAs(UnmanagedType.LPWStr)] string pName,
  2178. [Out] out IBaseFilter ppFilter
  2179. );
  2180. [PreserveSig]
  2181. new int ConnectDirect(
  2182. [In] IPin ppinOut,
  2183. [In] IPin ppinIn,
  2184. [In, MarshalAs(UnmanagedType.LPStruct)]
  2185. AMMediaType pmt
  2186. );
  2187. [PreserveSig]
  2188. new int Reconnect([In] IPin ppin);
  2189. [PreserveSig]
  2190. new int Disconnect([In] IPin ppin);
  2191. [PreserveSig]
  2192. new int SetDefaultSyncSource();
  2193. #endregion
  2194. #region IGraphBuilder Method
  2195. [PreserveSig]
  2196. new int Connect(
  2197. [In] IPin ppinOut,
  2198. [In] IPin ppinIn
  2199. );
  2200. [PreserveSig]
  2201. new int Render([In] IPin ppinOut);
  2202. [PreserveSig]
  2203. new int RenderFile(
  2204. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFile,
  2205. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrPlayList
  2206. );
  2207. [PreserveSig]
  2208. new int AddSourceFilter(
  2209. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFileName,
  2210. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFilterName,
  2211. [Out] out IBaseFilter ppFilter
  2212. );
  2213. [PreserveSig]
  2214. new int SetLogFile(IntPtr hFile); // DWORD_PTR
  2215. [PreserveSig]
  2216. new int Abort();
  2217. [PreserveSig]
  2218. new int ShouldOperationContinue();
  2219. #endregion
  2220. [PreserveSig]
  2221. int AddSourceFilterForMoniker(
  2222. [In] IMoniker pMoniker,
  2223. [In] IBindCtx pCtx,
  2224. [In, MarshalAs(UnmanagedType.LPWStr)] string lpcwstrFilterName,
  2225. [Out] out IBaseFilter ppFilter
  2226. );
  2227. [PreserveSig]
  2228. int ReconnectEx(
  2229. [In] IPin ppin,
  2230. [In] AMMediaType pmt
  2231. );
  2232. [PreserveSig]
  2233. int RenderEx(
  2234. [In] IPin pPinOut,
  2235. [In] AMRenderExFlags dwFlags,
  2236. [In] IntPtr pvContext // DWORD *
  2237. );
  2238. }
  2239. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2240. Guid("36b73883-c2c8-11cf-8b46-00805f6cef60"),
  2241. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2242. public interface ISeekingPassThru
  2243. {
  2244. int Init(
  2245. [In, MarshalAs(UnmanagedType.Bool)] bool bSupportRendering,
  2246. [In] IPin pPin
  2247. );
  2248. }
  2249. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2250. Guid("56a868a2-0ad4-11ce-b03a-0020af0ba770"),
  2251. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2252. public interface IMediaEventSink
  2253. {
  2254. [PreserveSig]
  2255. int Notify(
  2256. [In] EventCode evCode,
  2257. [In] IntPtr EventParam1,
  2258. [In] IntPtr EventParam2
  2259. );
  2260. }
  2261. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2262. Guid("B196B28B-BAB4-101A-B69C-00AA00341D07"),
  2263. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2264. public interface ISpecifyPropertyPages
  2265. {
  2266. [PreserveSig]
  2267. int GetPages(out DsCAUUID pPages);
  2268. }
  2269. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2270. Guid("56a86893-0ad4-11ce-b03a-0020af0ba770"),
  2271. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2272. public interface IEnumFilters
  2273. {
  2274. [PreserveSig]
  2275. int Next(
  2276. [In] int cFilters,
  2277. [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] IBaseFilter[] ppFilter,
  2278. [In] IntPtr pcFetched
  2279. );
  2280. [PreserveSig]
  2281. int Skip([In] int cFilters);
  2282. [PreserveSig]
  2283. int Reset();
  2284. [PreserveSig]
  2285. int Clone([Out] out IEnumFilters ppEnum);
  2286. }
  2287. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2288. Guid("56a8689f-0ad4-11ce-b03a-0020af0ba770"),
  2289. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2290. public interface IFilterGraph
  2291. {
  2292. [PreserveSig]
  2293. int AddFilter(
  2294. [In] IBaseFilter pFilter,
  2295. [In, MarshalAs(UnmanagedType.LPWStr)] string pName
  2296. );
  2297. [PreserveSig]
  2298. int RemoveFilter([In] IBaseFilter pFilter);
  2299. [PreserveSig]
  2300. int EnumFilters([Out] out IEnumFilters ppEnum);
  2301. [PreserveSig]
  2302. int FindFilterByName(
  2303. [In, MarshalAs(UnmanagedType.LPWStr)] string pName,
  2304. [Out] out IBaseFilter ppFilter
  2305. );
  2306. [PreserveSig]
  2307. int ConnectDirect(
  2308. [In] IPin ppinOut,
  2309. [In] IPin ppinIn,
  2310. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  2311. );
  2312. [PreserveSig]
  2313. int Reconnect([In] IPin ppin);
  2314. [PreserveSig]
  2315. int Disconnect([In] IPin ppin);
  2316. [PreserveSig]
  2317. int SetDefaultSyncSource();
  2318. }
  2319. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2320. Guid("0000010c-0000-0000-C000-000000000046"),
  2321. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2322. public interface IPersist
  2323. {
  2324. [PreserveSig]
  2325. int GetClassID([Out] out Guid pClassID);
  2326. }
  2327. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2328. Guid("56a868a5-0ad4-11ce-b03a-0020af0ba770"),
  2329. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2330. public interface IQualityControl
  2331. {
  2332. [PreserveSig]
  2333. int Notify(
  2334. [In] IntPtr pSelf,
  2335. [In] Quality q
  2336. );
  2337. [PreserveSig]
  2338. int SetSink([In] IntPtr piqc);
  2339. }
  2340. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2341. Guid("56a86891-0ad4-11ce-b03a-0020af0ba770"),
  2342. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2343. public interface IPin
  2344. {
  2345. [PreserveSig]
  2346. int Connect(
  2347. [In] IntPtr pReceivePin,
  2348. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  2349. );
  2350. [PreserveSig]
  2351. int ReceiveConnection(
  2352. [In] IntPtr pReceivePin,
  2353. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  2354. );
  2355. [PreserveSig]
  2356. int Disconnect();
  2357. [PreserveSig]
  2358. int ConnectedTo(
  2359. [Out] out IntPtr ppPin);
  2360. /// <summary>
  2361. /// Release returned parameter with DsUtils.FreeAMMediaType
  2362. /// </summary>
  2363. [PreserveSig]
  2364. int ConnectionMediaType(
  2365. [Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
  2366. /// <summary>
  2367. /// Release returned parameter with DsUtils.FreePinInfo
  2368. /// </summary>
  2369. [PreserveSig]
  2370. int QueryPinInfo([Out] out PinInfo pInfo);
  2371. [PreserveSig]
  2372. int QueryDirection(out PinDirection pPinDir);
  2373. [PreserveSig]
  2374. int QueryId([Out, MarshalAs(UnmanagedType.LPWStr)] out string Id);
  2375. [PreserveSig]
  2376. int QueryAccept([In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
  2377. [PreserveSig]
  2378. int EnumMediaTypes([Out] out IntPtr ppEnum);
  2379. [PreserveSig]
  2380. int QueryInternalConnections(
  2381. [Out] IntPtr ppPins,
  2382. [In, Out] ref int nPin
  2383. );
  2384. [PreserveSig]
  2385. int EndOfStream();
  2386. [PreserveSig]
  2387. int BeginFlush();
  2388. [PreserveSig]
  2389. int EndFlush();
  2390. [PreserveSig]
  2391. int NewSegment(
  2392. [In] long tStart,
  2393. [In] long tStop,
  2394. [In] double dRate
  2395. );
  2396. }
  2397. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2398. Guid("36b73880-c2c8-11cf-8b46-00805f6cef60"),
  2399. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2400. public interface IMediaSeeking
  2401. {
  2402. [PreserveSig]
  2403. int GetCapabilities([Out] out AMSeekingSeekingCapabilities pCapabilities);
  2404. [PreserveSig]
  2405. int CheckCapabilities([In, Out] ref AMSeekingSeekingCapabilities pCapabilities);
  2406. [PreserveSig]
  2407. int IsFormatSupported([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  2408. [PreserveSig]
  2409. int QueryPreferredFormat([Out] out Guid pFormat);
  2410. [PreserveSig]
  2411. int GetTimeFormat([Out] out Guid pFormat);
  2412. [PreserveSig]
  2413. int IsUsingTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  2414. [PreserveSig]
  2415. int SetTimeFormat([In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  2416. [PreserveSig]
  2417. int GetDuration([Out] out long pDuration);
  2418. [PreserveSig]
  2419. int GetStopPosition([Out] out long pStop);
  2420. [PreserveSig]
  2421. int GetCurrentPosition([Out] out long pCurrent);
  2422. [PreserveSig]
  2423. int ConvertTimeFormat(
  2424. [Out] out long pTarget,
  2425. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pTargetFormat,
  2426. [In] long Source,
  2427. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pSourceFormat
  2428. );
  2429. [PreserveSig]
  2430. int SetPositions(
  2431. [In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pCurrent,
  2432. [In] AMSeekingSeekingFlags dwCurrentFlags,
  2433. [In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pStop,
  2434. [In] AMSeekingSeekingFlags dwStopFlags
  2435. );
  2436. [PreserveSig]
  2437. int GetPositions(
  2438. [Out] out long pCurrent,
  2439. [Out] out long pStop
  2440. );
  2441. [PreserveSig]
  2442. int GetAvailable(
  2443. [Out] out long pEarliest,
  2444. [Out] out long pLatest
  2445. );
  2446. [PreserveSig]
  2447. int SetRate([In] double dRate);
  2448. [PreserveSig]
  2449. int GetRate([Out] out double pdRate);
  2450. [PreserveSig]
  2451. int GetPreroll([Out] out long pllPreroll);
  2452. }
  2453. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2454. Guid("56a86899-0ad4-11ce-b03a-0020af0ba770"),
  2455. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2456. public interface IMediaFilter : IPersist
  2457. {
  2458. #region IPersist Methods
  2459. [PreserveSig]
  2460. new int GetClassID([Out] out Guid pClassID);
  2461. #endregion
  2462. [PreserveSig]
  2463. int Stop();
  2464. [PreserveSig]
  2465. int Pause();
  2466. [PreserveSig]
  2467. int Run([In] long tStart);
  2468. [PreserveSig]
  2469. int GetState(
  2470. [In] int dwMilliSecsTimeout,
  2471. [Out] out FilterState filtState
  2472. );
  2473. [PreserveSig]
  2474. int SetSyncSource([In] IntPtr pClock);
  2475. [PreserveSig]
  2476. int GetSyncSource([Out] out IntPtr pClock);
  2477. }
  2478. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2479. Guid("56a86895-0ad4-11ce-b03a-0020af0ba770"),
  2480. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2481. public interface IBaseFilter : IMediaFilter
  2482. {
  2483. #region IPersist Methods
  2484. [PreserveSig]
  2485. new int GetClassID(
  2486. [Out] out Guid pClassID);
  2487. #endregion
  2488. #region IMediaFilter Methods
  2489. [PreserveSig]
  2490. new int Stop();
  2491. [PreserveSig]
  2492. new int Pause();
  2493. [PreserveSig]
  2494. new int Run(long tStart);
  2495. [PreserveSig]
  2496. new int GetState([In] int dwMilliSecsTimeout, [Out] out FilterState filtState);
  2497. [PreserveSig]
  2498. new int SetSyncSource([In] IntPtr pClock);
  2499. [PreserveSig]
  2500. new int GetSyncSource([Out] out IntPtr pClock);
  2501. #endregion
  2502. [PreserveSig]
  2503. int EnumPins([Out] out IEnumPins ppEnum);
  2504. [PreserveSig]
  2505. int FindPin(
  2506. [In, MarshalAs(UnmanagedType.LPWStr)] string Id,
  2507. [Out] out IPin ppPin
  2508. );
  2509. [PreserveSig]
  2510. int QueryFilterInfo([Out] out FilterInfo pInfo);
  2511. [PreserveSig]
  2512. int JoinFilterGraph(
  2513. [In] IntPtr pGraph,
  2514. [In, MarshalAs(UnmanagedType.LPWStr)] string pName
  2515. );
  2516. [PreserveSig]
  2517. int QueryVendorInfo([Out, MarshalAs(UnmanagedType.LPWStr)] out string pVendorInfo);
  2518. }
  2519. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2520. Guid("56a86892-0ad4-11ce-b03a-0020af0ba770"),
  2521. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2522. public interface IEnumPins
  2523. {
  2524. [PreserveSig]
  2525. int Next(
  2526. [In] int cPins,
  2527. [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)] IPin[] ppPins,
  2528. [In] IntPtr pcFetched
  2529. );
  2530. [PreserveSig]
  2531. int Skip([In] int cPins);
  2532. [PreserveSig]
  2533. int Reset();
  2534. [PreserveSig]
  2535. int Clone([Out] out IEnumPins ppEnum);
  2536. }
  2537. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2538. Guid("56a86897-0ad4-11ce-b03a-0020af0ba770"),
  2539. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2540. public interface IReferenceClock
  2541. {
  2542. [PreserveSig]
  2543. int GetTime([Out] out long pTime);
  2544. [PreserveSig]
  2545. int AdviseTime(
  2546. [In] long baseTime,
  2547. [In] long streamTime,
  2548. [In] IntPtr hEvent, // System.Threading.WaitHandle?
  2549. [Out] out int pdwAdviseCookie
  2550. );
  2551. [PreserveSig]
  2552. int AdvisePeriodic(
  2553. [In] long startTime,
  2554. [In] long periodTime,
  2555. [In] IntPtr hSemaphore, // System.Threading.WaitHandle?
  2556. [Out] out int pdwAdviseCookie
  2557. );
  2558. [PreserveSig]
  2559. int Unadvise([In] int dwAdviseCookie);
  2560. }
  2561. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2562. Guid("89c31040-846b-11ce-97d3-00aa0055595a"),
  2563. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2564. public interface IEnumMediaTypes
  2565. {
  2566. [PreserveSig]
  2567. int Next(
  2568. [In] int cMediaTypes,
  2569. [In] IntPtr ppMediaTypes,
  2570. [In] IntPtr pcFetched
  2571. );
  2572. [PreserveSig]
  2573. int Skip([In] int cMediaTypes);
  2574. [PreserveSig]
  2575. int Reset();
  2576. [PreserveSig]
  2577. int Clone([Out] out IntPtr ppEnum);
  2578. }
  2579. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2580. Guid("56a8689a-0ad4-11ce-b03a-0020af0ba770"),
  2581. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2582. public interface IMediaSample
  2583. {
  2584. [PreserveSig]
  2585. int GetPointer([Out] out IntPtr ppBuffer); // BYTE **
  2586. [PreserveSig]
  2587. int GetSize();
  2588. [PreserveSig]
  2589. int GetTime(
  2590. [Out] out long pTimeStart,
  2591. [Out] out long pTimeEnd
  2592. );
  2593. [PreserveSig]
  2594. int SetTime(
  2595. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeStart,
  2596. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeEnd
  2597. );
  2598. [PreserveSig]
  2599. int IsSyncPoint();
  2600. [PreserveSig]
  2601. int SetSyncPoint([In, MarshalAs(UnmanagedType.Bool)] bool bIsSyncPoint);
  2602. [PreserveSig]
  2603. int IsPreroll();
  2604. [PreserveSig]
  2605. int SetPreroll([In, MarshalAs(UnmanagedType.Bool)] bool bIsPreroll);
  2606. [PreserveSig]
  2607. int GetActualDataLength();
  2608. [PreserveSig]
  2609. int SetActualDataLength([In] int len);
  2610. /// <summary>
  2611. /// Returned object must be released with DsUtils.FreeAMMediaType()
  2612. /// </summary>
  2613. [PreserveSig]
  2614. int GetMediaType([Out, MarshalAs(UnmanagedType.LPStruct)] out AMMediaType ppMediaType);
  2615. [PreserveSig]
  2616. int SetMediaType([In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType);
  2617. [PreserveSig]
  2618. int IsDiscontinuity();
  2619. [PreserveSig]
  2620. int SetDiscontinuity([In, MarshalAs(UnmanagedType.Bool)] bool bDiscontinuity);
  2621. [PreserveSig]
  2622. int GetMediaTime(
  2623. [Out] out long pTimeStart,
  2624. [Out] out long pTimeEnd
  2625. );
  2626. [PreserveSig]
  2627. int SetMediaTime(
  2628. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeStart,
  2629. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeEnd
  2630. );
  2631. }
  2632. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2633. Guid("36b73884-c2c8-11cf-8b46-00805f6cef60")
  2634. , InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2635. public interface IMediaSample2 : IMediaSample
  2636. {
  2637. #region IMediaSample Methods
  2638. [PreserveSig]
  2639. new int GetPointer([Out] out IntPtr ppBuffer); // BYTE **
  2640. [PreserveSig]
  2641. new int GetSize();
  2642. [PreserveSig]
  2643. new int GetTime(
  2644. [Out] out long pTimeStart,
  2645. [Out] out long pTimeEnd
  2646. );
  2647. [PreserveSig]
  2648. new int SetTime(
  2649. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeStart,
  2650. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeEnd
  2651. );
  2652. [PreserveSig]
  2653. new int IsSyncPoint();
  2654. [PreserveSig]
  2655. new int SetSyncPoint([In, MarshalAs(UnmanagedType.Bool)] bool bIsSyncPoint);
  2656. [PreserveSig]
  2657. new int IsPreroll();
  2658. [PreserveSig]
  2659. new int SetPreroll([In, MarshalAs(UnmanagedType.Bool)] bool bIsPreroll);
  2660. [PreserveSig]
  2661. new int GetActualDataLength();
  2662. [PreserveSig]
  2663. new int SetActualDataLength([In] int len);
  2664. [PreserveSig]
  2665. new int GetMediaType([Out] out AMMediaType ppMediaType);
  2666. [PreserveSig]
  2667. new int SetMediaType([In] AMMediaType pMediaType);
  2668. [PreserveSig]
  2669. new int IsDiscontinuity();
  2670. [PreserveSig]
  2671. new int SetDiscontinuity([In, MarshalAs(UnmanagedType.Bool)] bool bDiscontinuity);
  2672. [PreserveSig]
  2673. new int GetMediaTime(
  2674. [Out] out long pTimeStart,
  2675. [Out] out long pTimeEnd
  2676. );
  2677. [PreserveSig]
  2678. new int SetMediaTime(
  2679. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeStart,
  2680. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeEnd
  2681. );
  2682. #endregion
  2683. [PreserveSig]
  2684. int GetProperties(
  2685. [In] int cbProperties,
  2686. [In] IntPtr pbProperties // BYTE *
  2687. );
  2688. [PreserveSig]
  2689. int SetProperties(
  2690. [In] int cbProperties,
  2691. [In] IntPtr pbProperties // BYTE *
  2692. );
  2693. }
  2694. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2695. Guid("56a8689c-0ad4-11ce-b03a-0020af0ba770"),
  2696. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2697. public interface IMemAllocator
  2698. {
  2699. [PreserveSig]
  2700. int SetProperties(
  2701. [In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pRequest,
  2702. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pActual
  2703. );
  2704. [PreserveSig]
  2705. int GetProperties(
  2706. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps
  2707. );
  2708. [PreserveSig]
  2709. int Commit();
  2710. [PreserveSig]
  2711. int Decommit();
  2712. [PreserveSig]
  2713. int GetBuffer(
  2714. [Out] out IntPtr ppBuffer,
  2715. [In] IntPtr pStartTime,
  2716. [In] IntPtr pEndTime,
  2717. [In, MarshalAs(UnmanagedType.U4)] int dwFlags
  2718. );
  2719. [PreserveSig]
  2720. int ReleaseBuffer(
  2721. [In] IntPtr pBuffer
  2722. );
  2723. }
  2724. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2725. Guid("379a0cf0-c1de-11d2-abf5-00a0c905f375"),
  2726. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2727. public interface IMemAllocatorCallbackTemp : IMemAllocator
  2728. {
  2729. #region IMemAllocator Methods
  2730. [PreserveSig]
  2731. new int SetProperties(
  2732. [In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pRequest,
  2733. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pActual
  2734. );
  2735. [PreserveSig]
  2736. new int GetProperties(
  2737. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps
  2738. );
  2739. [PreserveSig]
  2740. new int Commit();
  2741. [PreserveSig]
  2742. new int Decommit();
  2743. [PreserveSig]
  2744. new int GetBuffer(
  2745. [Out] out IntPtr ppBuffer,
  2746. [In] IntPtr pStartTime,
  2747. [In] IntPtr pEndTime,
  2748. [In, MarshalAs(UnmanagedType.U4)] int dwFlags
  2749. );
  2750. [PreserveSig]
  2751. new int ReleaseBuffer(
  2752. [In] IntPtr pBuffer
  2753. );
  2754. #endregion
  2755. [PreserveSig]
  2756. int SetNotify([In] IMemAllocatorNotifyCallbackTemp pNotify);
  2757. [PreserveSig]
  2758. int GetFreeCount([Out] out int plBuffersFree);
  2759. }
  2760. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2761. Guid("92980b30-c1de-11d2-abf5-00a0c905f375"),
  2762. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2763. public interface IMemAllocatorNotifyCallbackTemp
  2764. {
  2765. [PreserveSig]
  2766. int NotifyRelease();
  2767. }
  2768. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2769. Guid("56a8689d-0ad4-11ce-b03a-0020af0ba770"),
  2770. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2771. public interface IMemInputPin
  2772. {
  2773. [PreserveSig]
  2774. int GetAllocator([Out] out IntPtr ppAllocator);
  2775. [PreserveSig]
  2776. int NotifyAllocator(
  2777. [In] IntPtr pAllocator,
  2778. [In, MarshalAs(UnmanagedType.Bool)] bool bReadOnly
  2779. );
  2780. [PreserveSig]
  2781. int GetAllocatorRequirements([Out] AllocatorProperties pProps);
  2782. [PreserveSig]
  2783. int Receive(IntPtr pSample);
  2784. [PreserveSig]
  2785. int ReceiveMultiple(
  2786. [In] IntPtr pSamples,
  2787. [In] int nSamples,
  2788. [Out] out int nSamplesProcessed
  2789. );
  2790. [PreserveSig]
  2791. int ReceiveCanBlock();
  2792. }
  2793. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2794. Guid("56a868a6-0ad4-11ce-b03a-0020af0ba770"),
  2795. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2796. public interface IFileSourceFilter
  2797. {
  2798. [PreserveSig]
  2799. int Load(
  2800. [In, MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
  2801. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  2802. );
  2803. [PreserveSig]
  2804. int GetCurFile(
  2805. [Out, MarshalAs(UnmanagedType.LPWStr)] out string pszFileName,
  2806. [Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  2807. );
  2808. }
  2809. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2810. Guid("56a868aa-0ad4-11ce-b03a-0020af0ba770"),
  2811. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2812. public interface IAsyncReader
  2813. {
  2814. [PreserveSig]
  2815. int RequestAllocator(
  2816. [In] IntPtr pPreferred, // IMemAllocator *
  2817. [In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps,
  2818. [Out] out IntPtr ppActual // IMemAllocator **
  2819. );
  2820. [PreserveSig]
  2821. int Request(
  2822. [In] IntPtr pSample, // IMediaSample*
  2823. [In] IntPtr dwUser
  2824. );
  2825. [PreserveSig]
  2826. int WaitForNext(
  2827. [In] int dwTimeout,
  2828. [Out] out IntPtr ppSample, // IMediaSample**
  2829. [Out] out IntPtr pdwUser
  2830. );
  2831. [PreserveSig]
  2832. int SyncReadAligned(
  2833. [In] IntPtr pSample // IMediaSample*
  2834. );
  2835. [PreserveSig]
  2836. int SyncRead(
  2837. [In] long llPosition,
  2838. [In] int lLength,
  2839. [Out] IntPtr pBuffer // BYTE *
  2840. );
  2841. [PreserveSig]
  2842. int Length(
  2843. [Out] out long pTotal,
  2844. [Out] out long pAvailable
  2845. );
  2846. [PreserveSig]
  2847. int BeginFlush();
  2848. [PreserveSig]
  2849. int EndFlush();
  2850. }
  2851. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2852. Guid("8E1C39A1-DE53-11cf-AA63-0080C744528D"),
  2853. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2854. public interface IAMOpenProgress
  2855. {
  2856. [PreserveSig]
  2857. int QueryProgress(
  2858. [Out] out long pllTotal,
  2859. [Out] out long pllCurrent
  2860. );
  2861. [PreserveSig]
  2862. int AbortOperation();
  2863. }
  2864. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2865. Guid("B196B28C-BAB4-101A-B69C-00AA00341D07"),
  2866. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2867. public interface IPropertyPageSite
  2868. {
  2869. [PreserveSig]
  2870. int OnStatusChange([In] PropStatus dwFlags);
  2871. [PreserveSig]
  2872. int GetLocaleID([Out] out int LocaleID);
  2873. [PreserveSig]
  2874. int GetPageContainer([Out, MarshalAs(UnmanagedType.IUnknown)] out object pUnk);
  2875. [PreserveSig]
  2876. int TranslateAccelerator(IntPtr pMsg);
  2877. }
  2878. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2879. Guid("B196B28D-BAB4-101A-B69C-00AA00341D07"),
  2880. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2881. public interface IPropertyPage
  2882. {
  2883. [PreserveSig]
  2884. int SetPageSite([In] IntPtr pPageSite);
  2885. [PreserveSig]
  2886. int Activate(
  2887. [In] IntPtr hWndParent,
  2888. [In, MarshalAs(UnmanagedType.LPStruct)] DsRect pRect,
  2889. [In, MarshalAs(UnmanagedType.Bool)] bool bModal);
  2890. [PreserveSig]
  2891. int Deactivate();
  2892. [PreserveSig]
  2893. int GetPageInfo([In, Out, MarshalAs(UnmanagedType.LPStruct)] PropPageInfo pPageInfo);
  2894. [PreserveSig]
  2895. int SetObjects(
  2896. [In] uint cObjects,
  2897. [In] IntPtr ppUnk);
  2898. [PreserveSig]
  2899. int Show([In] SWOptions nCmdShow);
  2900. [PreserveSig]
  2901. int Move([In, MarshalAs(UnmanagedType.LPStruct)] DsRect pRect);
  2902. [PreserveSig]
  2903. int IsPageDirty();
  2904. [PreserveSig]
  2905. int Apply();
  2906. [PreserveSig]
  2907. int Help([In, MarshalAs(UnmanagedType.LPWStr)] string sHelpDir);
  2908. [PreserveSig]
  2909. int TranslateAccelerator(IntPtr pMsg);
  2910. }
  2911. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2912. Guid("00000109-0000-0000-C000-000000000046"),
  2913. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2914. public interface IPersistStream : IPersist
  2915. {
  2916. #region IPersist Members
  2917. [PreserveSig]
  2918. new int GetClassID([Out] out Guid pClassID);
  2919. #endregion
  2920. [PreserveSig]
  2921. int IsDirty();
  2922. [PreserveSig]
  2923. int Load(IntPtr pStm);
  2924. [PreserveSig]
  2925. int Save(IntPtr pStm, [MarshalAs(UnmanagedType.Bool)] bool fClearDirty);
  2926. [PreserveSig]
  2927. int GetSizeMax(out long pcbSize);
  2928. }
  2929. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2930. Guid("29840822-5B84-11D0-BD3B-00A0C911CE86"),
  2931. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2932. public interface ICreateDevEnum
  2933. {
  2934. [PreserveSig]
  2935. int CreateClassEnumerator([In] ref Guid type, [Out] out IEnumMoniker enumMoniker, [In] int flags);
  2936. }
  2937. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2938. Guid("C6E13340-30AC-11d0-A18C-00A0C9118956"),
  2939. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2940. public interface IAMStreamConfig
  2941. {
  2942. [PreserveSig]
  2943. int SetFormat([In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
  2944. [PreserveSig]
  2945. int GetFormat([Out] out AMMediaType pmt);
  2946. [PreserveSig]
  2947. int GetNumberOfCapabilities(IntPtr piCount, IntPtr piSize);
  2948. [PreserveSig]
  2949. int GetStreamCaps(
  2950. [In] int iIndex,
  2951. [In, Out] IntPtr ppmt,
  2952. [In] IntPtr pSCC
  2953. );
  2954. }
  2955. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2956. Guid("31EFAC30-515C-11d0-A9AA-00AA0061BE93"),
  2957. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2958. public interface IKsPropertySet
  2959. {
  2960. [PreserveSig]
  2961. int Set(
  2962. [In, MarshalAs(UnmanagedType.LPStruct)] Guid guidPropSet,
  2963. [In] int dwPropID,
  2964. [In] IntPtr pInstanceData,
  2965. [In] int cbInstanceData,
  2966. [In] IntPtr pPropData,
  2967. [In] int cbPropData
  2968. );
  2969. [PreserveSig]
  2970. int Get(
  2971. [In, MarshalAs(UnmanagedType.LPStruct)] Guid guidPropSet,
  2972. [In] int dwPropID,
  2973. [In] IntPtr pInstanceData,
  2974. [In] int cbInstanceData,
  2975. [In, Out] IntPtr pPropData,
  2976. [In] int cbPropData,
  2977. [Out] out int pcbReturned
  2978. );
  2979. [PreserveSig]
  2980. int QuerySupported(
  2981. [In, MarshalAs(UnmanagedType.LPStruct)] Guid guidPropSet,
  2982. [In] int dwPropID,
  2983. [Out] out KSPropertySupport pTypeSupport
  2984. );
  2985. }
  2986. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2987. Guid("3127CA40-446E-11CE-8135-00AA004BB851"),
  2988. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2989. public interface IErrorLog
  2990. {
  2991. [PreserveSig]
  2992. int AddError(
  2993. [In, MarshalAs(UnmanagedType.LPWStr)] string pszPropName,
  2994. [In] System.Runtime.InteropServices.ComTypes.EXCEPINFO pExcepInfo);
  2995. }
  2996. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  2997. Guid("55272A00-42CB-11CE-8135-00AA004BB851"),
  2998. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  2999. public interface IPropertyBag
  3000. {
  3001. [PreserveSig]
  3002. int Read(
  3003. [In, MarshalAs(UnmanagedType.LPWStr)] string pszPropName,
  3004. [Out, MarshalAs(UnmanagedType.Struct)] out object pVar,
  3005. [In] IErrorLog pErrorLog
  3006. );
  3007. [PreserveSig]
  3008. int Write(
  3009. [In, MarshalAs(UnmanagedType.LPWStr)] string pszPropName,
  3010. [In, MarshalAs(UnmanagedType.Struct)] ref object pVar
  3011. );
  3012. }
  3013. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3014. Guid("a2104830-7c70-11cf-8bce-00aa00a3f1a6"),
  3015. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3016. public interface IFileSinkFilter
  3017. {
  3018. [PreserveSig]
  3019. int SetFileName(
  3020. [In, MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
  3021. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  3022. );
  3023. [PreserveSig]
  3024. int GetCurFile(
  3025. [Out, MarshalAs(UnmanagedType.LPWStr)] out string pszFileName,
  3026. [Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  3027. );
  3028. }
  3029. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3030. Guid("00855B90-CE1B-11d0-BD4F-00A0C911CE86"),
  3031. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3032. public interface IFileSinkFilter2 : IFileSinkFilter
  3033. {
  3034. #region IFileSinkFilter Methods
  3035. [PreserveSig]
  3036. new int SetFileName(
  3037. [In, MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
  3038. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  3039. );
  3040. [PreserveSig]
  3041. new int GetCurFile(
  3042. [Out, MarshalAs(UnmanagedType.LPWStr)] out string pszFileName,
  3043. [Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  3044. );
  3045. #endregion
  3046. [PreserveSig]
  3047. int SetMode([In] AMFileSinkFlags dwFlags);
  3048. [PreserveSig]
  3049. int GetMode([Out] out AMFileSinkFlags dwFlags);
  3050. }
  3051. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3052. Guid("2dd74950-a890-11d1-abe8-00a0c905f375"),
  3053. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3054. public interface IAMFilterMiscFlags
  3055. {
  3056. [PreserveSig]
  3057. int GetMiscFlags();
  3058. }
  3059. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3060. Guid("6B652FFF-11FE-4FCE-92AD-0266B5D7C78F"),
  3061. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3062. public interface ISampleGrabber
  3063. {
  3064. [PreserveSig]
  3065. int SetOneShot([In, MarshalAs(UnmanagedType.Bool)] bool oneShot);
  3066. [PreserveSig]
  3067. int SetMediaType([In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType mediaType);
  3068. [PreserveSig]
  3069. int GetConnectedMediaType([Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType mediaType);
  3070. [PreserveSig]
  3071. int SetBufferSamples([In, MarshalAs(UnmanagedType.Bool)] bool bufferThem);
  3072. [PreserveSig]
  3073. int GetCurrentBuffer(ref int bufferSize, IntPtr buffer);
  3074. [PreserveSig]
  3075. int GetCurrentSample(IntPtr sample);
  3076. [PreserveSig]
  3077. int SetCallback(ISampleGrabberCB callback, int whichMethodToCallback);
  3078. }
  3079. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3080. Guid("0579154A-2B53-4994-B0D0-E773148EFF85"),
  3081. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3082. public interface ISampleGrabberCB
  3083. {
  3084. [PreserveSig]
  3085. int SampleCB(double sampleTime, IntPtr sample);
  3086. [PreserveSig]
  3087. int BufferCB(double sampleTime, IntPtr buffer, int bufferLen);
  3088. }
  3089. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3090. Guid("93E5A4E0-2D50-11d2-ABFA-00A0C9C6E38D"),
  3091. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3092. public interface ICaptureGraphBuilder2
  3093. {
  3094. [PreserveSig]
  3095. int SetFiltergraph([In] IGraphBuilder pfg);
  3096. [PreserveSig]
  3097. int GetFiltergraph([Out] out IGraphBuilder ppfg);
  3098. [PreserveSig]
  3099. int SetOutputFileName(
  3100. [In, MarshalAs(UnmanagedType.LPStruct)] Guid pType,
  3101. [In, MarshalAs(UnmanagedType.LPWStr)] string lpstrFile,
  3102. [Out] out IBaseFilter ppbf,
  3103. [Out] out IFileSinkFilter ppSink
  3104. );
  3105. [PreserveSig]
  3106. int FindInterface(
  3107. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pCategory,
  3108. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pType,
  3109. [In] IBaseFilter pbf,
  3110. [In, MarshalAs(UnmanagedType.LPStruct)] Guid riid,
  3111. [Out, MarshalAs(UnmanagedType.IUnknown)] out object ppint
  3112. );
  3113. [PreserveSig]
  3114. int RenderStream(
  3115. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid PinCategory,
  3116. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid MediaType,
  3117. [In, MarshalAs(UnmanagedType.IUnknown)] object pSource,
  3118. [In] IBaseFilter pfCompressor,
  3119. [In] IBaseFilter pfRenderer
  3120. );
  3121. [PreserveSig]
  3122. int ControlStream(
  3123. [In, MarshalAs(UnmanagedType.LPStruct)] Guid PinCategory,
  3124. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid MediaType,
  3125. [In, MarshalAs(UnmanagedType.Interface)] IBaseFilter pFilter,
  3126. [In] DsLong pstart,
  3127. [In] DsLong pstop,
  3128. [In] short wStartCookie,
  3129. [In] short wStopCookie
  3130. );
  3131. [PreserveSig]
  3132. int AllocCapFile(
  3133. [In, MarshalAs(UnmanagedType.LPWStr)] string lpstrFile,
  3134. [In] long dwlSize
  3135. );
  3136. [PreserveSig]
  3137. int CopyCaptureFile(
  3138. [In, MarshalAs(UnmanagedType.LPWStr)] string lpwstrOld,
  3139. [In, MarshalAs(UnmanagedType.LPWStr)] string lpwstrNew,
  3140. [In, MarshalAs(UnmanagedType.Bool)] bool fAllowEscAbort,
  3141. [In] IAMCopyCaptureFileProgress pFilter
  3142. );
  3143. [PreserveSig]
  3144. int FindPin(
  3145. [In, MarshalAs(UnmanagedType.IUnknown)] object pSource,
  3146. [In] PinDirection pindir,
  3147. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid PinCategory,
  3148. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid MediaType,
  3149. [In, MarshalAs(UnmanagedType.Bool)] bool fUnconnected,
  3150. [In] int ZeroBasedIndex,
  3151. [Out, MarshalAs(UnmanagedType.Interface)] out IPin ppPin
  3152. );
  3153. }
  3154. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3155. Guid("670d1d20-a068-11d0-b3f0-00aa003761c5"),
  3156. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3157. public interface IAMCopyCaptureFileProgress
  3158. {
  3159. [PreserveSig]
  3160. int Progress(int iProgress);
  3161. }
  3162. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3163. Guid("56a868b1-0ad4-11ce-b03a-0020af0ba770"),
  3164. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3165. public interface IMediaControl
  3166. {
  3167. [PreserveSig]
  3168. int Run();
  3169. [PreserveSig]
  3170. int Pause();
  3171. [PreserveSig]
  3172. int Stop();
  3173. [PreserveSig]
  3174. int GetState(int msTimeout, out FilterState pfs);
  3175. [PreserveSig]
  3176. int RenderFile(string strFilename);
  3177. [PreserveSig]
  3178. int AddSourceFilter(
  3179. [In] string strFilename,
  3180. [Out, MarshalAs(UnmanagedType.IDispatch)] out object ppUnk);
  3181. [PreserveSig]
  3182. int get_FilterCollection(
  3183. [Out, MarshalAs(UnmanagedType.IDispatch)] out object ppUnk);
  3184. [PreserveSig]
  3185. int get_RegFilterCollection(
  3186. [Out, MarshalAs(UnmanagedType.IDispatch)] out object ppUnk);
  3187. [PreserveSig]
  3188. int StopWhenReady();
  3189. }
  3190. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3191. Guid("56a868c0-0ad4-11ce-b03a-0020af0ba770"),
  3192. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3193. public interface IMediaEventEx
  3194. {
  3195. #region "IMediaEvent Methods"
  3196. [PreserveSig]
  3197. int GetEventHandle(out IntPtr hEvent);
  3198. [PreserveSig]
  3199. int GetEvent(out EventCode lEventCode, out int lParam1, out int lParam2, int msTimeout);
  3200. [PreserveSig]
  3201. int WaitForCompletion(int msTimeout, [Out] out int pEvCode);
  3202. [PreserveSig]
  3203. int CancelDefaultHandling(int lEvCode);
  3204. [PreserveSig]
  3205. int RestoreDefaultHandling(int lEvCode);
  3206. [PreserveSig]
  3207. int FreeEventParams(EventCode lEvCode, int lParam1, int lParam2);
  3208. #endregion
  3209. [PreserveSig]
  3210. int SetNotifyWindow(IntPtr hwnd, int lMsg, IntPtr lInstanceData);
  3211. [PreserveSig]
  3212. int SetNotifyFlags(int lNoNotifyFlags);
  3213. [PreserveSig]
  3214. int GetNotifyFlags(out int lplNoNotifyFlags);
  3215. }
  3216. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3217. Guid("56a868b4-0ad4-11ce-b03a-0020af0ba770"),
  3218. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3219. public interface IVideoWindow
  3220. {
  3221. [PreserveSig]
  3222. int put_Caption(string caption);
  3223. [PreserveSig]
  3224. int get_Caption([Out] out string caption);
  3225. [PreserveSig]
  3226. int put_WindowStyle(int windowStyle);
  3227. [PreserveSig]
  3228. int get_WindowStyle(out int windowStyle);
  3229. [PreserveSig]
  3230. int put_WindowStyleEx(int windowStyleEx);
  3231. [PreserveSig]
  3232. int get_WindowStyleEx(out int windowStyleEx);
  3233. [PreserveSig]
  3234. int put_AutoShow(int autoShow);
  3235. [PreserveSig]
  3236. int get_AutoShow(out int autoShow);
  3237. [PreserveSig]
  3238. int put_WindowState(int windowState);
  3239. [PreserveSig]
  3240. int get_WindowState(out int windowState);
  3241. [PreserveSig]
  3242. int put_BackgroundPalette(int backgroundPalette);
  3243. [PreserveSig]
  3244. int get_BackgroundPalette(out int backgroundPalette);
  3245. [PreserveSig]
  3246. int put_Visible(int visible);
  3247. [PreserveSig]
  3248. int get_Visible(out int visible);
  3249. [PreserveSig]
  3250. int put_Left(int left);
  3251. [PreserveSig]
  3252. int get_Left(out int left);
  3253. [PreserveSig]
  3254. int put_Width(int width);
  3255. [PreserveSig]
  3256. int get_Width(out int width);
  3257. [PreserveSig]
  3258. int put_Top(int top);
  3259. [PreserveSig]
  3260. int get_Top(out int top);
  3261. [PreserveSig]
  3262. int put_Height(int height);
  3263. [PreserveSig]
  3264. int get_Height(out int height);
  3265. [PreserveSig]
  3266. int put_Owner(IntPtr owner);
  3267. [PreserveSig]
  3268. int get_Owner(out IntPtr owner);
  3269. [PreserveSig]
  3270. int put_MessageDrain(IntPtr drain);
  3271. [PreserveSig]
  3272. int get_MessageDrain(out IntPtr drain);
  3273. [PreserveSig]
  3274. int get_BorderColor(out int color);
  3275. [PreserveSig]
  3276. int put_BorderColor(int color);
  3277. [PreserveSig]
  3278. int get_FullScreenMode(out int fullScreenMode);
  3279. [PreserveSig]
  3280. int put_FullScreenMode(int fullScreenMode);
  3281. [PreserveSig]
  3282. int SetWindowForeground(int focus);
  3283. [PreserveSig]
  3284. int NotifyOwnerMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam);
  3285. [PreserveSig]
  3286. int SetWindowPosition(int left, int top, int width, int height);
  3287. [PreserveSig]
  3288. int GetWindowPosition(out int left, out int top, out int width, out int height);
  3289. [PreserveSig]
  3290. int GetMinIdealImageSize(out int width, out int height);
  3291. [PreserveSig]
  3292. int GetMaxIdealImageSize(out int width, out int height);
  3293. [PreserveSig]
  3294. int GetRestorePosition(out int left, out int top, out int width, out int height);
  3295. [PreserveSig]
  3296. int HideCursor(int hideCursor);
  3297. [PreserveSig]
  3298. int IsCursorHidden(out int hideCursor);
  3299. }
  3300. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3301. Guid("56a868b5-0ad4-11ce-b03a-0020af0ba770"),
  3302. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3303. public interface IBasicVideo
  3304. {
  3305. [PreserveSig]
  3306. int get_AvgTimePerFrame(out double pAvgTimePerFrame);
  3307. [PreserveSig]
  3308. int get_BitRate(out int pBitRate);
  3309. [PreserveSig]
  3310. int get_BitErrorRate(out int pBitRate);
  3311. [PreserveSig]
  3312. int get_VideoWidth(out int pVideoWidth);
  3313. [PreserveSig]
  3314. int get_VideoHeight(out int pVideoHeight);
  3315. [PreserveSig]
  3316. int put_SourceLeft([In] int SourceLeft);
  3317. [PreserveSig]
  3318. int get_SourceLeft(out int pSourceLeft);
  3319. [PreserveSig]
  3320. int put_SourceWidth([In] int SourceWidth);
  3321. [PreserveSig]
  3322. int get_SourceWidth(out int pSourceWidth);
  3323. [PreserveSig]
  3324. int put_SourceTop([In] int SourceTop);
  3325. [PreserveSig]
  3326. int get_SourceTop(out int pSourceTop);
  3327. [PreserveSig]
  3328. int put_SourceHeight([In] int SourceHeight);
  3329. [PreserveSig]
  3330. int get_SourceHeight(out int pSourceHeight);
  3331. [PreserveSig]
  3332. int put_DestinationLeft([In] int DestinationLeft);
  3333. [PreserveSig]
  3334. int get_DestinationLeft(out int pDestinationLeft);
  3335. [PreserveSig]
  3336. int put_DestinationWidth([In] int DestinationWidth);
  3337. [PreserveSig]
  3338. int get_DestinationWidth(out int pDestinationWidth);
  3339. [PreserveSig]
  3340. int put_DestinationTop([In] int DestinationTop);
  3341. [PreserveSig]
  3342. int get_DestinationTop(out int pDestinationTop);
  3343. [PreserveSig]
  3344. int put_DestinationHeight([In] int DestinationHeight);
  3345. [PreserveSig]
  3346. int get_DestinationHeight(out int pDestinationHeight);
  3347. [PreserveSig]
  3348. int SetSourcePosition([In] int left, [In] int top, [In] int width, [In] int height);
  3349. [PreserveSig]
  3350. int GetSourcePosition(out int left, out int top, out int width, out int height);
  3351. [PreserveSig]
  3352. int SetDefaultSourcePosition();
  3353. [PreserveSig]
  3354. int SetDestinationPosition([In] int left, [In] int top, [In] int width, [In] int height);
  3355. [PreserveSig]
  3356. int GetDestinationPosition(out int left, out int top, out int width, out int height);
  3357. [PreserveSig]
  3358. int SetDefaultDestinationPosition();
  3359. [PreserveSig]
  3360. int GetVideoSize(out int pWidth, out int pHeight);
  3361. [PreserveSig]
  3362. int GetVideoPaletteEntries([In] int StartIndex, [In] int Entries, out int pRetrieved, out int[] pPalette);
  3363. [PreserveSig]
  3364. int GetCurrentImage([In, Out] ref int pBufferSize, [Out] IntPtr pDIBImage);
  3365. [PreserveSig]
  3366. int IsUsingDefaultSource();
  3367. [PreserveSig]
  3368. int IsUsingDefaultDestination();
  3369. }
  3370. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3371. Guid("329bb360-f6ea-11d1-9038-00a0c9697298"),
  3372. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3373. public interface IBasicVideo2
  3374. {
  3375. [PreserveSig]
  3376. int AvgTimePerFrame(out double pAvgTimePerFrame);
  3377. [PreserveSig]
  3378. int BitRate(out int pBitRate);
  3379. [PreserveSig]
  3380. int BitErrorRate(out int pBitRate);
  3381. [PreserveSig]
  3382. int VideoWidth(out int pVideoWidth);
  3383. [PreserveSig]
  3384. int VideoHeight(out int pVideoHeight);
  3385. [PreserveSig]
  3386. int put_SourceLeft(int SourceLeft);
  3387. [PreserveSig]
  3388. int get_SourceLeft(out int pSourceLeft);
  3389. [PreserveSig]
  3390. int put_SourceWidth(int SourceWidth);
  3391. [PreserveSig]
  3392. int get_SourceWidth(out int pSourceWidth);
  3393. [PreserveSig]
  3394. int put_SourceTop(int SourceTop);
  3395. [PreserveSig]
  3396. int get_SourceTop(out int pSourceTop);
  3397. [PreserveSig]
  3398. int put_SourceHeight(int SourceHeight);
  3399. [PreserveSig]
  3400. int get_SourceHeight(out int pSourceHeight);
  3401. [PreserveSig]
  3402. int put_DestinationLeft(int DestinationLeft);
  3403. [PreserveSig]
  3404. int get_DestinationLeft(out int pDestinationLeft);
  3405. [PreserveSig]
  3406. int put_DestinationWidth(int DestinationWidth);
  3407. [PreserveSig]
  3408. int get_DestinationWidth(out int pDestinationWidth);
  3409. [PreserveSig]
  3410. int put_DestinationTop(int DestinationTop);
  3411. [PreserveSig]
  3412. int get_DestinationTop(out int pDestinationTop);
  3413. [PreserveSig]
  3414. int put_DestinationHeight(int DestinationHeight);
  3415. [PreserveSig]
  3416. int get_DestinationHeight(out int pDestinationHeight);
  3417. [PreserveSig]
  3418. int SetSourcePosition(int left, int top, int width, int height);
  3419. [PreserveSig]
  3420. int GetSourcePosition(out int left, out int top, out int width, out int height);
  3421. [PreserveSig]
  3422. int SetDefaultSourcePosition();
  3423. [PreserveSig]
  3424. int SetDestinationPosition(int left, int top, int width, int height);
  3425. [PreserveSig]
  3426. int GetDestinationPosition(out int left, out int top, out int width, out int height);
  3427. [PreserveSig]
  3428. int SetDefaultDestinationPosition();
  3429. [PreserveSig]
  3430. int GetVideoSize(out int pWidth, out int pHeight);
  3431. [PreserveSig]
  3432. int GetVideoPaletteEntries(int StartIndex, int Entries, out int pRetrieved, IntPtr pPalette);
  3433. [PreserveSig]
  3434. int GetCurrentImage(ref int pBufferSize, IntPtr pDIBImage);
  3435. [PreserveSig]
  3436. int IsUsingDefaultSource();
  3437. [PreserveSig]
  3438. int IsUsingDefaultDestination();
  3439. [PreserveSig]
  3440. int GetPreferredAspectRatio(out int plAspectX, out int plAspectY);
  3441. }
  3442. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3443. Guid("56a868b3-0ad4-11ce-b03a-0020af0ba770"),
  3444. InterfaceType(ComInterfaceType.InterfaceIsDual)]
  3445. public interface IBasicAudio
  3446. {
  3447. [PreserveSig]
  3448. int put_Volume(int lVolume);
  3449. [PreserveSig]
  3450. int get_Volume(out int plVolume);
  3451. [PreserveSig]
  3452. int put_Balance(int lBalance);
  3453. [PreserveSig]
  3454. int get_Balance(out int plBalance);
  3455. }
  3456. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3457. Guid("e46a9787-2b71-444d-a4b5-1fab7b708d6a"),
  3458. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3459. public interface IVideoFrameStep
  3460. {
  3461. [PreserveSig]
  3462. int Step(
  3463. [In] int dwFrames,
  3464. [In, MarshalAs(UnmanagedType.IUnknown)] object pStepObject
  3465. );
  3466. [PreserveSig]
  3467. int CanStep(
  3468. [In] int bMultiple,
  3469. [In, MarshalAs(UnmanagedType.IUnknown)] object pStepObject
  3470. );
  3471. [PreserveSig]
  3472. int CancelStep();
  3473. }
  3474. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3475. Guid("36b73881-c2c8-11cf-8b46-00805f6cef60"),
  3476. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3477. public interface IAMStreamControl
  3478. {
  3479. [PreserveSig]
  3480. int StartAt(
  3481. [In] DsLong ptStart,
  3482. [In] int dwCookie
  3483. );
  3484. [PreserveSig]
  3485. int StopAt(
  3486. [In] DsLong ptStop,
  3487. [In, MarshalAs(UnmanagedType.Bool)] bool bSendExtra,
  3488. [In] int dwCookie
  3489. );
  3490. [PreserveSig]
  3491. int GetInfo([Out] out AMStreamInfo pInfo);
  3492. }
  3493. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3494. Guid("62EA93BA-EC62-11d2-B770-00C04FB6BD3D"),
  3495. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3496. public interface IAMLatency
  3497. {
  3498. [PreserveSig]
  3499. int GetLatency(out long prtLatency);
  3500. }
  3501. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3502. Guid("F185FE76-E64E-11d2-B76E-00C04FB6BD3D"),
  3503. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3504. public interface IAMPushSource : IAMLatency
  3505. {
  3506. [PreserveSig]
  3507. new int GetLatency(out long prtLatency);
  3508. [PreserveSig]
  3509. int GetPushSourceFlags([Out] out AMPushSourceFlags pFlags);
  3510. [PreserveSig]
  3511. int SetPushSourceFlags([In] AMPushSourceFlags Flags);
  3512. [PreserveSig]
  3513. int SetStreamOffset([In] long rtOffset);
  3514. [PreserveSig]
  3515. int GetStreamOffset([Out] out long prtOffset);
  3516. [PreserveSig]
  3517. int GetMaxStreamOffset([Out] out long prtMaxOffset);
  3518. [PreserveSig]
  3519. int SetMaxStreamOffset([In] long rtMaxOffset);
  3520. }
  3521. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3522. Guid("56ED71A0-AF5F-11D0-B3F0-00AA003761C5"),
  3523. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3524. public interface IAMBufferNegotiation
  3525. {
  3526. [PreserveSig]
  3527. int SuggestAllocatorProperties([In] AllocatorProperties pprop);
  3528. [PreserveSig]
  3529. int GetAllocatorProperties([Out] AllocatorProperties pprop);
  3530. }
  3531. public enum AMSTREAMSELECTINFOFLAGS: uint
  3532. {
  3533. ENABLED = 0x1,
  3534. EXCLUSIVE = 0x2
  3535. }
  3536. public enum AMSTREAMSELECTENABLEFLAGS : uint
  3537. {
  3538. DISABLE = 0x0,
  3539. ENABLED = 0x1,
  3540. ENABLEALL = 0x2
  3541. }
  3542. [ComImport, System.Security.SuppressUnmanagedCodeSecurity,
  3543. Guid("c1960960-17f5-11d1-abe1-00a0c905f375"),
  3544. InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  3545. public interface IAMStreamSelect
  3546. {
  3547. [PreserveSig]
  3548. int Count(
  3549. [Out] out int pcStreams
  3550. );
  3551. [PreserveSig]
  3552. int Info(
  3553. [In] int lIndex,
  3554. [In, Out] IntPtr ppmt, // AMMediaType
  3555. [In, Out] IntPtr pdwFlags, // DWORD * AMSTREAMSELECTINFOFLAGS
  3556. [In, Out] IntPtr plcid, // DWORD *
  3557. [In, Out] IntPtr pdwGroup, // DWORD *
  3558. [In, Out] IntPtr ppszName, // WCHAR **
  3559. [In, Out] IntPtr ppObject, // IUnknown *
  3560. [In, Out] IntPtr ppUnk); // IUnknown *
  3561. [PreserveSig]
  3562. int Enable(
  3563. [In] int lIndex,
  3564. [In] AMSTREAMSELECTENABLEFLAGS dwFlags);
  3565. }
  3566. #endregion
  3567. #region Classes
  3568. [ComVisible(false)]
  3569. [ComImport, Guid("060AF76C-68DD-11d0-8FC1-00C04FD9189D")]
  3570. public class SeekingPassThru
  3571. {
  3572. }
  3573. [ComVisible(false)]
  3574. [ComImport, Guid("CDA42200-BD88-11d0-BD4E-00A0C911CE86")]
  3575. public class FilterMapper2
  3576. {
  3577. }
  3578. [ComVisible(false)]
  3579. [ComImport, Guid("1e651cc0-b199-11d0-8212-00c04fc32c45")]
  3580. public class MemoryAllocator
  3581. {
  3582. }
  3583. [ComVisible(false)]
  3584. [ComImport, Guid("e436ebb3-524f-11ce-9f53-0020af0ba770")]
  3585. public class FilterGraph
  3586. {
  3587. }
  3588. [ComVisible(false)]
  3589. [ComImport, Guid("BF87B6E1-8C27-11d0-B3F0-00AA003761C5")]
  3590. public class CaptureGraphBuilder2
  3591. {
  3592. }
  3593. #endregion
  3594. #region Wrapper Classes
  3595. [ComVisible(false)]
  3596. public class IMediaSampleImpl : VTableInterface, IMediaSample
  3597. {
  3598. #region Delgates
  3599. private delegate int GetPointerProc(
  3600. IntPtr pUnk,
  3601. out IntPtr ppBuffer
  3602. );
  3603. private delegate int GetSizeProc(
  3604. IntPtr pUnk
  3605. );
  3606. private delegate int SetSizeProc(
  3607. IntPtr pUnk,
  3608. int nSize
  3609. );
  3610. private delegate int GetTimeProc(
  3611. IntPtr pUnk,
  3612. out long pTimeStart,
  3613. out long pTimeEnd
  3614. );
  3615. private delegate int SetTimeProc(
  3616. IntPtr pUnk,
  3617. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeStart,
  3618. [In, MarshalAs(UnmanagedType.LPStruct)] DsLong pTimeEnd
  3619. );
  3620. private delegate int SetBoolProc(
  3621. IntPtr pUnk,
  3622. [MarshalAs(UnmanagedType.Bool)] bool bValue
  3623. );
  3624. private delegate int GetMediaTypeProc(
  3625. IntPtr pUnk,
  3626. [Out, MarshalAs(UnmanagedType.LPStruct)] out AMMediaType ppMediaType
  3627. );
  3628. private delegate int SetMediaTypeProc(
  3629. IntPtr pUnk,
  3630. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pMediaType
  3631. );
  3632. #endregion
  3633. #region Constructor
  3634. public IMediaSampleImpl(IntPtr pMediaSample)
  3635. : base(pMediaSample, false)
  3636. {
  3637. }
  3638. #endregion
  3639. #region IMediaSample Members
  3640. public int GetPointer(out IntPtr ppBuffer)
  3641. {
  3642. ppBuffer = IntPtr.Zero;
  3643. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3644. GetPointerProc _Proc = GetProcDelegate<GetPointerProc>(3);
  3645. if (_Proc == null) return E_UNEXPECTED;
  3646. return (HRESULT)_Proc(
  3647. m_pUnknown,
  3648. out ppBuffer
  3649. );
  3650. }
  3651. public int GetSize()
  3652. {
  3653. if (m_pUnknown == IntPtr.Zero) return 0;
  3654. GetSizeProc _Proc = GetProcDelegate<GetSizeProc>(4);
  3655. if (_Proc == null) return 0;
  3656. return _Proc(
  3657. m_pUnknown
  3658. );
  3659. }
  3660. public int GetTime(out long pTimeStart, out long pTimeEnd)
  3661. {
  3662. pTimeStart = 0;
  3663. pTimeEnd = 0;
  3664. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3665. GetTimeProc _Proc = GetProcDelegate<GetTimeProc>(5);
  3666. if (_Proc == null) return E_UNEXPECTED;
  3667. return (HRESULT)_Proc(
  3668. m_pUnknown,
  3669. out pTimeStart, out pTimeEnd
  3670. );
  3671. }
  3672. public int SetTime(DsLong pTimeStart, DsLong pTimeEnd)
  3673. {
  3674. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3675. SetTimeProc _Proc = GetProcDelegate<SetTimeProc>(6);
  3676. if (_Proc == null) return E_UNEXPECTED;
  3677. return (HRESULT)_Proc(
  3678. m_pUnknown,
  3679. pTimeStart, pTimeEnd
  3680. );
  3681. }
  3682. public int IsSyncPoint()
  3683. {
  3684. if (m_pUnknown == IntPtr.Zero) return S_FALSE;
  3685. GetSizeProc _Proc = GetProcDelegate<GetSizeProc>(7);
  3686. if (_Proc == null) return S_FALSE;
  3687. return _Proc(
  3688. m_pUnknown
  3689. );
  3690. }
  3691. public int SetSyncPoint(bool bIsSyncPoint)
  3692. {
  3693. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3694. SetBoolProc _Proc = GetProcDelegate<SetBoolProc>(8);
  3695. if (_Proc == null) return E_UNEXPECTED;
  3696. return (HRESULT)_Proc(
  3697. m_pUnknown,
  3698. bIsSyncPoint
  3699. );
  3700. }
  3701. public int IsPreroll()
  3702. {
  3703. if (m_pUnknown == IntPtr.Zero) return S_FALSE;
  3704. GetSizeProc _Proc = GetProcDelegate<GetSizeProc>(9);
  3705. if (_Proc == null) return S_FALSE;
  3706. return _Proc(
  3707. m_pUnknown
  3708. );
  3709. }
  3710. public int SetPreroll(bool bIsPreroll)
  3711. {
  3712. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3713. SetBoolProc _Proc = GetProcDelegate<SetBoolProc>(10);
  3714. if (_Proc == null) return E_UNEXPECTED;
  3715. return (HRESULT)_Proc(
  3716. m_pUnknown,
  3717. bIsPreroll
  3718. );
  3719. }
  3720. public int GetActualDataLength()
  3721. {
  3722. if (m_pUnknown == IntPtr.Zero) return 0;
  3723. GetSizeProc _Proc = GetProcDelegate<GetSizeProc>(11);
  3724. if (_Proc == null) return 0;
  3725. return _Proc(
  3726. m_pUnknown
  3727. );
  3728. }
  3729. public int SetActualDataLength(int len)
  3730. {
  3731. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3732. SetSizeProc _Proc = GetProcDelegate<SetSizeProc>(12);
  3733. if (_Proc == null) return E_UNEXPECTED;
  3734. return (HRESULT)_Proc(
  3735. m_pUnknown,
  3736. len
  3737. );
  3738. }
  3739. public int GetMediaType(out AMMediaType ppMediaType)
  3740. {
  3741. ppMediaType = null;
  3742. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3743. GetMediaTypeProc _Proc = GetProcDelegate<GetMediaTypeProc>(13);
  3744. if (_Proc == null) return E_UNEXPECTED;
  3745. return (HRESULT)_Proc(
  3746. m_pUnknown,
  3747. out ppMediaType
  3748. );
  3749. }
  3750. public int SetMediaType(AMMediaType pMediaType)
  3751. {
  3752. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3753. SetMediaTypeProc _Proc = GetProcDelegate<SetMediaTypeProc>(14);
  3754. if (_Proc == null) return E_UNEXPECTED;
  3755. return (HRESULT)_Proc(
  3756. m_pUnknown,
  3757. pMediaType
  3758. );
  3759. }
  3760. public int IsDiscontinuity()
  3761. {
  3762. if (m_pUnknown == IntPtr.Zero) return S_FALSE;
  3763. GetSizeProc _Proc = GetProcDelegate<GetSizeProc>(15);
  3764. if (_Proc == null) return S_FALSE;
  3765. return _Proc(
  3766. m_pUnknown
  3767. );
  3768. }
  3769. public int SetDiscontinuity(bool bDiscontinuity)
  3770. {
  3771. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3772. SetBoolProc _Proc = GetProcDelegate<SetBoolProc>(16);
  3773. if (_Proc == null) return E_UNEXPECTED;
  3774. return (HRESULT)_Proc(
  3775. m_pUnknown,
  3776. bDiscontinuity
  3777. );
  3778. }
  3779. public int GetMediaTime(out long pTimeStart, out long pTimeEnd)
  3780. {
  3781. pTimeStart = 0;
  3782. pTimeEnd = 0;
  3783. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3784. GetTimeProc _Proc = GetProcDelegate<GetTimeProc>(17);
  3785. if (_Proc == null) return E_UNEXPECTED;
  3786. return (HRESULT)_Proc(
  3787. m_pUnknown,
  3788. out pTimeStart, out pTimeEnd
  3789. );
  3790. }
  3791. public int SetMediaTime(DsLong pTimeStart, DsLong pTimeEnd)
  3792. {
  3793. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3794. SetTimeProc _Proc = GetProcDelegate<SetTimeProc>(18);
  3795. if (_Proc == null) return E_UNEXPECTED;
  3796. return (HRESULT)_Proc(
  3797. m_pUnknown,
  3798. pTimeStart, pTimeEnd
  3799. );
  3800. }
  3801. #endregion
  3802. }
  3803. [ComVisible(false)]
  3804. public class IMediaSample2Impl : IMediaSampleImpl, IMediaSample2
  3805. {
  3806. #region Delegates
  3807. private delegate int PropertiesProc(
  3808. IntPtr pUnk,
  3809. int cbProperties, IntPtr pbProperties
  3810. );
  3811. #endregion
  3812. #region Constructor
  3813. public IMediaSample2Impl(IntPtr pMediaSample)
  3814. : base(pMediaSample)
  3815. {
  3816. }
  3817. #endregion
  3818. #region IMediaSample2 Members
  3819. public int GetProperties(int cbProperties, IntPtr pbProperties)
  3820. {
  3821. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3822. PropertiesProc _Proc = GetProcDelegate<PropertiesProc>(19);
  3823. if (_Proc == null) return E_UNEXPECTED;
  3824. return (HRESULT)_Proc(
  3825. m_pUnknown,
  3826. cbProperties, pbProperties
  3827. );
  3828. }
  3829. public int SetProperties(int cbProperties, IntPtr pbProperties)
  3830. {
  3831. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3832. PropertiesProc _Proc = GetProcDelegate<PropertiesProc>(20);
  3833. if (_Proc == null) return E_UNEXPECTED;
  3834. return (HRESULT)_Proc(
  3835. m_pUnknown,
  3836. cbProperties, pbProperties
  3837. );
  3838. }
  3839. #endregion
  3840. }
  3841. [ComVisible(false)]
  3842. public class IMemInputPinImpl : VTableInterface, IMemInputPin
  3843. {
  3844. #region Delegates
  3845. private delegate int GetAllocatorProc(
  3846. IntPtr pUnk,
  3847. out IntPtr ppAllocator
  3848. );
  3849. private delegate int NotifyAllocatorProc(
  3850. IntPtr pUnk,
  3851. [In] IntPtr pAllocator,
  3852. [In, MarshalAs(UnmanagedType.Bool)] bool bReadOnly
  3853. );
  3854. private delegate int GetAllocatorRequirementsProc(
  3855. IntPtr pUnk,
  3856. [Out] AllocatorProperties pProps);
  3857. private delegate int ReceiveProc(
  3858. IntPtr pUnk,
  3859. IntPtr pSample);
  3860. private delegate int ReceiveMultipleProc(
  3861. IntPtr pUnk,
  3862. [In] IntPtr pSamples,
  3863. [In] int nSamples,
  3864. [Out] out int nSamplesProcessed
  3865. );
  3866. private delegate int ReceiveCanBlockProc(
  3867. IntPtr pUnk
  3868. );
  3869. #endregion
  3870. #region Constructor
  3871. public IMemInputPinImpl(IntPtr pMemInputPin)
  3872. : base(pMemInputPin,false)
  3873. {
  3874. }
  3875. #endregion
  3876. #region IMemInputPin Members
  3877. public int GetAllocator(out IntPtr ppAllocator)
  3878. {
  3879. ppAllocator = IntPtr.Zero;
  3880. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3881. GetAllocatorProc _Proc = GetProcDelegate<GetAllocatorProc>(3);
  3882. if (_Proc == null) return E_UNEXPECTED;
  3883. return (HRESULT)_Proc(
  3884. m_pUnknown,
  3885. out ppAllocator
  3886. );
  3887. }
  3888. public int NotifyAllocator(IntPtr pAllocator, bool bReadOnly)
  3889. {
  3890. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3891. NotifyAllocatorProc _Proc = GetProcDelegate<NotifyAllocatorProc>(4);
  3892. if (_Proc == null) return E_UNEXPECTED;
  3893. return (HRESULT)_Proc(
  3894. m_pUnknown,
  3895. pAllocator, bReadOnly
  3896. );
  3897. }
  3898. public int GetAllocatorRequirements(AllocatorProperties pProps)
  3899. {
  3900. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3901. GetAllocatorRequirementsProc _Proc = GetProcDelegate<GetAllocatorRequirementsProc>(5);
  3902. if (_Proc == null) return E_UNEXPECTED;
  3903. return (HRESULT)_Proc(
  3904. m_pUnknown,
  3905. pProps
  3906. );
  3907. }
  3908. public int Receive(IntPtr pSample)
  3909. {
  3910. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3911. ReceiveProc _Proc = GetProcDelegate<ReceiveProc>(6);
  3912. if (_Proc == null) return E_UNEXPECTED;
  3913. return (HRESULT)_Proc(
  3914. m_pUnknown,
  3915. pSample
  3916. );
  3917. }
  3918. public int ReceiveMultiple(IntPtr pSamples, int nSamples, out int nSamplesProcessed)
  3919. {
  3920. nSamplesProcessed = 0;
  3921. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3922. ReceiveMultipleProc _Proc = GetProcDelegate<ReceiveMultipleProc>(7);
  3923. if (_Proc == null) return E_UNEXPECTED;
  3924. return (HRESULT)_Proc(
  3925. m_pUnknown,
  3926. pSamples,
  3927. nSamples,
  3928. out nSamplesProcessed
  3929. );
  3930. }
  3931. public int ReceiveCanBlock()
  3932. {
  3933. if (m_pUnknown == IntPtr.Zero) return S_OK;
  3934. ReceiveCanBlockProc _Proc = GetProcDelegate<ReceiveCanBlockProc>(8);
  3935. if (_Proc == null) return S_OK;
  3936. return _Proc(
  3937. m_pUnknown
  3938. );
  3939. }
  3940. #endregion
  3941. }
  3942. [ComVisible(false)]
  3943. public class IMemAllocatorImpl : VTableInterface, IMemAllocator
  3944. {
  3945. #region Delegates
  3946. private delegate int SetPropertiesProc(
  3947. IntPtr pUnk,
  3948. [In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pRequest,
  3949. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pActual
  3950. );
  3951. private delegate int GetPropertiesProc(
  3952. IntPtr pUnk,
  3953. [Out, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps
  3954. );
  3955. private delegate int CommitProc(
  3956. IntPtr pUnk
  3957. );
  3958. private delegate int DecommitProc(
  3959. IntPtr pUnk
  3960. );
  3961. private delegate int GetBufferProc(
  3962. IntPtr pUnk,
  3963. [Out] out IntPtr ppBuffer,
  3964. [In] IntPtr pStartTime,
  3965. [In] IntPtr pEndTime,
  3966. [In, MarshalAs(UnmanagedType.U4)] int dwFlags
  3967. );
  3968. private delegate int ReleaseBufferProc(
  3969. IntPtr pUnk,
  3970. [In] IntPtr pBuffer
  3971. );
  3972. #endregion
  3973. #region Constructor
  3974. public IMemAllocatorImpl(IntPtr pMemAllocator)
  3975. : base(pMemAllocator, false)
  3976. {
  3977. }
  3978. #endregion
  3979. #region IMemAllocator Members
  3980. public int SetProperties(AllocatorProperties pRequest, AllocatorProperties pActual)
  3981. {
  3982. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3983. SetPropertiesProc _Proc = GetProcDelegate<SetPropertiesProc>(3);
  3984. if (_Proc == null) return E_UNEXPECTED;
  3985. return (HRESULT)_Proc(
  3986. m_pUnknown,
  3987. pRequest, pActual
  3988. );
  3989. }
  3990. public int GetProperties(AllocatorProperties pProps)
  3991. {
  3992. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  3993. GetPropertiesProc _Proc = GetProcDelegate<GetPropertiesProc>(4);
  3994. if (_Proc == null) return E_UNEXPECTED;
  3995. return (HRESULT)_Proc(
  3996. m_pUnknown,
  3997. pProps
  3998. );
  3999. }
  4000. public int Commit()
  4001. {
  4002. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4003. CommitProc _Proc = GetProcDelegate<CommitProc>(5);
  4004. if (_Proc == null) return E_UNEXPECTED;
  4005. return (HRESULT)_Proc(
  4006. m_pUnknown
  4007. );
  4008. }
  4009. public int Decommit()
  4010. {
  4011. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4012. DecommitProc _Proc = GetProcDelegate<DecommitProc>(6);
  4013. if (_Proc == null) return E_UNEXPECTED;
  4014. return (HRESULT)_Proc(
  4015. m_pUnknown
  4016. );
  4017. }
  4018. public int GetBuffer(out IntPtr ppBuffer, IntPtr pStartTime, IntPtr pEndTime, int dwFlags)
  4019. {
  4020. ppBuffer = IntPtr.Zero;
  4021. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4022. GetBufferProc _Proc = GetProcDelegate<GetBufferProc>(7);
  4023. if (_Proc == null) return E_UNEXPECTED;
  4024. return (HRESULT)_Proc(
  4025. m_pUnknown,
  4026. out ppBuffer, pStartTime, pEndTime, dwFlags
  4027. );
  4028. }
  4029. public int ReleaseBuffer(IntPtr pBuffer)
  4030. {
  4031. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4032. ReleaseBufferProc _Proc = GetProcDelegate<ReleaseBufferProc>(8);
  4033. if (_Proc == null) return E_UNEXPECTED;
  4034. return (HRESULT)_Proc(
  4035. m_pUnknown,
  4036. pBuffer
  4037. );
  4038. }
  4039. #endregion
  4040. }
  4041. [ComVisible(false)]
  4042. public class IEnumMediaTypesImpl : VTableInterface, IEnumMediaTypes
  4043. {
  4044. #region Delegates
  4045. private delegate int NextProc(
  4046. IntPtr pUnk,
  4047. int cMediaTypes, IntPtr ppMediaTypes, IntPtr pcFetched
  4048. );
  4049. private delegate int SkipProc(
  4050. IntPtr pUnk,
  4051. int cMediaTypes
  4052. );
  4053. private delegate int ResetProc(
  4054. IntPtr pUnk
  4055. );
  4056. private delegate int CloneProc(
  4057. IntPtr pUnk,
  4058. out IntPtr ppEnum
  4059. );
  4060. #endregion
  4061. #region Constructor
  4062. public IEnumMediaTypesImpl(IntPtr pEnum)
  4063. : base(pEnum, false)
  4064. {
  4065. }
  4066. #endregion
  4067. #region IEnumMediaTypes Members
  4068. public int Next(int cMediaTypes, IntPtr ppMediaTypes, IntPtr pcFetched)
  4069. {
  4070. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4071. NextProc _Proc = GetProcDelegate<NextProc>(3);
  4072. if (_Proc == null) return E_UNEXPECTED;
  4073. return (HRESULT)_Proc(
  4074. m_pUnknown,
  4075. cMediaTypes, ppMediaTypes, pcFetched
  4076. );
  4077. }
  4078. public int Skip(int cMediaTypes)
  4079. {
  4080. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4081. SkipProc _Proc = GetProcDelegate<SkipProc>(4);
  4082. if (_Proc == null) return E_UNEXPECTED;
  4083. return (HRESULT)_Proc(
  4084. m_pUnknown,
  4085. cMediaTypes
  4086. );
  4087. }
  4088. public int Reset()
  4089. {
  4090. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4091. ResetProc _Proc = GetProcDelegate<ResetProc>(5);
  4092. if (_Proc == null) return E_UNEXPECTED;
  4093. return (HRESULT)_Proc(
  4094. m_pUnknown
  4095. );
  4096. }
  4097. public int Clone(out IntPtr ppEnum)
  4098. {
  4099. ppEnum = IntPtr.Zero;
  4100. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4101. CloneProc _Proc = GetProcDelegate<CloneProc>(6);
  4102. if (_Proc == null) return E_UNEXPECTED;
  4103. return (HRESULT)_Proc(
  4104. m_pUnknown,
  4105. out ppEnum
  4106. );
  4107. }
  4108. #endregion
  4109. }
  4110. [ComVisible(false)]
  4111. public class IPinImpl : VTableInterface, IPin
  4112. {
  4113. #region Delegates
  4114. private delegate int ConnectProc(
  4115. IntPtr pUnk,
  4116. [In] IntPtr pReceivePin,
  4117. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  4118. );
  4119. private delegate int ReceiveConnectionProc(
  4120. IntPtr pUnk,
  4121. [In] IntPtr pReceivePin,
  4122. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt
  4123. );
  4124. private delegate int DisconnectProc(
  4125. IntPtr pUnk
  4126. );
  4127. private delegate int ConnectedToProc(
  4128. IntPtr pUnk,
  4129. [Out] out IntPtr ppPin);
  4130. private delegate int ConnectionMediaTypeProc(
  4131. IntPtr pUnk,
  4132. [Out, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
  4133. private delegate int QueryPinInfoProc(
  4134. IntPtr pUnk,
  4135. [Out] out PinInfo pInfo
  4136. );
  4137. private delegate int QueryDirectionProc(
  4138. IntPtr pUnk,
  4139. out PinDirection pPinDir
  4140. );
  4141. private delegate int QueryIdProc(
  4142. IntPtr pUnk,
  4143. [Out, MarshalAs(UnmanagedType.LPWStr)] out string Id);
  4144. private delegate int QueryAcceptProc(
  4145. IntPtr pUnk,
  4146. [In, MarshalAs(UnmanagedType.LPStruct)] AMMediaType pmt);
  4147. private delegate int EnumMediaTypesProc(
  4148. IntPtr pUnk,
  4149. [Out] out IntPtr ppEnum);
  4150. //[Out] out IEnumMediaTypes ppEnum);
  4151. private delegate int QueryInternalConnectionsProc(
  4152. IntPtr pUnk,
  4153. [Out] IntPtr ppPins,
  4154. [In, Out] ref int nPin
  4155. );
  4156. private delegate int EndOfStreamProc(
  4157. IntPtr pUnk
  4158. );
  4159. private delegate int BeginFlushProc(
  4160. IntPtr pUnk
  4161. );
  4162. private delegate int EndFlushProc(
  4163. IntPtr pUnk
  4164. );
  4165. private delegate int NewSegmentProc(
  4166. IntPtr pUnk,
  4167. [In] long tStart,
  4168. [In] long tStop,
  4169. [In] double dRate
  4170. );
  4171. #endregion
  4172. #region Constructor
  4173. public IPinImpl(IntPtr pPin)
  4174. : base(pPin, false)
  4175. {
  4176. }
  4177. #endregion
  4178. #region IPin Members
  4179. public int Connect(IntPtr pReceivePin, AMMediaType pmt)
  4180. {
  4181. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4182. ConnectProc _Proc = GetProcDelegate<ConnectProc>(3);
  4183. if (_Proc == null) return E_UNEXPECTED;
  4184. return (HRESULT)_Proc(
  4185. m_pUnknown,
  4186. pReceivePin, pmt
  4187. );
  4188. }
  4189. public int ReceiveConnection(IntPtr pReceivePin, AMMediaType pmt)
  4190. {
  4191. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4192. ReceiveConnectionProc _Proc = GetProcDelegate<ReceiveConnectionProc>(4);
  4193. if (_Proc == null) return E_UNEXPECTED;
  4194. return (HRESULT)_Proc(
  4195. m_pUnknown,
  4196. pReceivePin, pmt
  4197. );
  4198. }
  4199. public int Disconnect()
  4200. {
  4201. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4202. DisconnectProc _Proc = GetProcDelegate<DisconnectProc>(5);
  4203. if (_Proc == null) return E_UNEXPECTED;
  4204. return (HRESULT)_Proc(
  4205. m_pUnknown
  4206. );
  4207. }
  4208. public int ConnectedTo(out IntPtr ppPin)
  4209. {
  4210. ppPin = IntPtr.Zero;
  4211. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4212. ConnectedToProc _Proc = GetProcDelegate<ConnectedToProc>(6);
  4213. if (_Proc == null) return E_UNEXPECTED;
  4214. return (HRESULT)_Proc(
  4215. m_pUnknown,
  4216. out ppPin
  4217. );
  4218. }
  4219. public int ConnectionMediaType(AMMediaType pmt)
  4220. {
  4221. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4222. ConnectionMediaTypeProc _Proc = GetProcDelegate<ConnectionMediaTypeProc>(7);
  4223. if (_Proc == null) return E_UNEXPECTED;
  4224. return (HRESULT)_Proc(
  4225. m_pUnknown,
  4226. pmt
  4227. );
  4228. }
  4229. public int QueryPinInfo(out PinInfo pInfo)
  4230. {
  4231. pInfo = new PinInfo();
  4232. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4233. QueryPinInfoProc _Proc = GetProcDelegate<QueryPinInfoProc>(8);
  4234. if (_Proc == null) return E_UNEXPECTED;
  4235. return (HRESULT)_Proc(
  4236. m_pUnknown,
  4237. out pInfo
  4238. );
  4239. }
  4240. public int QueryDirection(out PinDirection pPinDir)
  4241. {
  4242. pPinDir = PinDirection.Input;
  4243. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4244. QueryDirectionProc _Proc = GetProcDelegate<QueryDirectionProc>(9);
  4245. if (_Proc == null) return E_UNEXPECTED;
  4246. return (HRESULT)_Proc(
  4247. m_pUnknown,
  4248. out pPinDir
  4249. );
  4250. }
  4251. public int QueryId(out string Id)
  4252. {
  4253. Id = null;
  4254. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4255. QueryIdProc _Proc = GetProcDelegate<QueryIdProc>(10);
  4256. if (_Proc == null) return E_UNEXPECTED;
  4257. return (HRESULT)_Proc(
  4258. m_pUnknown,
  4259. out Id
  4260. );
  4261. }
  4262. public int QueryAccept(AMMediaType pmt)
  4263. {
  4264. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4265. QueryAcceptProc _Proc = GetProcDelegate<QueryAcceptProc>(11);
  4266. if (_Proc == null) return E_UNEXPECTED;
  4267. return (HRESULT)_Proc(
  4268. m_pUnknown,
  4269. pmt
  4270. );
  4271. }
  4272. //public int EnumMediaTypes(out IEnumMediaTypes ppEnum)
  4273. public int EnumMediaTypes(out IntPtr ppEnum)
  4274. {
  4275. ppEnum = IntPtr.Zero;
  4276. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4277. EnumMediaTypesProc _Proc = GetProcDelegate<EnumMediaTypesProc>(12);
  4278. if (_Proc == null) return E_UNEXPECTED;
  4279. return (HRESULT)_Proc(
  4280. m_pUnknown,
  4281. out ppEnum
  4282. );
  4283. }
  4284. public int QueryInternalConnections(IntPtr ppPins, ref int nPin)
  4285. {
  4286. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4287. QueryInternalConnectionsProc _Proc = GetProcDelegate<QueryInternalConnectionsProc>(13);
  4288. if (_Proc == null) return E_UNEXPECTED;
  4289. return (HRESULT)_Proc(
  4290. m_pUnknown,
  4291. ppPins, ref nPin
  4292. );
  4293. }
  4294. public int EndOfStream()
  4295. {
  4296. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4297. EndOfStreamProc _Proc = GetProcDelegate<EndOfStreamProc>(14);
  4298. if (_Proc == null) return E_UNEXPECTED;
  4299. return (HRESULT)_Proc(
  4300. m_pUnknown
  4301. );
  4302. }
  4303. public int BeginFlush()
  4304. {
  4305. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4306. BeginFlushProc _Proc = GetProcDelegate<BeginFlushProc>(15);
  4307. if (_Proc == null) return E_UNEXPECTED;
  4308. return (HRESULT)_Proc(
  4309. m_pUnknown
  4310. );
  4311. }
  4312. public int EndFlush()
  4313. {
  4314. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4315. EndFlushProc _Proc = GetProcDelegate<EndFlushProc>(16);
  4316. if (_Proc == null) return E_UNEXPECTED;
  4317. return (HRESULT)_Proc(
  4318. m_pUnknown
  4319. );
  4320. }
  4321. public int NewSegment(long tStart, long tStop, double dRate)
  4322. {
  4323. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4324. NewSegmentProc _Proc = GetProcDelegate<NewSegmentProc>(17);
  4325. if (_Proc == null) return E_UNEXPECTED;
  4326. return (HRESULT)_Proc(
  4327. m_pUnknown,
  4328. tStart, tStop, dRate
  4329. );
  4330. }
  4331. #endregion
  4332. }
  4333. [ComVisible(false)]
  4334. public class ISeekingPassThruImpl : VTableInterface, ISeekingPassThru
  4335. {
  4336. #region Delegate
  4337. private delegate int InitProc(
  4338. IntPtr pUnk,
  4339. [In, MarshalAs(UnmanagedType.Bool)] bool bSupportRendering,
  4340. [In] IPin pPin
  4341. );
  4342. #endregion
  4343. #region Constructor
  4344. public ISeekingPassThruImpl(IntPtr pSeekingPassThru)
  4345. : base(pSeekingPassThru, false)
  4346. {
  4347. }
  4348. #endregion
  4349. #region ISeekingPassThru Members
  4350. public int Init(bool bSupportRendering, IPin pPin)
  4351. {
  4352. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4353. InitProc _Proc = GetProcDelegate<InitProc>(3);
  4354. if (_Proc == null) return E_UNEXPECTED;
  4355. return (HRESULT)_Proc(
  4356. m_pUnknown,
  4357. bSupportRendering, pPin
  4358. );
  4359. }
  4360. #endregion
  4361. }
  4362. [ComVisible(false)]
  4363. public class IMediaSeekingImpl : VTableInterface, IMediaSeeking
  4364. {
  4365. #region Delegates
  4366. private delegate int GetCapabilitiesProc(
  4367. IntPtr pUnk,
  4368. [Out] out AMSeekingSeekingCapabilities pCapabilities
  4369. );
  4370. private delegate int CheckCapabilitiesProc(
  4371. IntPtr pUnk,
  4372. [In, Out] ref AMSeekingSeekingCapabilities pCapabilities);
  4373. private delegate int IsFormatSupportedProc(
  4374. IntPtr pUnk,
  4375. [In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  4376. private delegate int QueryPreferredFormatProc(
  4377. IntPtr pUnk,
  4378. [Out] out Guid pFormat);
  4379. private delegate int GetTimeFormatProc(
  4380. IntPtr pUnk,
  4381. [Out] out Guid pFormat);
  4382. private delegate int IsUsingTimeFormatProc(
  4383. IntPtr pUnk,
  4384. [In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  4385. private delegate int SetTimeFormatProc(
  4386. IntPtr pUnk,
  4387. [In, MarshalAs(UnmanagedType.LPStruct)] Guid pFormat);
  4388. private delegate int GetDurationProc(
  4389. IntPtr pUnk,
  4390. [Out] out long pDuration);
  4391. private delegate int GetStopPositionProc(
  4392. IntPtr pUnk,
  4393. [Out] out long pStop);
  4394. private delegate int GetCurrentPositionProc(
  4395. IntPtr pUnk,
  4396. [Out] out long pCurrent);
  4397. private delegate int ConvertTimeFormatProc(
  4398. IntPtr pUnk,
  4399. [Out] out long pTarget,
  4400. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pTargetFormat,
  4401. [In] long Source,
  4402. [In, MarshalAs(UnmanagedType.LPStruct)] DsGuid pSourceFormat
  4403. );
  4404. private delegate int SetPositionsProc(
  4405. IntPtr pUnk,
  4406. [In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pCurrent,
  4407. [In] AMSeekingSeekingFlags dwCurrentFlags,
  4408. [In, Out, MarshalAs(UnmanagedType.LPStruct)] DsLong pStop,
  4409. [In] AMSeekingSeekingFlags dwStopFlags
  4410. );
  4411. private delegate int GetPositionsProc(
  4412. IntPtr pUnk,
  4413. [Out] out long pCurrent,
  4414. [Out] out long pStop
  4415. );
  4416. private delegate int GetAvailableProc(
  4417. IntPtr pUnk,
  4418. [Out] out long pEarliest,
  4419. [Out] out long pLatest
  4420. );
  4421. private delegate int SetRateProc(
  4422. IntPtr pUnk,
  4423. [In] double dRate);
  4424. private delegate int GetRateProc(
  4425. IntPtr pUnk,
  4426. [Out] out double pdRate);
  4427. private delegate int GetPrerollProc(
  4428. IntPtr pUnk,
  4429. [Out] out long pllPreroll);
  4430. #endregion
  4431. #region Constructor
  4432. public IMediaSeekingImpl(IntPtr pMediaSeeking)
  4433. : base(pMediaSeeking, typeof(IMediaSeeking))
  4434. {
  4435. }
  4436. #endregion
  4437. #region IMediaSeeking Members
  4438. public int GetCapabilities(out AMSeekingSeekingCapabilities pCapabilities)
  4439. {
  4440. pCapabilities = AMSeekingSeekingCapabilities.None;
  4441. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4442. GetCapabilitiesProc _Proc = GetProcDelegate<GetCapabilitiesProc>(3);
  4443. if (_Proc == null) return E_UNEXPECTED;
  4444. return (HRESULT)_Proc(
  4445. m_pUnknown,
  4446. out pCapabilities
  4447. );
  4448. }
  4449. public int CheckCapabilities(ref AMSeekingSeekingCapabilities pCapabilities)
  4450. {
  4451. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4452. CheckCapabilitiesProc _Proc = GetProcDelegate<CheckCapabilitiesProc>(4);
  4453. if (_Proc == null) return E_UNEXPECTED;
  4454. return (HRESULT)_Proc(
  4455. m_pUnknown,
  4456. ref pCapabilities
  4457. );
  4458. }
  4459. public int IsFormatSupported(Guid pFormat)
  4460. {
  4461. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4462. IsFormatSupportedProc _Proc = GetProcDelegate<IsFormatSupportedProc>(5);
  4463. if (_Proc == null) return E_UNEXPECTED;
  4464. return (HRESULT)_Proc(
  4465. m_pUnknown,
  4466. pFormat
  4467. );
  4468. }
  4469. public int QueryPreferredFormat(out Guid pFormat)
  4470. {
  4471. pFormat = Guid.Empty;
  4472. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4473. QueryPreferredFormatProc _Proc = GetProcDelegate<QueryPreferredFormatProc>(6);
  4474. if (_Proc == null) return E_UNEXPECTED;
  4475. return (HRESULT)_Proc(
  4476. m_pUnknown,
  4477. out pFormat
  4478. );
  4479. }
  4480. public int GetTimeFormat(out Guid pFormat)
  4481. {
  4482. pFormat = Guid.Empty;
  4483. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4484. GetTimeFormatProc _Proc = GetProcDelegate<GetTimeFormatProc>(7);
  4485. if (_Proc == null) return E_UNEXPECTED;
  4486. return (HRESULT)_Proc(
  4487. m_pUnknown,
  4488. out pFormat
  4489. );
  4490. }
  4491. public int IsUsingTimeFormat(Guid pFormat)
  4492. {
  4493. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4494. IsUsingTimeFormatProc _Proc = GetProcDelegate<IsUsingTimeFormatProc>(8);
  4495. if (_Proc == null) return E_UNEXPECTED;
  4496. return (HRESULT)_Proc(
  4497. m_pUnknown,
  4498. pFormat
  4499. );
  4500. }
  4501. public int SetTimeFormat(Guid pFormat)
  4502. {
  4503. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4504. SetTimeFormatProc _Proc = GetProcDelegate<SetTimeFormatProc>(9);
  4505. if (_Proc == null) return E_UNEXPECTED;
  4506. return (HRESULT)_Proc(
  4507. m_pUnknown,
  4508. pFormat
  4509. );
  4510. }
  4511. public int GetDuration(out long pDuration)
  4512. {
  4513. pDuration = 0;
  4514. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4515. GetDurationProc _Proc = GetProcDelegate<GetDurationProc>(10);
  4516. if (_Proc == null) return E_UNEXPECTED;
  4517. return (HRESULT)_Proc(
  4518. m_pUnknown,
  4519. out pDuration
  4520. );
  4521. }
  4522. public int GetStopPosition(out long pStop)
  4523. {
  4524. pStop = 0;
  4525. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4526. GetStopPositionProc _Proc = GetProcDelegate<GetStopPositionProc>(11);
  4527. if (_Proc == null) return E_UNEXPECTED;
  4528. return (HRESULT)_Proc(
  4529. m_pUnknown,
  4530. out pStop
  4531. );
  4532. }
  4533. public int GetCurrentPosition(out long pCurrent)
  4534. {
  4535. pCurrent = 0;
  4536. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4537. GetCurrentPositionProc _Proc = GetProcDelegate<GetCurrentPositionProc>(12);
  4538. if (_Proc == null) return E_UNEXPECTED;
  4539. return (HRESULT)_Proc(
  4540. m_pUnknown,
  4541. out pCurrent
  4542. );
  4543. }
  4544. public int ConvertTimeFormat(out long pTarget, DsGuid pTargetFormat, long Source, DsGuid pSourceFormat)
  4545. {
  4546. pTarget = 0;
  4547. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4548. ConvertTimeFormatProc _Proc = GetProcDelegate<ConvertTimeFormatProc>(13);
  4549. if (_Proc == null) return E_UNEXPECTED;
  4550. return (HRESULT)_Proc(
  4551. m_pUnknown,
  4552. out pTarget, pTargetFormat, Source, pSourceFormat
  4553. );
  4554. }
  4555. public int SetPositions(DsLong pCurrent, AMSeekingSeekingFlags dwCurrentFlags, DsLong pStop, AMSeekingSeekingFlags dwStopFlags)
  4556. {
  4557. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4558. SetPositionsProc _Proc = GetProcDelegate<SetPositionsProc>(14);
  4559. if (_Proc == null) return E_UNEXPECTED;
  4560. return (HRESULT)_Proc(
  4561. m_pUnknown,
  4562. pCurrent, dwCurrentFlags, pStop, dwStopFlags
  4563. );
  4564. }
  4565. public int GetPositions(out long pCurrent, out long pStop)
  4566. {
  4567. pCurrent = 0;
  4568. pStop = 0;
  4569. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4570. GetPositionsProc _Proc = GetProcDelegate<GetPositionsProc>(15);
  4571. if (_Proc == null) return E_UNEXPECTED;
  4572. return (HRESULT)_Proc(
  4573. m_pUnknown,
  4574. out pCurrent, out pStop
  4575. );
  4576. }
  4577. public int GetAvailable(out long pEarliest, out long pLatest)
  4578. {
  4579. pEarliest = 0;
  4580. pLatest = 0;
  4581. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4582. GetAvailableProc _Proc = GetProcDelegate<GetAvailableProc>(16);
  4583. if (_Proc == null) return E_UNEXPECTED;
  4584. return (HRESULT)_Proc(
  4585. m_pUnknown,
  4586. out pEarliest, out pLatest
  4587. );
  4588. }
  4589. public int SetRate(double dRate)
  4590. {
  4591. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4592. SetRateProc _Proc = GetProcDelegate<SetRateProc>(17);
  4593. if (_Proc == null) return E_UNEXPECTED;
  4594. return (HRESULT)_Proc(
  4595. m_pUnknown,
  4596. dRate
  4597. );
  4598. }
  4599. public int GetRate(out double pdRate)
  4600. {
  4601. pdRate = 1.0;
  4602. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4603. GetRateProc _Proc = GetProcDelegate<GetRateProc>(18);
  4604. if (_Proc == null) return E_UNEXPECTED;
  4605. return (HRESULT)_Proc(
  4606. m_pUnknown,
  4607. out pdRate
  4608. );
  4609. }
  4610. public int GetPreroll(out long pllPreroll)
  4611. {
  4612. pllPreroll = 0;
  4613. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4614. GetPrerollProc _Proc = GetProcDelegate<GetPrerollProc>(19);
  4615. if (_Proc == null) return E_UNEXPECTED;
  4616. return (HRESULT)_Proc(
  4617. m_pUnknown,
  4618. out pllPreroll
  4619. );
  4620. }
  4621. #endregion
  4622. }
  4623. [ComVisible(false)]
  4624. public class IPropertyPageSiteImpl : VTableInterface, IPropertyPageSite
  4625. {
  4626. #region delegates
  4627. private delegate int OnStatusChangeProc(
  4628. IntPtr pUnk,
  4629. [In] PropStatus dwFlags);
  4630. private delegate int GetLocaleIDProc(
  4631. IntPtr pUnk,
  4632. [Out] out int LocaleID);
  4633. private delegate int GetPageContainerProc(
  4634. IntPtr pUnk,
  4635. [Out, MarshalAs(UnmanagedType.IUnknown)] out object pUnknown);
  4636. private delegate int TranslateAcceleratorProc(
  4637. IntPtr pUnk,
  4638. IntPtr pMsg);
  4639. #endregion
  4640. #region Constructor
  4641. public IPropertyPageSiteImpl(IntPtr pPropPageSite)
  4642. : base(pPropPageSite, false)
  4643. {
  4644. }
  4645. #endregion
  4646. #region IPropertyPageSite Members
  4647. public int OnStatusChange(PropStatus dwFlags)
  4648. {
  4649. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4650. OnStatusChangeProc _Proc = GetProcDelegate<OnStatusChangeProc>(3);
  4651. if (_Proc == null) return E_UNEXPECTED;
  4652. return (HRESULT)_Proc(
  4653. m_pUnknown,
  4654. dwFlags
  4655. );
  4656. }
  4657. public int GetLocaleID(out int LocaleID)
  4658. {
  4659. LocaleID = 0;
  4660. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4661. GetLocaleIDProc _Proc = GetProcDelegate<GetLocaleIDProc>(4);
  4662. if (_Proc == null) return E_UNEXPECTED;
  4663. return (HRESULT)_Proc(
  4664. m_pUnknown,
  4665. out LocaleID
  4666. );
  4667. }
  4668. public int GetPageContainer(out object pUnk)
  4669. {
  4670. pUnk = null;
  4671. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4672. GetPageContainerProc _Proc = GetProcDelegate<GetPageContainerProc>(5);
  4673. if (_Proc == null) return E_UNEXPECTED;
  4674. return (HRESULT)_Proc(
  4675. m_pUnknown,
  4676. out pUnk
  4677. );
  4678. }
  4679. public int TranslateAccelerator(IntPtr pMsg)
  4680. {
  4681. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4682. TranslateAcceleratorProc _Proc = GetProcDelegate<TranslateAcceleratorProc>(6);
  4683. if (_Proc == null) return E_UNEXPECTED;
  4684. return (HRESULT)_Proc(
  4685. m_pUnknown,
  4686. pMsg
  4687. );
  4688. }
  4689. #endregion
  4690. }
  4691. [ComVisible(false)]
  4692. public class IReferenceClockImpl : VTableInterface, IReferenceClock
  4693. {
  4694. #region Delegate
  4695. private delegate int GetTimeProc(
  4696. IntPtr pUnk,
  4697. [Out] out long pTime);
  4698. private delegate int AdviseTimeProc(
  4699. IntPtr pUnk,
  4700. [In] long baseTime,
  4701. [In] long streamTime,
  4702. [In] IntPtr hEvent,
  4703. [Out] out int pdwAdviseCookie
  4704. );
  4705. private delegate int AdvisePeriodicProc(
  4706. IntPtr pUnk,
  4707. [In] long startTime,
  4708. [In] long periodTime,
  4709. [In] IntPtr hSemaphore,
  4710. [Out] out int pdwAdviseCookie
  4711. );
  4712. private delegate int UnadviseProc(
  4713. IntPtr pUnk,
  4714. [In] int dwAdviseCookie);
  4715. #endregion
  4716. #region Constructor
  4717. public IReferenceClockImpl(IntPtr pReferenceClock)
  4718. : base(pReferenceClock, false)
  4719. {
  4720. }
  4721. #endregion
  4722. #region IReferenceClock Members
  4723. public int GetTime(out long pTime)
  4724. {
  4725. pTime = 0;
  4726. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4727. GetTimeProc _Proc = GetProcDelegate<GetTimeProc>(3);
  4728. if (_Proc == null) return E_UNEXPECTED;
  4729. return (HRESULT)_Proc(
  4730. m_pUnknown,
  4731. out pTime
  4732. );
  4733. }
  4734. public int AdviseTime(long baseTime, long streamTime, IntPtr hEvent, out int pdwAdviseCookie)
  4735. {
  4736. pdwAdviseCookie = 0;
  4737. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4738. AdviseTimeProc _Proc = GetProcDelegate<AdviseTimeProc>(4);
  4739. if (_Proc == null) return E_UNEXPECTED;
  4740. return (HRESULT)_Proc(
  4741. m_pUnknown,
  4742. baseTime, streamTime, hEvent, out pdwAdviseCookie
  4743. );
  4744. }
  4745. public int AdvisePeriodic(long startTime, long periodTime, IntPtr hSemaphore, out int pdwAdviseCookie)
  4746. {
  4747. pdwAdviseCookie = 0;
  4748. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4749. AdvisePeriodicProc _Proc = GetProcDelegate<AdvisePeriodicProc>(5);
  4750. if (_Proc == null) return E_UNEXPECTED;
  4751. return (HRESULT)_Proc(
  4752. m_pUnknown,
  4753. startTime, periodTime, hSemaphore, out pdwAdviseCookie
  4754. );
  4755. }
  4756. public int Unadvise(int dwAdviseCookie)
  4757. {
  4758. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4759. UnadviseProc _Proc = GetProcDelegate<UnadviseProc>(6);
  4760. if (_Proc == null) return E_UNEXPECTED;
  4761. return (HRESULT)_Proc(
  4762. m_pUnknown,
  4763. dwAdviseCookie
  4764. );
  4765. }
  4766. #endregion
  4767. }
  4768. [ComVisible(false)]
  4769. public class IMediaEventSinkImpl : VTableInterface, IMediaEventSink
  4770. {
  4771. #region Delegates
  4772. private delegate int NotifyProc(
  4773. IntPtr pUnk,
  4774. EventCode evCode,
  4775. IntPtr EventParam1,
  4776. IntPtr EventParam2);
  4777. #endregion
  4778. #region Constructor
  4779. public IMediaEventSinkImpl(IntPtr pUnknown)
  4780. : base(pUnknown, false)
  4781. {
  4782. }
  4783. #endregion
  4784. #region IMediaEventSink Members
  4785. public int Notify(EventCode evCode, IntPtr EventParam1, IntPtr EventParam2)
  4786. {
  4787. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4788. NotifyProc _NotifyProc = GetProcDelegate<NotifyProc>(3);
  4789. if (_NotifyProc == null) return E_UNEXPECTED;
  4790. return (HRESULT)_NotifyProc(m_pUnknown, evCode, EventParam1, EventParam2);
  4791. }
  4792. #endregion
  4793. }
  4794. [ComVisible(false)]
  4795. public class IAsyncReaderImpl : VTableInterface, IAsyncReader
  4796. {
  4797. #region Delegate
  4798. private delegate int RequestAllocatorProc(
  4799. IntPtr pUnk,
  4800. [In] IntPtr pPreferred,
  4801. [In, MarshalAs(UnmanagedType.LPStruct)] AllocatorProperties pProps,
  4802. [Out] out IntPtr ppActual
  4803. );
  4804. private delegate int RequestProc(
  4805. IntPtr pUnk,
  4806. [In] IntPtr pSample,
  4807. [In] IntPtr dwUser
  4808. );
  4809. private delegate int WaitForNextProc(
  4810. IntPtr pUnk,
  4811. [In] int dwTimeout,
  4812. [Out] out IntPtr ppSample,
  4813. [Out] out IntPtr pdwUser
  4814. );
  4815. private delegate int SyncReadAlignedProc(
  4816. IntPtr pUnk,
  4817. [In] IntPtr pSample
  4818. );
  4819. private delegate int SyncReadProc(
  4820. IntPtr pUnk,
  4821. [In] long llPosition,
  4822. [In] int lLength,
  4823. [Out] IntPtr pBuffer
  4824. );
  4825. private delegate int LengthProc(
  4826. IntPtr pUnk,
  4827. [Out] out long pTotal,
  4828. [Out] out long pAvailable
  4829. );
  4830. private delegate int BeginFlushProc(
  4831. IntPtr pUnk
  4832. );
  4833. private delegate int EndFlushProc(
  4834. IntPtr pUnk
  4835. );
  4836. #endregion
  4837. #region Constructor
  4838. public IAsyncReaderImpl(IntPtr pAsyncReader)
  4839. : base(pAsyncReader, false)
  4840. {
  4841. }
  4842. #endregion
  4843. #region IAsyncReader Members
  4844. public int RequestAllocator(IntPtr pPreferred, AllocatorProperties pProps, out IntPtr ppActual)
  4845. {
  4846. ppActual = IntPtr.Zero;
  4847. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4848. RequestAllocatorProc _Proc = GetProcDelegate<RequestAllocatorProc>(3);
  4849. if (_Proc == null) return E_UNEXPECTED;
  4850. return (HRESULT)_Proc(
  4851. m_pUnknown,
  4852. pPreferred, pProps, out ppActual
  4853. );
  4854. }
  4855. public int Request(IntPtr pSample, IntPtr dwUser)
  4856. {
  4857. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4858. RequestProc _Proc = GetProcDelegate<RequestProc>(4);
  4859. if (_Proc == null) return E_UNEXPECTED;
  4860. return (HRESULT)_Proc(
  4861. m_pUnknown,
  4862. pSample, dwUser
  4863. );
  4864. }
  4865. public int WaitForNext(int dwTimeout, out IntPtr ppSample, out IntPtr pdwUser)
  4866. {
  4867. ppSample = IntPtr.Zero;
  4868. pdwUser = IntPtr.Zero;
  4869. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4870. WaitForNextProc _Proc = GetProcDelegate<WaitForNextProc>(5);
  4871. if (_Proc == null) return E_UNEXPECTED;
  4872. return (HRESULT)_Proc(
  4873. m_pUnknown,
  4874. dwTimeout,out ppSample, out pdwUser
  4875. );
  4876. }
  4877. public int SyncReadAligned(IntPtr pSample)
  4878. {
  4879. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4880. SyncReadAlignedProc _Proc = GetProcDelegate<SyncReadAlignedProc>(6);
  4881. if (_Proc == null) return E_UNEXPECTED;
  4882. return (HRESULT)_Proc(
  4883. m_pUnknown,
  4884. pSample
  4885. );
  4886. }
  4887. public int SyncRead(long llPosition, int lLength, IntPtr pBuffer)
  4888. {
  4889. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4890. SyncReadProc _Proc = GetProcDelegate<SyncReadProc>(7);
  4891. if (_Proc == null) return E_UNEXPECTED;
  4892. return (HRESULT)_Proc(
  4893. m_pUnknown,
  4894. llPosition, lLength, pBuffer
  4895. );
  4896. }
  4897. public int Length(out long pTotal, out long pAvailable)
  4898. {
  4899. pTotal = 0;
  4900. pAvailable = 0;
  4901. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4902. LengthProc _Proc = GetProcDelegate<LengthProc>(8);
  4903. if (_Proc == null) return E_UNEXPECTED;
  4904. return (HRESULT)_Proc(
  4905. m_pUnknown,
  4906. out pTotal, out pAvailable
  4907. );
  4908. }
  4909. public int BeginFlush()
  4910. {
  4911. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4912. BeginFlushProc _Proc = GetProcDelegate<BeginFlushProc>(9);
  4913. if (_Proc == null) return E_UNEXPECTED;
  4914. return (HRESULT)_Proc(
  4915. m_pUnknown
  4916. );
  4917. }
  4918. public int EndFlush()
  4919. {
  4920. if (m_pUnknown == IntPtr.Zero) return E_NOINTERFACE;
  4921. EndFlushProc _Proc = GetProcDelegate<EndFlushProc>(10);
  4922. if (_Proc == null) return E_UNEXPECTED;
  4923. return (HRESULT)_Proc(
  4924. m_pUnknown
  4925. );
  4926. }
  4927. #endregion
  4928. }
  4929. [ComVisible(false)]
  4930. public class IStreamImpl: VTableInterface, IStream
  4931. {
  4932. #region Delegate
  4933. private delegate int ReadProc(
  4934. IntPtr pUnk,
  4935. [In, Out,MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2)] byte[] pv,
  4936. [In] int cb,
  4937. [In,Out] IntPtr pcbRead
  4938. );
  4939. private delegate int WriteProc(
  4940. IntPtr pUnk,
  4941. [In, Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2)] byte[] pv,
  4942. [In] int cb,
  4943. [In, Out] IntPtr pcbWritten
  4944. );
  4945. private delegate int SeekProc(
  4946. IntPtr pUnk,
  4947. long dlibMove, int dwOrigin, IntPtr plibNewPosition
  4948. );
  4949. private delegate int SetSizeProc(
  4950. IntPtr pUnk,
  4951. long libNewSize
  4952. );
  4953. private delegate int CopyToProc(
  4954. IntPtr pUnk,
  4955. IntPtr pstm, long cb, IntPtr pcbRead, IntPtr pcbWritten
  4956. );
  4957. private delegate int CommitProc(
  4958. IntPtr pUnk,
  4959. int grfCommitFlags
  4960. );
  4961. private delegate int RevertProc(
  4962. IntPtr pUnk
  4963. );
  4964. private delegate int LockRegionProc(
  4965. IntPtr pUnk,
  4966. long libOffset, long cb, int dwLockType
  4967. );
  4968. private delegate int UnlockRegionProc(
  4969. IntPtr pUnk,
  4970. long libOffset, long cb, int dwLockType
  4971. );
  4972. private delegate int StatProc(
  4973. IntPtr pUnk,
  4974. [Out, MarshalAs(UnmanagedType.LPStruct)] out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, int grfStatFlag
  4975. );
  4976. private delegate int CloneProc(
  4977. IntPtr pUnk,
  4978. [Out] out IntPtr ppstm
  4979. );
  4980. #endregion
  4981. #region Constructor
  4982. public IStreamImpl(IntPtr pStream)
  4983. : base(pStream, false)
  4984. {
  4985. }
  4986. #endregion
  4987. #region IStream Members
  4988. public void Read(byte[] pv, int cb, IntPtr pcbRead)
  4989. {
  4990. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  4991. ReadProc _Proc = GetProcDelegate<ReadProc>(3);
  4992. if (_Proc == null) E_UNEXPECTED.Throw();
  4993. HRESULT hr = (HRESULT)_Proc(
  4994. m_pUnknown,
  4995. pv, cb, pcbRead
  4996. );
  4997. hr.Throw();
  4998. }
  4999. public void Write(byte[] pv, int cb, IntPtr pcbWritten)
  5000. {
  5001. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5002. WriteProc _Proc = GetProcDelegate<WriteProc>(4);
  5003. if (_Proc == null) E_UNEXPECTED.Throw();
  5004. HRESULT hr = (HRESULT)_Proc(
  5005. m_pUnknown,
  5006. pv, cb, pcbWritten
  5007. );
  5008. hr.Throw();
  5009. }
  5010. public void Seek(long dlibMove, int dwOrigin, IntPtr plibNewPosition)
  5011. {
  5012. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5013. SeekProc _Proc = GetProcDelegate<SeekProc>(5);
  5014. if (_Proc == null) E_UNEXPECTED.Throw();
  5015. HRESULT hr = (HRESULT)_Proc(
  5016. m_pUnknown,
  5017. dlibMove, dwOrigin, plibNewPosition
  5018. );
  5019. hr.Throw();
  5020. }
  5021. public void SetSize(long libNewSize)
  5022. {
  5023. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5024. SetSizeProc _Proc = GetProcDelegate<SetSizeProc>(6);
  5025. if (_Proc == null) E_UNEXPECTED.Throw();
  5026. HRESULT hr = (HRESULT)_Proc(
  5027. m_pUnknown,
  5028. libNewSize
  5029. );
  5030. hr.Throw();
  5031. }
  5032. public void CopyTo(IStream pstm, long cb, IntPtr pcbRead, IntPtr pcbWritten)
  5033. {
  5034. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5035. CopyToProc _Proc = GetProcDelegate<CopyToProc>(7);
  5036. if (_Proc == null) E_UNEXPECTED.Throw();
  5037. HRESULT hr = (HRESULT)_Proc(
  5038. m_pUnknown,
  5039. Marshal.GetIUnknownForObject(pstm), cb, pcbRead, pcbWritten
  5040. );
  5041. hr.Throw();
  5042. }
  5043. public void Commit(int grfCommitFlags)
  5044. {
  5045. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5046. CommitProc _Proc = GetProcDelegate<CommitProc>(8);
  5047. if (_Proc == null) E_UNEXPECTED.Throw();
  5048. HRESULT hr = (HRESULT)_Proc(
  5049. m_pUnknown,
  5050. grfCommitFlags
  5051. );
  5052. hr.Throw();
  5053. }
  5054. public void Revert()
  5055. {
  5056. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5057. RevertProc _Proc = GetProcDelegate<RevertProc>(9);
  5058. if (_Proc == null) E_UNEXPECTED.Throw();
  5059. HRESULT hr = (HRESULT)_Proc(
  5060. m_pUnknown
  5061. );
  5062. hr.Throw();
  5063. }
  5064. public void LockRegion(long libOffset, long cb, int dwLockType)
  5065. {
  5066. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5067. LockRegionProc _Proc = GetProcDelegate<LockRegionProc>(10);
  5068. if (_Proc == null) E_UNEXPECTED.Throw();
  5069. HRESULT hr = (HRESULT)_Proc(
  5070. m_pUnknown,
  5071. libOffset, cb, dwLockType
  5072. );
  5073. hr.Throw();
  5074. }
  5075. public void UnlockRegion(long libOffset, long cb, int dwLockType)
  5076. {
  5077. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5078. UnlockRegionProc _Proc = GetProcDelegate<UnlockRegionProc>(11);
  5079. if (_Proc == null) E_UNEXPECTED.Throw();
  5080. HRESULT hr = (HRESULT)_Proc(
  5081. m_pUnknown,
  5082. libOffset, cb, dwLockType
  5083. );
  5084. hr.Throw();
  5085. }
  5086. public void Stat(out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, int grfStatFlag)
  5087. {
  5088. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5089. StatProc _Proc = GetProcDelegate<StatProc>(12);
  5090. if (_Proc == null) E_UNEXPECTED.Throw();
  5091. HRESULT hr = (HRESULT)_Proc(
  5092. m_pUnknown,
  5093. out pstatstg, grfStatFlag
  5094. );
  5095. hr.Throw();
  5096. }
  5097. public void Clone(out IStream ppstm)
  5098. {
  5099. if (m_pUnknown == IntPtr.Zero) E_NOINTERFACE.Throw();
  5100. CloneProc _Proc = GetProcDelegate<CloneProc>(13);
  5101. if (_Proc == null) E_UNEXPECTED.Throw();
  5102. IntPtr _ptr;
  5103. HRESULT hr = (HRESULT)_Proc(
  5104. m_pUnknown,
  5105. out _ptr
  5106. );
  5107. hr.Throw();
  5108. ppstm = (IStream)Marshal.GetObjectForIUnknown(_ptr);
  5109. }
  5110. #endregion
  5111. }
  5112. #endregion
  5113. }