Mercurial > mplayer.hg
view loader/dshow/outputpin.h @ 15441:bc4bcea4c813
added x264enc options: direct_pred, log, (no)deblock deblock{alpha,beta}, (no)cabac, qp_{min,max}
1.933: misc corrections and clarifications in x264 options.
1.934: remove x264 option "cabacidc", because the default is always best.
1.935: Online audio switching now supports Matroska too
author | kraymer |
---|---|
date | Fri, 13 May 2005 20:19:01 +0000 |
parents | 174e2a58b4cd |
children | 49f01f8fbd60 |
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; 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 */