GStreamer Creating C Code applications

From RidgeRun Developer Wiki
Revision as of 20:59, 17 June 2013 by Caguero (talk | contribs)

Gstreamer C Code Applications

This wiki documents how to create a Gstreamer C code application for Ridgerun's SDK. The applications will be created at $(DEVDIR)/myapps, will use Ridgerun classes for gstreamer, autotools and general sdk installation into target.


The demo was done on Turrialba SDK for a LeopardBoard DM368

Gstreamer documentation has information about creating applications at: gstreamer.freedesktop.org/data/doc/gstreamer/head/manual/html/chapter-helloworld.html

Additionally Ridgerun provides an example that can be added at devdir: $DEVDIR/myapp, this application can be compiled for ARM and also for HOST


Git repository:




Application structure

hello-gst/
├── Config
├── Makefile
└── src
         ├── autogen.sh
         ├── configure.ac
         ├── Makefile.am
         ├── README
         └── src
                  ├── gstreamer.c
                  └── Makefile.am

Gstreamer C Code