Discussion:
how to write a directshow filter
(too old to reply)
k***@gmail.com
2007-09-26 05:23:45 UTC
Permalink
Hello All,

I m quite new to the technology. And i want to write my own
directshow
filter.
Can anyone please tell me that is it possible to write a directshow
filter in c# ?? and if yes how to do that?


what are the basic steps to follow to write our own custom filter??


Thank you,
Kuldeep
Armin Zingler
2007-09-26 12:08:39 UTC
Permalink
Post by k***@gmail.com
Hello All,
I m quite new to the technology. And i want to write my own
directshow
filter.
Can anyone please tell me that is it possible to write a directshow
filter in c# ?? and if yes how to do that?
what are the basic steps to follow to write our own custom filter??
Google for

"c#" "directshow filter"

(in the web and in the usenet ("groups"))

There are some results.

In general, there is *no* managed DirectShow support from MSFT. DirectShow
has even been removed from the DX SDK back in April 2005 and is now part of
the Platform SDK. C++ is strongly recommended to write DShow filters, though
you might find (rare) information in the internet on how to do it in C#.

See also
http://tmhare.mvps.org/faqs.htm
http://sourceforge.net/project/showfiles.php?group_id=136334 (also it's
forum)


Armin
Olie
2007-10-01 16:24:01 UTC
Permalink
The DirectShowLib library on sourceforge has some examples of creating
direct show filters. Be warned though, it is not possible to write
filters in managed code and so you will need to write them in C++.
Loading...