Lines Matching refs:pmt
267 HRESULT AudioFakeSink::CheckMediaType(const CMediaType *pmt) in CheckMediaType() argument
269 if(pmt != NULL) in CheckMediaType()
276 if (IsEqualGUID (pmt->majortype, m_MediaType.majortype) && in CheckMediaType()
277 IsEqualGUID (pmt->subtype, m_MediaType.subtype) && in CheckMediaType()
278 IsEqualGUID (pmt->formattype, m_MediaType.formattype)) in CheckMediaType()
286 if (pmt->formattype == FORMAT_WaveFormatEx) { in CheckMediaType()
287 if (pmt->cbFormat >= sizeof (WAVEFORMATEX) && in CheckMediaType()
290 WAVEFORMATEX *wf1 = (WAVEFORMATEX *)pmt->pbFormat; in CheckMediaType()
298 if (pmt->cbFormat == m_MediaType.cbFormat && in CheckMediaType()
299 pmt->cbFormat == 0 || in CheckMediaType()
300 (pmt->pbFormat != NULL && m_MediaType.pbFormat != NULL && in CheckMediaType()
301 memcmp (pmt->pbFormat, m_MediaType.pbFormat, pmt->cbFormat) == 0)) in CheckMediaType()