quartz: Remove unused code (Clang).
This commit is contained in:
parent
065e4770f0
commit
bf12844bf1
|
@ -58,11 +58,6 @@ static inline ACMWrapperImpl *impl_from_TransformFilter( TransformFilter *iface
|
|||
return CONTAINING_RECORD(iface, ACMWrapperImpl, tf.filter);
|
||||
}
|
||||
|
||||
static inline ACMWrapperImpl *impl_from_IBaseFilter( IBaseFilter *iface )
|
||||
{
|
||||
return CONTAINING_RECORD(iface, ACMWrapperImpl, tf.filter.IBaseFilter_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI ACMWrapper_Receive(TransformFilter *tf, IMediaSample *pSample)
|
||||
{
|
||||
ACMWrapperImpl* This = impl_from_TransformFilter(tf);
|
||||
|
|
|
@ -52,11 +52,6 @@ typedef struct AVIDecImpl
|
|||
|
||||
static const IBaseFilterVtbl AVIDec_Vtbl;
|
||||
|
||||
static inline AVIDecImpl *impl_from_IBaseFilter( IBaseFilter *iface )
|
||||
{
|
||||
return CONTAINING_RECORD(iface, AVIDecImpl, tf.filter.IBaseFilter_iface);
|
||||
}
|
||||
|
||||
static inline AVIDecImpl *impl_from_TransformFilter( TransformFilter *iface )
|
||||
{
|
||||
return CONTAINING_RECORD(iface, AVIDecImpl, tf.filter);
|
||||
|
|
|
@ -46,7 +46,6 @@ static const REFERENCE_TIME DSoundRenderer_Max_Fill = 150 * 10000;
|
|||
static const IBaseFilterVtbl DSoundRender_Vtbl;
|
||||
static const IBasicAudioVtbl IBasicAudio_Vtbl;
|
||||
static const IReferenceClockVtbl IReferenceClock_Vtbl;
|
||||
static const IMediaSeekingVtbl IMediaSeeking_Vtbl;
|
||||
static const IAMDirectSoundVtbl IAMDirectSound_Vtbl;
|
||||
static const IAMFilterMiscFlagsVtbl IAMFilterMiscFlags_Vtbl;
|
||||
|
||||
|
|
|
@ -96,7 +96,6 @@ static int MPEGSplitter_head_check(const BYTE *header)
|
|||
}
|
||||
|
||||
static const WCHAR wszAudioStream[] = {'A','u','d','i','o',0};
|
||||
static const WCHAR wszVideoStream[] = {'V','i','d','e','o',0};
|
||||
|
||||
static const DWORD freqs[10] = { 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0 };
|
||||
|
||||
|
|
Loading…
Reference in New Issue