Installation » History » Version 2

Version 1 (J. Moringen, 08/13/2011 02:06 PM) → Version 2/3 (J. Moringen, 08/16/2011 04:38 PM)

h1. Installation

h2. Installing Dependencies

h3. RSB-related Dependencies

* "RSC":https://code.cor-lab.org/projects/rsc
* "RSB":https://code.cor-lab.org/projects/rsb
* "RST":https://code.cor-lab.org/projects/rst

h3. GStreamer Dependencies

** GStreamer core libraries and header files (Ubuntu package @libgstreamer0.10-dev@)
** GStreamer base plugin libraries and header files (Ubuntu package @libgstreamer-plugins-base0.10-dev@)

For example via
<pre>
sudo apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev
</pre>

h2. Building and Installing the Plugin

The plugin can be built as follows
<pre>
cd $RSB_GSTREAMER_ROOT/build
cmake -DBOOSTUUID_ROOT=$BOOSTUUIDDIR \
-DRSC_DIR=$RSCPREFIX/share/RSC \
-DRSB_DIR=$RSBPREFIX/share/RSB \
-DRST_DIR=$RSTPREFIX/share/RST \
..
make
</pre>

This command sequence should produce a file called @libgstrsb.so@ in the @build@ directory. To install the plugin, this file can be copied to @$HOME/.gstreamer-0.10/plugins@ @$HOME/.gstreamer/plugins@ where it will be discovered and used automatically. This can be checked by executing the commands

<pre>
gst-inspect-0.10 rsbvideosrc
gst-inspect-0.10 rsbaudiosrc
</pre>