Home
last modified time | relevance | path

Searched refs:m_MediaType (Results 1 – 10 of 10) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshowfakesink.cpp34 m_MediaType.Set (*pmt); in gst_set_media_type()
49 if (!IsEqualGUID(pmt->majortype, m_MediaType.majortype) || in CheckMediaType()
50 !IsEqualGUID(pmt->subtype, m_MediaType.subtype) || in CheckMediaType()
51 !IsEqualGUID(pmt->formattype, m_MediaType.formattype) || in CheckMediaType()
52 (pmt->cbFormat != m_MediaType.cbFormat)) in CheckMediaType()
56 VIDEOINFOHEADER *info2 = (VIDEOINFOHEADER*)m_MediaType.pbFormat; in CheckMediaType()
Dgstdshowfakesink.h52 CMediaType m_MediaType; variable
/third_party/gstreamer/gstplugins_bad/sys/dshowvideosink/
Ddshowvideofakesrc.cpp43 *pMediaType = m_MediaType; in GetMediaType()
60 if (IsEqualGUID(pmt->majortype,m_MediaType.majortype) && in CheckMediaType()
61 IsEqualGUID(pmt->subtype,m_MediaType.subtype) && in CheckMediaType()
62 IsEqualGUID(pmt->formattype,m_MediaType.formattype) && in CheckMediaType()
63 pmt->cbFormat >= m_MediaType.cbFormat) in CheckMediaType()
67 VIDEOINFOHEADER *curvh = (VIDEOINFOHEADER *)m_MediaType.pbFormat; in CheckMediaType()
120 m_MediaType.Set (*pmt); in SetMediaType()
121 m_SampleSize = m_MediaType.GetSampleSize(); in SetMediaType()
135 VIDEOINFOHEADER *vh = (VIDEOINFOHEADER *)m_MediaType.pbFormat; in CopyToDestinationBuffer()
Ddshowvideofakesrc.h29 CMediaType m_MediaType;
/third_party/gstreamer/gstplugins_bad/sys/dshowdecwrapper/
Dgstdshowfakesrc.cpp47 *pMediaType = m_MediaType; in GetMediaType()
75 if (m_MediaType == *pmt) { in CheckMediaType()
96 m_MediaType.Set (*pmt); in SetMediaType()
97 m_SampleSize = m_MediaType.GetSampleSize(); in SetMediaType()
Dgstdshowaudiodec.h147 m_MediaType.Set (*pmt); in SetMediaType()
154 CMediaType m_MediaType; variable
Dgstdshowvideodec.h151 m_MediaType.Set (*pmt); in SetMediaType()
157 CMediaType m_MediaType; variable
Dgstdshowaudiodec.cpp276 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()
288 m_MediaType.cbFormat >= sizeof (WAVEFORMATEX)) in CheckMediaType()
291 WAVEFORMATEX *wf2 = (WAVEFORMATEX *)m_MediaType.pbFormat; in CheckMediaType()
298 if (pmt->cbFormat == m_MediaType.cbFormat && in CheckMediaType()
300 (pmt->pbFormat != NULL && m_MediaType.pbFormat != NULL && in CheckMediaType()
301 memcmp (pmt->pbFormat, m_MediaType.pbFormat, pmt->cbFormat) == 0)) in CheckMediaType()
Dgstdshowfakesrc.h32 CMediaType m_MediaType; variable
Dgstdshowvideodec.cpp365 if (*pmt == m_MediaType) in CheckMediaType()