Mercurial > mplayer.hg
view loader/dshow/outputpin.h @ 7074:136332c7da42
with the help of the Mandrake compiler maintainer this problem has
been solved. With gcc 3.2 or 3.1.1 you need to add the compiler option
-mno-omit-leaf-frame-pointer to make the win32 dll loader work again.
by Goetz Waschk <waschk@informatik.uni-rostock.de>
author | arpi |
---|---|
date | Thu, 22 Aug 2002 23:41:51 +0000 |
parents | 623cdb771e97 |
children | 174e2a58b4cd |
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 _COutputPin COutputPin; typedef struct _COutputMemPin COutputMemPin; struct _COutputMemPin { IMemInputPin_vt* vt; DECLARE_IUNKNOWN(); char** frame_pointer; long* frame_size_pointer; MemAllocator* pAllocator; COutputPin* parent; }; struct _COutputPin { IPin_vt* vt; DECLARE_IUNKNOWN(); COutputMemPin* mempin; AM_MEDIA_TYPE type; IPin* remote; void ( *SetFramePointer )(COutputPin*, char** z); void ( *SetPointer2 )(COutputPin*, char* p); void ( *SetFrameSizePointer )(COutputPin*, long* z); void ( *SetNewFormat )(COutputPin*, const AM_MEDIA_TYPE* a); }; COutputPin* COutputPinCreate(const AM_MEDIA_TYPE* vhdr); #endif /* DS_OUTPUTPIN_H */