I have used x264 DirectShow filter from Monogram for decoding h264 avc video , i need to create intrance and add filter to graph in directshow , i checked the CLSID of it from grapthEdit , and that is 'x264' , i guess that to create instance we need the GUID for that filter , i have no clue how can i create filter instance using 'x264' value.
I am using directshow with vc++
Can any body have idea on this???
ProgIDthere. OP has to useMIDL_INTERFACEto hardcode theCLSID(or useCLSIDFromString, ordeclspec(uuid(+__uuidof). – Roman R. May 11 '12 at 21:31DEFINE_GUIDinstead ofMIDL_INTERFACEabove. – Roman R. May 12 '12 at 5:46