- Download the GStreamer libraries and headers for windows.
- Put them in a folder.
- Add the folder's path to your Include Directories and Library Directories. (Project Properties->Configuration Properties->VC++ Directories)
- Add the library to your linker's list of libraries to link to (woah!).
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)
- #include < gstreamer.h > (or whatever the header you need to include is called)
- if your using QtGstreamer, ignore the previous step and #include < QtGstreamer.h >
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! :)