Do I have to compile GStreamer on my own? Can I do it using Visual Studio 2010?
I\'m struggling to find a good step-by-step guide with instructions
This links gives a complete method to compile GStreamer using Visual Studio and this one is to compile QtGstreamer.
You could try out build from OSSBuild. You should use svn client to checkout address
http://ossbuild.googlecode.com/svn/trunk/Shared/Build/Windows/Win32
Then it is only matter of configuring VS2010 to know where to look for it. It contains all thet one needs already compiled. Since i run linux i have no possibility of checking how to configure it correctly.
Ok... that last one isn't so bad: Project Properties->Configuration Properties->Linker->Input->Additional Dependancies (add the name of the library e.g. gstreamer.lib or gstreamer.dll)
Note: you may have to do the same setup for the QtGstreamer libraries and headers as the one for Gstreamer, and yes, QtGstreamer relies on Gstreamer so you need to setup for both.
Happy coding! :)