📄 outputpin.h
字号:
#ifndef MPLAYER_OUTPUTPIN_H#define MPLAYER_OUTPUTPIN_H/* "output pin" - the one that connects to output of filter. */#include "allocator.h"typedef struct COutputMemPin COutputMemPin;typedef struct COutputPin COutputPin;/** Callback routine for copying samples from pin into filter \param pUserData pointer to user's data \param sample IMediaSample*/typedef HRESULT STDCALL (*SAMPLEPROC)(void* pUserData,IMediaSample*sample);struct COutputPin{ IPin_vt* vt; DECLARE_IUNKNOWN(); COutputMemPin* mempin; AM_MEDIA_TYPE type; IPin* remote; SAMPLEPROC SampleProc; void* pUserData; void ( *SetNewFormat )(COutputPin*, const AM_MEDIA_TYPE* a); int restrict_media_type;};COutputPin* COutputPinCreate(const AM_MEDIA_TYPE* amt,SAMPLEPROC SampleProc,void* pUserData);#endif /* MPLAYER_OUTPUTPIN_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -