Search code examples
debuggingdllgstreamerdebug-build

gstreamer debug builds


I m writing a multimedia application .For Debugging purpose I need gstreamer debug builds for windows. Ossbuild only provides the release dll. Does anyone know where I can get debug dlls for gstreamer?


Solution

  • You'll have to build it yourself, until the Gstreamer SDK comes out for Windows. Even if you managed to obtain debug DLLs, they would have to be from the same version of gstreamer that you're targeting with your release build, or else you'd get non-meaningful results when debugging.

    If you used OSSBuild with Visual Studio, you may be able to find the .pdb files for debugging already in $OSSBUILD/Build/Windows/Win32/Release/pdb directory; if you can find these files, you can add them to Visual Studio so it knows to use them by following, e.g. these instructions.

    Reference for OSSBuild debug info: here