I am using WPF MediaKit to render a directshow graph. The display framerate is fine if the wpf D3DRender is small. If I increase the size of the display (the control that is), the framerate drops significantly.
How do I prevent the drop in framerates? My display will need to occasional display the graph full screen, which causes the framerates to drop to an unacceptable value.
I heard the EVR (Enhanced Video Render) is much better than the VMR9. Will the EVR maintain the framerates when increasing the size of the display?
You should specify video compression codec (MediaSubType) when initializing directshow graph. I had the same problem when trying to capture video from web camera using default compression (in my case it was YUY2).
Example:
Example can be found in WPFMediaKit.DirectShow.MediaPlayers.VideoCapturePlayer.