strmbase: Remove unnecessary calling convention from the filter_get_pin() callback.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8a8c5a8229
commit
1fc5c6b75d
|
@ -191,7 +191,7 @@ static const IBaseFilterVtbl basefilter_vtbl =
|
|||
BaseFilterImpl_QueryVendorInfo
|
||||
};
|
||||
|
||||
static IPin * WINAPI evr_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *evr_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
FIXME("iface %p, index %u, stub!\n", iface, index);
|
||||
return NULL;
|
||||
|
|
|
@ -171,7 +171,7 @@ static const IBaseFilterVtbl AudioRecordVtbl = {
|
|||
BaseFilterImpl_QueryVendorInfo
|
||||
};
|
||||
|
||||
static IPin * WINAPI audio_record_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *audio_record_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
FIXME("iface %p, index %u, stub!\n", iface, index);
|
||||
return NULL;
|
||||
|
|
|
@ -244,7 +244,7 @@ static const IBaseFilterVtbl AVICompressorVtbl = {
|
|||
AVICompressor_QueryVendorInfo
|
||||
};
|
||||
|
||||
static IPin * WINAPI avi_compressor_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *avi_compressor_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
AVICompressor *This = impl_from_BaseFilter(iface);
|
||||
IPin *ret;
|
||||
|
|
|
@ -116,7 +116,7 @@ static inline AviMux* impl_from_BaseFilter(BaseFilter *filter)
|
|||
return CONTAINING_RECORD(filter, AviMux, filter);
|
||||
}
|
||||
|
||||
static IPin * WINAPI avi_mux_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *avi_mux_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
AviMux *This = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -199,7 +199,7 @@ static const IBaseFilterVtbl SmartTeeFilterVtbl = {
|
|||
BaseFilterImpl_QueryVendorInfo
|
||||
};
|
||||
|
||||
static IPin * WINAPI smart_tee_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *smart_tee_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
SmartTeeFilter *This = impl_from_BaseFilter(iface);
|
||||
IPin *ret;
|
||||
|
|
|
@ -192,7 +192,7 @@ static const IUnknownVtbl unknown_inner_vtbl =
|
|||
unknown_inner_Release,
|
||||
};
|
||||
|
||||
static IPin * WINAPI vfw_capture_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *vfw_capture_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
VfwCapture *This = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -339,7 +339,7 @@ static const IUnknownVtbl samplegrabber_vtbl =
|
|||
SampleGrabber_Release,
|
||||
};
|
||||
|
||||
static IPin * WINAPI sample_grabber_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *sample_grabber_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
SG_Impl *This = impl_from_BaseFilter(iface);
|
||||
IPin *pin;
|
||||
|
|
|
@ -392,7 +392,7 @@ HRESULT GetClassMediaFile(IAsyncReader * pReader, LPCOLESTR pszFileName, GUID *
|
|||
return hr;
|
||||
}
|
||||
|
||||
static IPin * WINAPI async_reader_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *async_reader_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
AsyncReader *This = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ static inline ParserImpl *impl_from_BaseFilter( BaseFilter *iface )
|
|||
return CONTAINING_RECORD(iface, ParserImpl, filter);
|
||||
}
|
||||
|
||||
static IPin * WINAPI parser_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *parser_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
ParserImpl *filter = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -183,7 +183,7 @@ static const IPinVtbl BaseRenderer_InputPin_Vtbl =
|
|||
BaseInputPinImpl_NewSegment
|
||||
};
|
||||
|
||||
static IPin * WINAPI renderer_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *renderer_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
BaseRenderer *This = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -128,7 +128,7 @@ static HRESULT WINAPI TransformFilter_Output_GetMediaType(BasePin *This, int iPo
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
static IPin * WINAPI transform_get_pin(BaseFilter *iface, unsigned int index)
|
||||
static IPin *transform_get_pin(BaseFilter *iface, unsigned int index)
|
||||
{
|
||||
TransformFilter *filter = impl_from_BaseFilter(iface);
|
||||
|
||||
|
|
|
@ -1196,7 +1196,7 @@ static inline GSTOutPin *impl_from_IMediaSeeking( IMediaSeeking *iface )
|
|||
return CONTAINING_RECORD(iface, GSTOutPin, seek.IMediaSeeking_iface);
|
||||
}
|
||||
|
||||
static IPin * WINAPI gstdemux_get_pin(BaseFilter *base, unsigned int index)
|
||||
static IPin *gstdemux_get_pin(BaseFilter *base, unsigned int index)
|
||||
{
|
||||
GSTImpl *This = impl_from_IBaseFilter(&base->IBaseFilter_iface);
|
||||
IPin *pin;
|
||||
|
|
|
@ -202,7 +202,7 @@ static inline QTSplitter *impl_from_IBaseFilter( IBaseFilter *iface )
|
|||
* Base Filter
|
||||
*/
|
||||
|
||||
static IPin * WINAPI qt_splitter_get_pin(BaseFilter *base, unsigned int index)
|
||||
static IPin *qt_splitter_get_pin(BaseFilter *base, unsigned int index)
|
||||
{
|
||||
QTSplitter *filter = impl_from_BaseFilter(base);
|
||||
|
||||
|
|
|
@ -170,7 +170,7 @@ typedef struct BaseFilter
|
|||
|
||||
typedef struct BaseFilterFuncTable
|
||||
{
|
||||
IPin *(WINAPI *filter_get_pin)(BaseFilter *iface, unsigned int index);
|
||||
IPin *(*filter_get_pin)(BaseFilter *iface, unsigned int index);
|
||||
} BaseFilterFuncTable;
|
||||
|
||||
HRESULT WINAPI BaseFilterImpl_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv);
|
||||
|
|
Loading…
Reference in New Issue