AKG
AKG

Reputation: 618

Writing gstreamer plugins in windows

I am required to write a plugin for gstreamer. The code which will be integrated in the plugin is actually available as VS 2005 project. That's why I intend to develop the plug as well in visual studio. I couldn't find any resources which talks about setting up gstreamer plugin dev environment in windows as Visual Studio Project.

The gstreamer windows SDK doesn't contain the required files for plugin development as mentioned in http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/chapter-building-boiler.html.

Note: The following question though similar is not what I am looking for : Needed environment for building gstreamer plugins in Windows

Upvotes: 4

Views: 3572

Answers (1)

ylatuya
ylatuya

Reputation: 446

To develop GStreamer plugins on Windows you can use the GStreamer SDK.

The chapter Constructing the Boilerplate is focused on Linux development and it references to the git repository gst-template, which contains templates for building plugins and apps using the Autotools build system. Since you will use VS, you will only the source code templates, that you can directly download here.

Building a plugin is similar to building a GStreamer application in terms of dependencies and in the SDK documentation you will find detailed explanations on how to create new VS projects (in the section Creating new projects using the wizard).

To build your plugin you will need:

  1. Create a new GStreamer project in VS as explained in the docs
  2. Add the template sources of gst-template

Upvotes: 6

Related Questions