I'm working on making a video player using media foundation. I'm using the Sourcereader for this (not through media session pipeline). Here, I wish to prevent the source reader from loading a decoder. Therefore I do not set any preferred output media type. ( I wish insert a decoder on my own after reading the sample. However, I'm not able to successfully use the decoder) I'm doing the following to create the decoder:
MFT_REGISTER_TYPE_INFO info = {MFMediaType_Video, m_pVideoSubtype}; //Here, in my case MEDIASUBTYPE_WVC1
UINT32 unFlags = MFT_ENUM_FLAG_SYNCMFT|MFT_ENUM_FLAG_LOCALMFT|MFT_ENUM_FLAG_SORTANDFILTER;
CHECKHR (hr = MFTEnumEx(
MFT_CATEGORY_VIDEO_DECODER,
unFlags,
&info, // Input type
NULL, // Output type
&ppActivate,
&count
) );
CHECKHR (hr = ppActivate[0]->ActivateObject(IID_PPV_ARGS(m_pDecoder)) );
All seems to work fine until here.
IMFMediaType *pSrcType = NULL;
GUID guidCurrent;
GUID guidMajor;
for (int i = 0; i< 8; i++)
{
hr = m_pDecoder>GetInputAvailableType (0, i, &pSrcType);
pSrcType->GetGUID(MF_MT_MAJOR_TYPE, &guidMajor);
if (guidMajor == MFMediaType_Video) //safety check
{
if (hr == MF_E_NO_MORE_TYPES)
{
break;
}
pSrcType->GetGUID( MF_MT_SUBTYPE, &guidCurrent );
if ( guidCurrent == m_pVideoSubtype ) //m_pVideoSubtype = MEDIASUBTYPE_WVC1
{
break;
}
else
SafeRelease(&pSrcType);
}
}
Here, I manage to get the correct available IMFMediaType while iterating the loop.
Now, I set the following attributes to the IMFMediaType
CHECK_HR( hr = MFSetAttributeRatio(pSrcType, MF_MT_FRAME_RATE, 30000, 1001) );
CHECK_HR( hr = MFSetAttributeSize(pSrcType, MF_MT_FRAME_SIZE, 1280, 720) );
CHECK_HR( hr = pSrcType->SetUINT32(MF_MT_INTERLACE_MODE, MFVideoInterlace_Progressive) );
CHECK_HR( hr = MFSetAttributeRatio(pSrcType, MF_MT_PIXEL_ASPECT_RATIO, 1, 1));
CHECK_HR( hr = pSrcType->SetUINT32(MF_MT_AVG_BITRATE, 5942130) );
(I've checked for the above values on the input media type) However, I could not get the values for: MF_MT_ALL_SAMPLES_INDEPENDENT, MF_MT_FIXED_SIZE_SAMPLES, MF_MT_DEFAULT_STRIDE, MF_MT_SAMPLE_SIZE
After that, when I try to set the above media type as input type to the decoder, I always get MF_E_INVALIDMEDIATYPE
CHECK_HR( hr = ppVideoDecoder->SetInputType(0 , pSrcType, 0) ); //always returns MF_E_INVALIDMEDIATYPE
Any help would be appreciated.
Thanks, Mots