Ok I have this 3d tv Transformation Filter. I can easily configure its properties by using GraphEdit, right click on its properties and set whatever I want.
Now I want to set the properties automatically by building a Filter Graph in C++. I've read up the Windows SDK documentation and find out that I have to use the IKsPropertySet function (correct me if i'm wrong).
I have to use IKsPropertySet::QuerySupported to check whether it support this kind of property or not. And to do that, i have to know the
dwPropID
[in] Identifier of the property within the property set.
But how can I get that ID. Like this filter have the property of adjusting horizontal and vertical, but i cannot find the ID of that properties.
Is there anyway to list down all the properties ID that a filter support ?