51 lines
2.3 KiB
C
51 lines
2.3 KiB
C
|
/*
|
||
|
* Header file for private strmbase implementations
|
||
|
*
|
||
|
* Copyright 2012 Aric Stewart, CodeWeavers
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||
|
*/
|
||
|
|
||
|
/* Quality Control */
|
||
|
typedef struct QualityControlImpl {
|
||
|
IQualityControl IQualityControl_iface;
|
||
|
IPin *input;
|
||
|
IBaseFilter *self;
|
||
|
IQualityControl *tonotify;
|
||
|
|
||
|
/* Render stuff */
|
||
|
IReferenceClock *clock;
|
||
|
REFERENCE_TIME last_in_time, last_left, avg_duration, avg_pt, avg_render, start, stop;
|
||
|
REFERENCE_TIME current_jitter, current_rstart, current_rstop, clockstart;
|
||
|
double avg_rate;
|
||
|
LONG64 rendered, dropped;
|
||
|
BOOL qos_handled, is_dropped;
|
||
|
} QualityControlImpl;
|
||
|
|
||
|
HRESULT QualityControlImpl_Create(IPin *input, IBaseFilter *self, QualityControlImpl **ppv);
|
||
|
HRESULT QualityControlImpl_Destroy(QualityControlImpl *This);
|
||
|
HRESULT WINAPI QualityControlImpl_QueryInterface(IQualityControl *iface, REFIID riid, void **ppv);
|
||
|
ULONG WINAPI QualityControlImpl_AddRef(IQualityControl *iface);
|
||
|
ULONG WINAPI QualityControlImpl_Release(IQualityControl *iface);
|
||
|
HRESULT WINAPI QualityControlImpl_Notify(IQualityControl *iface, IBaseFilter *sender, Quality qm);
|
||
|
HRESULT WINAPI QualityControlImpl_SetSink(IQualityControl *iface, IQualityControl *tonotify);
|
||
|
|
||
|
void QualityControlRender_Start(QualityControlImpl *This, REFERENCE_TIME tStart);
|
||
|
void QualityControlRender_SetClock(QualityControlImpl *This, IReferenceClock *clock);
|
||
|
HRESULT QualityControlRender_WaitFor(QualityControlImpl *This, IMediaSample *sample, HANDLE ev);
|
||
|
void QualityControlRender_DoQOS(QualityControlImpl *priv);
|
||
|
void QualityControlRender_BeginRender(QualityControlImpl *This);
|
||
|
void QualityControlRender_EndRender(QualityControlImpl *This);
|