Lines Matching refs:AM_MEDIA_TYPE

31 …static const AM_MEDIA_TYPE defaultMediaType = { MEDIATYPE_NULL, MEDIASUBTYPE_NULL, TRUE, FALSE, 1,…
83 STDMETHODIMP Next(ULONG count, AM_MEDIA_TYPE **out, ULONG *fetched) in Next()
97 *out = static_cast<AM_MEDIA_TYPE *>(::CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE))); in Next()
98 const AM_MEDIA_TYPE original = m_pin->mediaTypes().at(m_index); in Next()
147 QPin::QPin(QBaseFilter *parent, PIN_DIRECTION dir, const QVector<AM_MEDIA_TYPE> &mt) : in QPin()
205 STDMETHODIMP QPin::ReceiveConnection(IPin *pin, const AM_MEDIA_TYPE *type) in ReceiveConnection()
230 STDMETHODIMP QPin::Connect(IPin *pin, const AM_MEDIA_TYPE *type) in Connect()
324 STDMETHODIMP QPin::ConnectionMediaType(AM_MEDIA_TYPE *type) in ConnectionMediaType()
373 STDMETHODIMP QPin::QueryAccept(const AM_MEDIA_TYPE *type) in QueryAccept()
381 const AM_MEDIA_TYPE &current = m_mediaTypes.at(i); in QueryAccept()
445 AM_MEDIA_TYPE *type = 0; in checkOutputMediaTypesConnection()
466 const AM_MEDIA_TYPE &current = m_mediaTypes.at(i); in checkOwnMediaTypesConnection()
478 void QPin::freeMediaType(const AM_MEDIA_TYPE &type) in freeMediaType()
488 void QPin::freeMediaType(AM_MEDIA_TYPE *type) in freeMediaType()
501 void QPin::setConnectedType(const AM_MEDIA_TYPE &type) in setConnectedType()
511 const AM_MEDIA_TYPE &QPin::connectedType() const in connectedType()
551 QVector<AM_MEDIA_TYPE> QPin::mediaTypes() const in mediaTypes()
557 HRESULT QPin::setAcceptedMediaType(const AM_MEDIA_TYPE &mt) in setAcceptedMediaType()
559 const QVector<AM_MEDIA_TYPE> oldMediaTypes = m_mediaTypes; in setAcceptedMediaType()
560 m_mediaTypes = QVector<AM_MEDIA_TYPE>() << mt; in setAcceptedMediaType()
608 AM_MEDIA_TYPE QPin::copyMediaType(const AM_MEDIA_TYPE &type) in copyMediaType()
610 AM_MEDIA_TYPE ret = type; in copyMediaType()