GStreamer Creating C Code applications: Difference between revisions

From RidgeRun Developer Wiki
No edit summary
No edit summary
Line 7: Line 7:
The demo was done on Turrialba SDK for a LeopardBoard DM368  
The demo was done on Turrialba SDK for a LeopardBoard DM368  


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


== Application structure ==
Additionally Ridgerun provides an example that can be added at devdir: $DEVDIR/myapps




Line 15: Line 15:




== Application structure  ==






hello-gst/<br>├── Config<br>├── Makefile<br>└── src<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├── autogen.sh<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├── configure.ac<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├── Makefile.am<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├── README<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; └── src<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├── gstreamer.c<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; └── Makefile.am<br>
== Gstreamer C Code ==
<br>


[[Category:GStreamer]]
[[Category:GStreamer]]

Revision as of 20:57, 17 June 2013

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/myapps



Application structure

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

Gstreamer C Code