annotate loader/dshow/outputpin.h @ 4399:a4098aec828a

minor QP bugfix
author michael
date Mon, 28 Jan 2002 22:38:15 +0000
parents 623cdb771e97
children 174e2a58b4cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
1 #ifndef DS_OUTPUTPIN_H
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
2 #define DS_OUTPUTPIN_H
168
bdc4a8fc04d8 Initial revision
arpi_esp
parents:
diff changeset
3
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
4 /* "output pin" - the one that connects to output of filter. */
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
5
713
9355b2ae634e avifile-0.6-CVS merge
arpi_esp
parents: 168
diff changeset
6 #include "allocator.h"
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
7
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
8 typedef struct _COutputPin COutputPin;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
9
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
10 typedef struct _COutputMemPin COutputMemPin;
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
11 struct _COutputMemPin
168
bdc4a8fc04d8 Initial revision
arpi_esp
parents:
diff changeset
12 {
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
13 IMemInputPin_vt* vt;
3130
623cdb771e97 avifile sync. seems to some bugs fixed...
arpi
parents: 3056
diff changeset
14 DECLARE_IUNKNOWN();
168
bdc4a8fc04d8 Initial revision
arpi_esp
parents:
diff changeset
15 char** frame_pointer;
bdc4a8fc04d8 Initial revision
arpi_esp
parents:
diff changeset
16 long* frame_size_pointer;
713
9355b2ae634e avifile-0.6-CVS merge
arpi_esp
parents: 168
diff changeset
17 MemAllocator* pAllocator;
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
18 COutputPin* parent;
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
19 };
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
20
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
21 struct _COutputPin
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
22 {
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
23 IPin_vt* vt;
3130
623cdb771e97 avifile sync. seems to some bugs fixed...
arpi
parents: 3056
diff changeset
24 DECLARE_IUNKNOWN();
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
25 COutputMemPin* mempin;
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
26 AM_MEDIA_TYPE type;
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
27 IPin* remote;
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
28 void ( *SetFramePointer )(COutputPin*, char** z);
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
29 void ( *SetPointer2 )(COutputPin*, char* p);
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
30 void ( *SetFrameSizePointer )(COutputPin*, long* z);
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
31 void ( *SetNewFormat )(COutputPin*, const AM_MEDIA_TYPE* a);
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
32 };
168
bdc4a8fc04d8 Initial revision
arpi_esp
parents:
diff changeset
33
3056
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
34 COutputPin* COutputPinCreate(const AM_MEDIA_TYPE* vhdr);
213b35f84cf3 C++ -> C (import from avifile cvs)
arpi
parents: 1545
diff changeset
35
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents: 713
diff changeset
36 #endif /* DS_OUTPUTPIN_H */