Mercurial > mplayer.hg
view loader/dshow/outputpin.h @ 22890:3a738b9f35f1
r22845: Clarify -xineramascreen -2 behaviour
r22900: documented -mpegopts :adelay
r22901: removed unexplainable and escaped trailing spaces from -mpegopts :drop and :tsaf
r22902: restored previous definition of -mpegopts :drop and :tsaf (r22900); they were there for a good reason
author | voroshil |
---|---|
date | Tue, 03 Apr 2007 15:59:35 +0000 |
parents | 49f01f8fbd60 |
children | 2c8cdb9123b8 |
line wrap: on
line source
#ifndef DS_OUTPUTPIN_H #define DS_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); }; COutputPin* COutputPinCreate(const AM_MEDIA_TYPE* amt,SAMPLEPROC SampleProc,void* pUserData); #endif /* DS_OUTPUTPIN_H */