我正在使用Windows Media Foundation API在C ++中编写应用程序。
我创建一个IMFMediaSource,创建一个PresentationDescriptor,选择一个流,然后在媒体源上调用Start。
我对API文档的阅读是对Start的调用应该生成一个MENewStream事件。我的代码为媒体源调用GetEvent,它只是永久阻止。
为什么我至少看不到新的流事件?我计划从循环内的媒体源请求音频样本,但为此,我需要新流事件提供的接口。
IMFMediaSource *pMediaSource = <initialized from another pointer>
HRESULT hr;
IMFPresentationDescriptor *pPresentationDescriptor;
IMFMediaEventGenerator *pEventGen;
IMFMediaStream *pMediaStream;
IMFMediaEvent *pMediaEvent;
DWORD streamCount;
PROPVARIANT propVar;
hr = pMediaSource->CreatePresentationDescriptor(&pPresentationDescriptor);
hr = pPresentationDescriptor->GetStreamDescriptorCount(&streamCount);
printf("The capture device has %ld streams\n",streamCount);
hr = pPresentationDescriptor->SelectStream(0L);
hr = pMediaSource->QueryInterface(IID_IMFMediaEventGenerator,(LPVOID *)&pEventGen);
PropVariantInit(&propVar);
propVar.scode = VT_EMPTY;
hr = pMediaSource->Start(pPresentationDescriptor,NULL,&propVar);
while (1) {
printf("Waiting for event\n"); fflush(stdout);
hr = pMediaSource->GetEvent(0L,&pMediaEvent);
printf("Got event\n"); fflush(stdout);
}
此循环在主应用程序线程生成的工作线程中运行。 为简洁起见,我省略了对HRESULT的错误检查。
答案 0 :(得分:0)
解决:MFStartup()缺少调用。