summaryrefslogtreecommitdiffstats
path: root/loader/dshow/outputpin.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-26 00:56:11 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-26 00:56:11 +0000
commit9c1529ed2a4ac5f8e63c14f3c44a6c2c0447caef (patch)
tree4e1ae6ca7783dbb91874dc89dc69109f2cf2c853 /loader/dshow/outputpin.h
parent82adc24b1f4df0eff2e8c1da7b5cd4ac7971a149 (diff)
downloadmpv-9c1529ed2a4ac5f8e63c14f3c44a6c2c0447caef.tar.bz2
mpv-9c1529ed2a4ac5f8e63c14f3c44a6c2c0447caef.tar.xz
avifile sync. seems to some bugs fixed...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3131 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dshow/outputpin.h')
-rw-r--r--loader/dshow/outputpin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/dshow/outputpin.h b/loader/dshow/outputpin.h
index 47ef9f43ef..016b36787f 100644
--- a/loader/dshow/outputpin.h
+++ b/loader/dshow/outputpin.h
@@ -11,6 +11,7 @@ typedef struct _COutputMemPin COutputMemPin;
struct _COutputMemPin
{
IMemInputPin_vt* vt;
+ DECLARE_IUNKNOWN();
char** frame_pointer;
long* frame_size_pointer;
MemAllocator* pAllocator;
@@ -20,8 +21,8 @@ struct _COutputMemPin
struct _COutputPin
{
IPin_vt* vt;
+ DECLARE_IUNKNOWN();
COutputMemPin* mempin;
- int refcount;
AM_MEDIA_TYPE type;
IPin* remote;
void ( *SetFramePointer )(COutputPin*, char** z);