I have registered the VLC activeX using "regsvr32 axvlc.dll".
In my Visual Studio 2005 project, I have created a ActiveX control using the VLC ActiveX.
First can someone explain me why the ActiveX registration (by regsvr32) created two ActiveX controls : "VideoLAN VLC ActiveX Plugin v1" and "VideoLAN VLC ActiveX Plugin v2" ? I have read on [url]viewtopic.php?p=92883&sid=497dd2bc0ebf3 ... c5a69cbe20[/url] that it is not a problem and that using v1 or v2 is just the same.
Then I wanted to test my ActiveX control. But I can't use function llike addTarget(...). It seems the only functions that I can use begin with "put_" or "get_" (like put_Volume or get_Volume). Visual Studio doesn't propose me other functions (in the functions choice pop-up window) that these latter and when I try to force the use of another function like addTarget, my project doesn't compile.
Can someone explain me how he/she gets access to a function like addTarget ?
Finally, I have another questions: is there a way to get access to the decoded frames in memory ?