Mercurial > mplayer.hg
view loader/dshow/outputpin.h @ 25868:c36c43253806
Fix compilation failure because bitfile was undefined:
In file included from decoder.c:36:
mp4.h:46: error: expected ')' before '*' token
author | diego |
---|---|
date | Mon, 28 Jan 2008 01:31:39 +0000 |
parents | 2c8cdb9123b8 |
children | a8ea87c71d18 |
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 */