Mercurial > mplayer.hg
view loader/dshow/cmediasample.h @ 391:15fb291915fa
- changed -bpp again: if vo driver obeys depth value set by user, then
the codec should do the same ...
author | acki2 |
---|---|
date | Fri, 13 Apr 2001 17:50:13 +0000 |
parents | bdc4a8fc04d8 |
children | 9355b2ae634e |
line wrap: on
line source
#ifndef _CMEDIASAMPLE_H #define _CMEDIASAMPLE_H #include "interfaces.h" #include "guids.h" #include "default.h" class CMediaSample: public IMediaSample { IMemAllocator* all; int size; int actual_size; char* block; int refcount; int isPreroll; int isSyncPoint; AM_MEDIA_TYPE media_type; int type_valid; public: CMediaSample(IMemAllocator* allocator, long _size); ~CMediaSample(); static long STDCALL QueryInterface ( IUnknown * This, /* [in] */ IID* riid, /* [iid_is][out] */ void **ppvObject); static long STDCALL AddRef ( IUnknown * This); static long STDCALL Release ( IUnknown * This); static HRESULT STDCALL GetPointer ( IMediaSample * This, /* [out] */ BYTE **ppBuffer); static long STDCALL GetSize ( IMediaSample * This); static HRESULT STDCALL GetTime ( IMediaSample * This, /* [out] */ REFERENCE_TIME *pTimeStart, /* [out] */ REFERENCE_TIME *pTimeEnd); static HRESULT STDCALL SetTime ( IMediaSample * This, /* [in] */ REFERENCE_TIME *pTimeStart, /* [in] */ REFERENCE_TIME *pTimeEnd); static HRESULT STDCALL IsSyncPoint ( IMediaSample * This); static HRESULT STDCALL SetSyncPoint ( IMediaSample * This, long bIsSyncPoint); static HRESULT STDCALL IsPreroll ( IMediaSample * This); static HRESULT STDCALL SetPreroll ( IMediaSample * This, long bIsPreroll); static long STDCALL GetActualDataLength ( IMediaSample * This); static HRESULT STDCALL SetActualDataLength ( IMediaSample * This, long __MIDL_0010); static HRESULT STDCALL GetMediaType ( IMediaSample * This, AM_MEDIA_TYPE **ppMediaType); static HRESULT STDCALL SetMediaType ( IMediaSample * This, AM_MEDIA_TYPE *pMediaType); static HRESULT STDCALL IsDiscontinuity ( IMediaSample * This); static HRESULT STDCALL SetDiscontinuity ( IMediaSample * This, long bDiscontinuity); static HRESULT STDCALL GetMediaTime ( IMediaSample * This, /* [out] */ LONGLONG *pTimeStart, /* [out] */ LONGLONG *pTimeEnd); static HRESULT STDCALL SetMediaTime ( IMediaSample * This, /* [in] */ LONGLONG *pTimeStart, /* [in] */ LONGLONG *pTimeEnd); }; #endif