strmbase: Get rid of the unused "cs" parameter to strmbase_video_init().
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3915b8d229
commit
70d2ba7482
|
@ -771,8 +771,7 @@ HRESULT VideoRenderer_create(IUnknown *outer, void **out)
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
hr = strmbase_video_init(&pVideoRenderer->baseControlVideo,
|
hr = strmbase_video_init(&pVideoRenderer->baseControlVideo, &pVideoRenderer->renderer.filter,
|
||||||
&pVideoRenderer->renderer.filter, &pVideoRenderer->renderer.filter.csFilter,
|
|
||||||
&pVideoRenderer->renderer.sink.pin, &renderer_BaseControlVideoFuncTable);
|
&pVideoRenderer->renderer.sink.pin, &renderer_BaseControlVideoFuncTable);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
|
@ -2239,8 +2239,7 @@ static HRESULT vmr_create(IUnknown *outer, void **out, const CLSID *clsid)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
hr = strmbase_video_init(&pVMR->baseControlVideo, &pVMR->renderer.filter,
|
hr = strmbase_video_init(&pVMR->baseControlVideo, &pVMR->renderer.filter,
|
||||||
&pVMR->renderer.filter.csFilter, &pVMR->renderer.sink.pin,
|
&pVMR->renderer.sink.pin, &renderer_BaseControlVideoFuncTable);
|
||||||
&renderer_BaseControlVideoFuncTable);
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
|
|
@ -648,11 +648,10 @@ static const IBasicVideoVtbl basic_video_vtbl =
|
||||||
};
|
};
|
||||||
|
|
||||||
HRESULT WINAPI strmbase_video_init(BaseControlVideo *video, struct strmbase_filter *filter,
|
HRESULT WINAPI strmbase_video_init(BaseControlVideo *video, struct strmbase_filter *filter,
|
||||||
CRITICAL_SECTION *cs, struct strmbase_pin *pin, const BaseControlVideoFuncTable *func_table)
|
struct strmbase_pin *pin, const BaseControlVideoFuncTable *func_table)
|
||||||
{
|
{
|
||||||
video->IBasicVideo_iface.lpVtbl = &basic_video_vtbl;
|
video->IBasicVideo_iface.lpVtbl = &basic_video_vtbl;
|
||||||
video->pFilter = filter;
|
video->pFilter = filter;
|
||||||
video->pInterfaceLock = cs;
|
|
||||||
video->pPin = pin;
|
video->pPin = pin;
|
||||||
video->pFuncsTable = func_table;
|
video->pFuncsTable = func_table;
|
||||||
|
|
||||||
|
|
|
@ -477,7 +477,6 @@ typedef struct tagBaseControlVideo
|
||||||
IBasicVideo IBasicVideo_iface;
|
IBasicVideo IBasicVideo_iface;
|
||||||
|
|
||||||
struct strmbase_filter *pFilter;
|
struct strmbase_filter *pFilter;
|
||||||
CRITICAL_SECTION* pInterfaceLock;
|
|
||||||
struct strmbase_pin *pPin;
|
struct strmbase_pin *pPin;
|
||||||
|
|
||||||
const struct BaseControlVideoFuncTable* pFuncsTable;
|
const struct BaseControlVideoFuncTable* pFuncsTable;
|
||||||
|
@ -509,7 +508,7 @@ typedef struct BaseControlVideoFuncTable {
|
||||||
} BaseControlVideoFuncTable;
|
} BaseControlVideoFuncTable;
|
||||||
|
|
||||||
HRESULT WINAPI strmbase_video_init(BaseControlVideo *video, struct strmbase_filter *filter,
|
HRESULT WINAPI strmbase_video_init(BaseControlVideo *video, struct strmbase_filter *filter,
|
||||||
CRITICAL_SECTION *cs, struct strmbase_pin *pin, const BaseControlVideoFuncTable *func_table);
|
struct strmbase_pin *pin, const BaseControlVideoFuncTable *func_table);
|
||||||
HRESULT WINAPI BaseControlVideo_Destroy(BaseControlVideo *pControlVideo);
|
HRESULT WINAPI BaseControlVideo_Destroy(BaseControlVideo *pControlVideo);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue