I have been using WPFMediaKit to render a DirectShow graph. Here is my setup.
I am having trouble using one MediaPlayerBase
multiple times with multiple D3DRender instances. I have an IVideoEngine
that returns a single graph (via MediaPlayerBase
) that is used to preview. The IVideoEngine
internally manages the DirectShow graph for switching camera inputs/etc. The idea is that this single graph (via MediaPlayerBase
) may be used multiple times, simultaneously, or (more likely) at separate times via the D3DRenderer
base class.
I created a new RenderElementControl
that simply renders a MediaPlayerBase
onto the surface. It works great for the first instance used for a particular instance of the MediaPlayerBase
, but when using the RenderElementControl
again, no video is rendered.
Here is my source code to specifically render a MediaPlayerBase
.
public class RenderElementControl : D3DRenderer
{
private readonly MediaPlayerBase _mediaPlayerBase;
public RenderElementControl(MediaPlayerBase mediaPlayerBase)
{
_mediaPlayerBase = mediaPlayerBase;
Loaded += OnLoaded;
Unloaded += OnUnloaded;
}
private void OnUnloaded(object sender, RoutedEventArgs routedEventArgs)
{
_mediaPlayerBase.NewAllocatorFrame -= OnMediaPlayerNewAllocatorFramePrivate;
_mediaPlayerBase.NewAllocatorSurface -= OnMediaPlayerNewAllocatorSurfacePrivate;
}
private void OnLoaded(object sender, RoutedEventArgs routedEventArgs)
{
_mediaPlayerBase.NewAllocatorFrame += OnMediaPlayerNewAllocatorFramePrivate;
_mediaPlayerBase.NewAllocatorSurface += OnMediaPlayerNewAllocatorSurfacePrivate;
_mediaPlayerBase.Dispatcher.DoEvents();
}
private void OnMediaPlayerNewAllocatorSurfacePrivate(object sender, IntPtr pSurface)
{
SetBackBuffer(pSurface);
}
private void OnMediaPlayerNewAllocatorFramePrivate()
{
InvalidateVideoImage();
}
}
The question
Why does this control not work for a second instance of a single MediaPlayerBase
? How do I make it so that I can use multiple RenderElementControl
, possibly at the same time, with the same MediaPlayerBase
?
Note: For those not familiar with WPFMediaKit, here is the source code for D3DRenderer and MediaPlayerBase that handles rendering a DirectShow render (VMR or EMR).
I was able to solve the issue by keeping my own internal copy of RenderElementControl, and issuing out cloned D3Renderer clones. Here is the source code.