Hi Jesse,
Thanks for your response. Yes, I can see that this is a way to introduce additional streams. However, isn't the client supposed to call these methods? I'm not sure how to fit that into my store app. Here is a pseudo code snippet of
how I do this.
MediaCapture^ mediaCapture = ref new MediaCapture
MediaCaptureInitializationSettings settings = ref new MediaCaptureInitializationSettings
settings->StreamingCaptureMode = AudioAndVideo;
settings->VideoDeviceId = MyWebCam->Id
settings->AudioDeviceId = MyAudioDevice->Id (webcam mic)
mediaCapture->InitializeAsync(settings)
mediaCapture->StartPreviewAsync()
mediaCapture->AddEffectAsync(VideoRecord, MftId)
then what????
Where do I call AddInputStreams? It's the client which is supposed to make these calls (as per docs), but I don't see how I can get the client to do this.
SAP