亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? axextend.idl

?? 墨香最新私服
?? IDL
?? 第 1 頁 / 共 5 頁
字號:
	[in] int iProgress);		// a number between 0 and 100 (%)
}


//
// Capture graph builder that can deal with a single filter having more than
// one pin of each category... some new devices can capture both audio and
// video, for example
//

[
    object,
    uuid(93E5A4E0-2D50-11d2-ABFA-00A0C9C6E38D),
    pointer_default(unique)
]
interface ICaptureGraphBuilder2 : IUnknown {

    // Use this filtergraph
    HRESULT SetFiltergraph(
	[in] IGraphBuilder *pfg);

    // what filtergraph are you using?
    // *ppfg->Release() when you're done with it
    HRESULT GetFiltergraph(
	[out] IGraphBuilder **ppfg);

    // creates a rendering section in the filtergraph consisting of a MUX
    // of some filetype, and a file writer (and connects them together)
    // *ppf->Release() when you're done with it
    // *ppSink->Release() when you're done with it
    HRESULT SetOutputFileName(
	[in] const GUID *pType,		// GUID of MUX filter to use
	[in] LPCOLESTR lpstrFile,	// filename given to file writer
	[out] IBaseFilter **ppf,	// returns pointer to the MUX
        [out] IFileSinkFilter **ppSink);// queried from file writer

    // Looks for an interface on the filter and on the output pin of the given
    // category and type.  (Categories: CAPTURE/PREVIEW/VIDEOPORT/VBI etc. or
    // NULL for "don't care".  Type:  MAJORTYPE_Video/Audio etc or NULL)
    // !!! Will some filters have >1 capture pin?  ie RGB and MPEG?
    // It will also look upstream and downstream of
    // the pin for the interface, to find interfaces on renderers, MUXES, TV
    // Tuners, etc.
    // Call *ppint->Release() when you're done with it
    [local] HRESULT FindInterface(
	[in] const GUID *pCategory,	// can be NULL for all pins
	[in] const GUID *pType,		// Audio/Video/??? or NULL (don't care)
	[in] IBaseFilter *pf,
	[in] REFIID riid,
	[out] void **ppint);
    [call_as(FindInterface)] HRESULT RemoteFindInterface(
	[in] const GUID *pCategory,	// can be NULL for all pins
	[in] const GUID *pType,		// Audio/Video/??? or NULL (don't care)
	[in] IBaseFilter *pf,
	[in] REFIID riid,
	[out] IUnknown **ppint);

    // Connects the pin of the given category and type of the source filter to
    // the rendering filter, optionally through another filter (compressor?)
    // (Type is a Majortype, like Video or Audio)
    // For a non-NULL category, it will instantiate and connect additional
    // required filters upstream too, like TV Tuners and Crossbars.
    // If there is only one output pin on the source, use a NULL category
    // and type.  You can also have pSource be a pin
    HRESULT RenderStream(
	[in] const GUID *pCategory,	// can be NULL if only one output pin
	[in] const GUID *pType,		// Major type (Video/Audio/etc)
	[in] IUnknown *pSource,		// filter or pin
	[in] IBaseFilter *pfCompressor,
	[in] IBaseFilter *pfRenderer);	// can be NULL

    // Sends IAMStreamControl messages to the pin of the desired category,
    // (eg. "capture" or "preview") and of the desired type (eg. VIDEO or AUDIO)
    // A category MUST be given.  If a filter is given, a type must be too.
    // REFERENCE_TIME=NULL means NOW
    // REFERENCE_TIME=MAX_TIME means never, or cancel previous request
    // NULL controls all capture filters in the graph - you will get one
    //     notification for each filter with a pin of that category found
    // returns S_FALSE if stop will be signalled before last sample is
    //     rendered.
    // return a FAILURE code if the filter does not support IAMStreamControl
    HRESULT ControlStream(
	[in] const GUID *pCategory,
	[in] const GUID *pType,		// Major type (Video/Audio/etc)
	[in] IBaseFilter *pFilter,
	[in] REFERENCE_TIME *pstart,
	[in] REFERENCE_TIME *pstop,
	[in] WORD wStartCookie,		// high word reserved
	[in] WORD wStopCookie);		// high word reserved

    // creates a pre-allocated file of a given size in bytes
    HRESULT AllocCapFile(
	[in] LPCOLESTR lpstr,
	[in] DWORDLONG dwlSize);

    // Copies the valid file data out of the old, possibly huge old capture
    //   file into a shorter new file.
    // Return S_FALSE from your progress function to abort capture, S_OK to
    //   continue
    HRESULT CopyCaptureFile(
	[in] LPOLESTR lpwstrOld,
	[in] LPOLESTR lpwstrNew,
	[in] int fAllowEscAbort,	// pressing ESC will abort?
	[in] IAMCopyCaptureFileProgress *pCallback);	// implement this to
							// get progress
    // Helper fn to find a certain pin on a filter.
    HRESULT FindPin(
	[in] IUnknown *pSource,
	[in] PIN_DIRECTION pindir,	// input or output?
	[in] const GUID *pCategory,	// what category? (or NULL)
	[in] const GUID *pType,		// what Major type (or NULL)
	[in] BOOL fUnconnected,		// must it be unconnected?
	[in] int num,			// which pin matching this? (0 based)
	[out] IPin **ppPin);
}

enum _AM_RENSDEREXFLAGS {
    AM_RENDEREX_RENDERTOEXISTINGRENDERERS = 0x01 // Dont add any renderers
};

//
// IFilterGraph2
//
// New methods on for IFilterGraph and IGraphBuilder will have to go here.
//

[
    object,
    uuid(36b73882-c2c8-11cf-8b46-00805f6cef60),
    pointer_default(unique)
]
interface IFilterGraph2: IGraphBuilder {

    // Add a Moniker source moniker
    HRESULT AddSourceFilterForMoniker(
          [in] IMoniker *pMoniker,
          [in] IBindCtx *pCtx,
          [in, unique] LPCWSTR lpcwstrFilterName,
          [out] IBaseFilter **ppFilter
    );

    // Specify the type for a reconnect
    // This is better than Reconnect as sometime the parties to a
    // reconnection can't remember what type they'd agreed (!)
    HRESULT ReconnectEx
        ( [in] IPin * ppin,             // the pin to disconnect and reconnect
          [in, unique] const AM_MEDIA_TYPE *pmt // the type to reconnect with - can be NULL
        );

    // Render a pin without adding any new renderers
    HRESULT RenderEx( [in] IPin *pPinOut,         // Pin to render
                      [in] DWORD dwFlags,         // flags
                      [in, out] DWORD *pvContext   // Unused - set to NULL
                    );

#if 0
    // Method looks for a filter which supports the specified interface.  If such
    // a filter exists, an AddRef()'ed pointer to the requested interface is placed
    // in *ppInterface.
    //
    // *ppInterface will be NULL on return if such a filter could not be found, and
    // the method will return E_NOINTERFACE.
    //
    // pdwIndex is an internal index that is used for obtaining subsequent interfaces.
    // *pdwIndex should be initialized to zero.  It is set on return to a value that
    // allows the implementation of FindFilterInterface to search for further interfaces
    // if called again.  If no more such interfaces exist, the method will return E_NOINTERFACE.
    //
    // If pdwIndex is NULL, FindFilterInterface returns an interface only if there is just
    // a single filter in the graph that supports the interface.  Otherwise it returns
    // E_NOINTERFACE.
    //
    HRESULT FindFilterInterface( [in] REFIID iid, [out] void ** ppInterface, [in,out] LPDWORD pdwIndex );

    // Tries to obtain the interface from the filter graph itself.  If this fails,
    // it attempts to find the unique filter that supports the interface.
    // On failure the method will return E_NOINTERFACE.  On success, it returns
    // S_OK and an AddRef()'ed pointer to the requested interface in *ppInterface.
    //
    HRESULT FindInterface( [in] REFIID iid, [out] void ** ppInterface );

#endif
}

//
// StreamBuilder
// aka Graph building with constraints
// aka convergent graphs
// aka Closed captioning

[
    object,
    local,
    uuid(56a868bf-0ad4-11ce-b03a-0020af0ba770),
    pointer_default(unique)
]
interface IStreamBuilder : IUnknown {

    // Connect this output pin directly or indirectly, using transform filters
    // if necessary to thing(s) that will render it, within this graph
    // Move from Initial state to Rendered state.

    HRESULT Render
        ( [in] IPin * ppinOut,         // the output pin
          [in] IGraphBuilder * pGraph  // the graph
        );

    // Undo what you did in Render.  Return to Initial state.
    HRESULT Backout
        ( [in] IPin * ppinOut,         // the output pin
          [in] IGraphBuilder * pGraph  // the graph
        );
}


// async reader interface - supported by file source filters. Allows
// multiple overlapped reads from different positions


[
        object,
        uuid(56a868aa-0ad4-11ce-b03a-0020af0ba770),
        pointer_default(unique)
]
interface IAsyncReader : IUnknown
{
    // pass in your preferred allocator and your preferred properties.
    // method returns the actual allocator to be used. Call GetProperties
    // on returned allocator to learn alignment and prefix etc chosen.
    // this allocator will be not be committed and decommitted by
    // the async reader, only by the consumer.
    // Must call this before calling Request.
    HRESULT RequestAllocator(
                [in]  IMemAllocator* pPreferred,
                [in]  ALLOCATOR_PROPERTIES* pProps,
                [out] IMemAllocator ** ppActual);

    // queue a request for data.
    // media sample start and stop times contain the requested absolute
    // byte position (start inclusive, stop exclusive).
    // may fail if sample not obtained from agreed allocator.
    // may fail if start/stop position does not match agreed alignment.
    // samples allocated from source pin's allocator may fail
    // GetPointer until after returning from WaitForNext.
    // Stop position must be aligned - this means it may exceed duration.
    // on completion, stop position will be corrected to unaligned
    // actual data.
    HRESULT Request(
                [in] IMediaSample* pSample,
                [in] DWORD_PTR dwUser);	        // user context

    // block until the next sample is completed or the timeout occurs.
    // timeout (millisecs) may be 0 or INFINITE. Samples may not
    // be delivered in order. If there is a read error of any sort, a
    // notification will already have been sent by the source filter,
    // and HRESULT will be an error.
    // If ppSample is not null, then a Request completed with the result
    // code returned.
    HRESULT WaitForNext(
                [in]  DWORD dwTimeout,
                [out] IMediaSample** ppSample,  // completed sample
                [out] DWORD_PTR * pdwUser);		// user context

    // sync read of data. Sample passed in must have been acquired from
    // the agreed allocator. Start and stop position must be aligned.
    // equivalent to a Request/WaitForNext pair, but may avoid the
    // need for a thread on the source filter.
    HRESULT SyncReadAligned(
                [in] IMediaSample* pSample);


    // sync read. works in stopped state as well as run state.
    // need not be aligned. Will fail if read is beyond actual total
    // length.
    HRESULT SyncRead(
                [in]  LONGLONG llPosition,	// absolute file position
                [in]  LONG lLength,		// nr bytes required
                [out, size_is(lLength)]
		      BYTE* pBuffer);		// write data here

    // return total length of stream, and currently available length.
    // reads for beyond the available length but within the total length will
    // normally succeed but may block for a long period.
    HRESULT Length(
                [out] LONGLONG* pTotal,
                [out] LONGLONG* pAvailable);

    // cause all outstanding reads to return, possibly with a failure code
    //(VFW_E_TIMEOUT) indicating they were cancelled.
    // Between BeginFlush and EndFlush calls, Request calls will fail and
    // WaitForNext calls will always complete immediately.
    HRESULT BeginFlush(void);
    HRESULT EndFlush(void);
}


// interface provided by the filtergraph itself to let other objects
// (especially plug-in distributors, but also apps like graphedt) know
// when the graph has changed.
[
    object,
    uuid(56a868ab-0ad4-11ce-b03a-0020af0ba770),
    pointer_default(unique)
]
interface IGraphVersion : IUnknown
{
    // returns the current graph version number
    // this is incremented every time there is a change in the
    // set of filters in the graph or in their connections
    //
    // if this is changed since your last enumeration, then re-enumerate
    // the graph
    HRESULT QueryVersion(LONG* pVersion);
}




//
// interface describing an object that uses resources.
//
// implement if: you request resources using IResourceManager. You will
// need to pass your implementation of this pointer as an in param.
//
// use if: you are a resource manager who implements IResourceManager
[
    object,
    uuid(56a868ad-0ad4-11ce-b03a-0020af0ba770),
    pointer_default(unique)
]
interface IResourceConsumer : IUnknown
{
    // you may acquire the resource specified.
    // return values:
    //      S_OK    -- I have successfully acquired it
    //      S_FALSE -- I will acquire it and call NotifyAcquire afterwards
    //      VFW_S_NOT_NEEDED: I no longer need the resource
    //      FAILED(hr)-I tried to acquire it and failed.

    HRESULT
    AcquireResource(
        [in] LONG idResource);



    // Please release the resource.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
a4yy欧美一区二区三区| 久久久综合精品| 国产一区二区三区综合| 日韩欧美不卡在线观看视频| 亚洲一二三区在线观看| 日韩午夜中文字幕| 国产成人精品免费网站| 国产精品午夜春色av| 91小视频免费看| 亚洲精品日韩一| 91精品欧美综合在线观看最新 | 欧美一区二区三区免费| 六月婷婷色综合| 国产午夜一区二区三区| 欧美亚洲日本一区| 免费人成精品欧美精品| ww亚洲ww在线观看国产| 91影院在线观看| 免费一级欧美片在线观看| 久久品道一品道久久精品| 色狠狠色狠狠综合| 国产在线视频一区二区三区| 日韩毛片视频在线看| 日韩欧美国产午夜精品| 91久久国产综合久久| 久久成人羞羞网站| 亚洲一本大道在线| 26uuu色噜噜精品一区| 一本大道久久a久久精品综合| 久久精品国产在热久久| 天堂久久久久va久久久久| 欧美激情中文不卡| 精品久久五月天| 91精品国产综合久久久久久久| 欧美精品久久99| 91福利视频网站| av不卡一区二区三区| 国产美女一区二区| 久久99精品久久久久久国产越南 | 色香蕉成人二区免费| 在线成人免费视频| 欧美妇女性影城| 欧美日韩aaaaaa| 91久久精品一区二区三区| 成人午夜电影网站| 国产传媒欧美日韩成人| 国产91在线|亚洲| 国产河南妇女毛片精品久久久| 老司机精品视频在线| 国产精品影视网| 日韩免费观看高清完整版在线观看| 欧美日韩在线观看一区二区| 欧美日韩在线免费视频| 欧美日韩黄色一区二区| 777午夜精品视频在线播放| 91精品国产一区二区| 日韩一区二区不卡| 中文字幕国产一区二区| 国产精品久久久久毛片软件| 成人欧美一区二区三区1314| 一区av在线播放| 另类小说欧美激情| 成人午夜视频在线| 在线播放日韩导航| 久久久另类综合| 亚洲人成网站在线| 蜜桃视频在线观看一区| 56国语精品自产拍在线观看| 欧美一区二区在线看| 奇米一区二区三区av| 成人app软件下载大全免费| 91玉足脚交白嫩脚丫在线播放| 这里只有精品99re| 中文字幕不卡三区| 日韩国产精品91| aaa亚洲精品| 久久久久久久久久久久久夜| 亚洲国产一区二区三区青草影视| 久久国产综合精品| 欧美少妇性性性| 最新国产精品久久精品| 国产麻豆成人传媒免费观看| 欧美日韩成人一区| 亚洲黄色免费电影| 成人成人成人在线视频| 久久久久99精品国产片| 日韩成人dvd| 337p亚洲精品色噜噜狠狠| 亚洲成国产人片在线观看| 日本韩国欧美在线| 亚洲自拍另类综合| 欧美亚洲一区二区在线| 亚洲欧美另类在线| 91丨porny丨户外露出| 中文字幕一区二区三区在线不卡| 黄色精品一二区| 国产精品久久毛片a| 粉嫩av一区二区三区粉嫩| 中文字幕欧美日韩一区| 国产精品综合av一区二区国产馆| 久久精品视频在线看| 国产不卡一区视频| 亚洲色图欧洲色图婷婷| 在线观看精品一区| 日韩av高清在线观看| 国产女人18水真多18精品一级做 | 午夜精品久久久久久| 欧美一区二区三区婷婷月色| 国产在线麻豆精品观看| 欧美极品美女视频| 91久久一区二区| 国产伦精品一区二区三区在线观看| 日韩一区二区三区av| 99久久亚洲一区二区三区青草| 亚洲国产精品精华液网站| 日韩欧美一级二级| aa级大片欧美| 九九精品一区二区| 亚洲精品免费播放| 日韩三级在线观看| 一本到不卡精品视频在线观看 | 久久影视一区二区| 欧美视频在线播放| 国产不卡高清在线观看视频| 亚洲一级二级在线| 国产日韩欧美精品一区| 91精品国产一区二区三区蜜臀 | 久久先锋影音av| 欧美三级日本三级少妇99| 国产激情一区二区三区| 日本欧美一区二区| 亚洲综合色丁香婷婷六月图片| 国产婷婷精品av在线| 日韩欧美久久一区| 色欧美88888久久久久久影院| 国产成人免费xxxxxxxx| 激情综合网最新| 日本中文字幕一区二区有限公司| 国产精品成人免费在线| 国产丝袜欧美中文另类| 久久久精品国产免大香伊| 欧美tk丨vk视频| 久久中文娱乐网| 久久精品夜色噜噜亚洲a∨| 日韩午夜在线观看| 日韩免费高清av| 久久综合色婷婷| 国产欧美一区二区精品性色| 国产精品传媒入口麻豆| 国产精品久久精品日日| 一区二区三区国产| 性做久久久久久免费观看| 亚洲高清免费观看高清完整版在线观看 | 裸体健美xxxx欧美裸体表演| 五月天激情综合网| 免费成人av资源网| 国产宾馆实践打屁股91| 色诱亚洲精品久久久久久| 欧美伊人久久大香线蕉综合69| 欧美丝袜丝交足nylons| 精品国产一区二区亚洲人成毛片| 久久久综合激的五月天| 亚洲自拍偷拍九九九| 国产麻豆视频一区| 91九色02白丝porn| 精品噜噜噜噜久久久久久久久试看| 久久久久久久久久电影| 亚洲午夜在线视频| 国产盗摄女厕一区二区三区| 欧美日韩在线播| 久久久综合网站| 午夜国产精品一区| 成人av资源在线| 日韩视频在线永久播放| 国产精品热久久久久夜色精品三区| 久久99精品国产.久久久久| av成人免费在线观看| 18成人在线视频| 在线视频一区二区免费| 性感美女极品91精品| 欧美群妇大交群中文字幕| 中文字幕av一区二区三区| 精品一区二区久久| 欧美不卡123| 精品亚洲aⅴ乱码一区二区三区| 欧美日韩aaaaaa| 亚洲成人免费看| 欧美高清视频不卡网| 日韩制服丝袜av| 日韩一区二区三区在线视频| 日本在线不卡视频一二三区| 在线播放欧美女士性生活| 三级在线观看一区二区 | 老司机精品视频在线| 亚洲精品在线电影| 99久久婷婷国产| 日韩av在线播放中文字幕| 国产偷国产偷精品高清尤物| 成人黄动漫网站免费app| 中文字幕一区免费在线观看|