I'm new to direct show and I'm wondering if this is possible (any additional help to finding a solution would also be nice but I'm more worried about if this is worth pursing).
I am creating a DirectShow source filter in C++ and I'm designing it such that the FillBuffer call gets passed to a C# application. From my understanding the C# application will need to load the DirectShow filter (I plan on using the DirectShowNet library) and then request the interface I created that contains helper methods (to specify the FillBuffer function and configure the media source). This is very similar to the GSSF example on the DirectShowNet site.
However, I'm wondering if the act of loading the filter into one application prevents it from being used in another - or if the changes I make to the configuration of the filter will not be reflected if the filter is loaded in a different application.
Like I said I'm not that comfortable with COM or DirectShow.
