blob: 111ea17a56a3ad0cb9c07faa12228b35b2616caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#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);
};
COutputPin* COutputPinCreate(const AM_MEDIA_TYPE* amt,SAMPLEPROC SampleProc,void* pUserData);
#endif /* MPLAYER_OUTPUTPIN_H */
|