Difference between revisions of "BeagleBoard/gst-openmax"

From eLinux.org
Jump to: navigation, search
m (Add link to Beagle main page)
(See also: dsp-tools)
 
(18 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
[[Category: Linux]]
 
[[Category: Linux]]
 
[[Category: OMAP]]
 
[[Category: OMAP]]
This article explains how to use TI's DSP with GStreamer (e.g. on [[BeagleBoard|BeagleBoard]]). You need to have the DSP properly set up following [[BeagleBoard/DSP_Howto]].
+
 
 +
This article explains how to use TI's OpenMAX-IL with GStreamer (e.g. on [[BeagleBoard]]).
 +
 
 +
[http://www.khronos.org/openmax/ OpenMAX IL] is a standardized API to communicate with multimedia codecs (implemented either in hardware or software).
 +
 
 +
[http://freedesktop.org/wiki/GstOpenMAX GstOpenMAX] is a GStreamer plug-in that allows communication with OpenMAX IL components.  
  
 
= Setup =
 
= Setup =
 +
 +
As the TI's OMXIL is hardware accelerated by DSP, you need to have the DSP properly set up following the [[BeagleBoard/DSP_Howto|DSP howto]].
  
 
== OpenMAX IL ==
 
== OpenMAX IL ==
  
The easiest way to use the DSP capabilities is through the [http://www.khronos.org/openmax/ OpenMAX IL] API, but in order to compile TI's implementation a special DSP library is required.
+
The easiest way to use the DSP capabilities is through the OpenMAX IL API, but in order to compile TI's implementation a special DSP library is required.
  
 
=== libdspbridge ===
 
=== libdspbridge ===
  
  git clone git://github.com/felipec/libdspbridge.git
+
''libdspbridge'' is a library which wraps up the ioctl calls to the dspbridge kernel driver. Originally it is in the [http://dev.omapzoom.org/?p=tidspbridge/userspace-dspbridge.git;a=summary userspace-dspbridge repository]. But it is bloated and its build process is over-complicated. That is why we have started a slimmed version of it.
  cd libdspbridge
+
 
  make DESTDIR='''rootfs''' install
+
  git clone git://gitorious.org/vjaquez-beagleboard/libbridge.git
 +
  cd libbridge
 +
git co -b mybranch 23.3.3
 +
  make DESTDIR=/media/rootfs install
  
 
=== libomxil-ti ===
 
=== libomxil-ti ===
  
  git clone git://github.com/felipec/libomxil-ti.git
+
The original distribution of the TI's OpenMAX IL is in its [https://gforge.ti.com/gf/project/openmax/frs/ gforge site]. Nevertheless, its build process is overcomplicated. For that reason we started a repository which simplifies the build machinery, and also we are targeting a general code cleanup.
  cd libomxil-ti
+
 
  make BRIDGE_CFLAGS=-I../'''libdspbridge'''/inc BRIDGE_LIBS=-L../'''libdspbridge'''/lib DESTDIR='''rootfs''' install
+
  git clone git://gitorious.org/vjaquez-beagleboard/ti-omxil.git
 +
  cd ti-omxil
 +
git co -b my-branch v3.28-2
 +
  make DBAPI_CFLAGS=-I/media/rootfs/usr/include/libbridge \
 +
      DBAPI_LIBS="-L/media/rootfs/usr/lib -lbridge" DESTDIR=/media/rootfs install
  
 
== gst-openmax ==
 
== gst-openmax ==
  
You would need to compile gst-openmax inside scratchbox:
+
The official gst-openmax repository is git://anongit.freedesktop.org/gstreamer/gst-openmax
 +
 
 +
Nevertheless, for the TI's OpenMAX IL implementation some hacks are still required. And because of that, a unofficial repository is set up, which is the one we use in this document.
  
  git clone git://github.com/felipec/gst-openmax.git
+
  git clone git://gitorious.org/vjaquez-beagleboard/gst-openmax.git
 
  cd gst-openmax
 
  cd gst-openmax
  ./autogen.sh --noconfigure
+
  git checkout -b omap origin/omap
./configure --prefix=/usr
+
/autogen.sh --build=i686-linux --host=arm-linux --target=arm-linux
  make DESTDIR='''rootfs''' install
+
  make DESTDIR=/media/rootfs install
  
 
= Related stuff =
 
= Related stuff =
Line 39: Line 55:
 
  git clone git://github.com/felipec/gst-omapfb.git
 
  git clone git://github.com/felipec/gst-omapfb.git
 
  cd gst-omapfb
 
  cd gst-omapfb
  make DESTDIR='''rootfs''' install
+
  make DESTDIR=/media/rootfs install
  
 
= Running =
 
= Running =
Line 46: Line 62:
  
 
  gst-launch-0.10 filesrc location="foobar.avi" ! avidemux ! omx_mpeg4dec ! omapfbsink
 
  gst-launch-0.10 filesrc location="foobar.avi" ! avidemux ! omx_mpeg4dec ! omapfbsink
 +
 +
= See also =
 +
 +
* [[BeagleBoard/dsp-tools]]
 +
* [[BeagleBoard/gst-dsp]]

Latest revision as of 11:48, 13 August 2010


This article explains how to use TI's OpenMAX-IL with GStreamer (e.g. on BeagleBoard).

OpenMAX IL is a standardized API to communicate with multimedia codecs (implemented either in hardware or software).

GstOpenMAX is a GStreamer plug-in that allows communication with OpenMAX IL components.

Setup

As the TI's OMXIL is hardware accelerated by DSP, you need to have the DSP properly set up following the DSP howto.

OpenMAX IL

The easiest way to use the DSP capabilities is through the OpenMAX IL API, but in order to compile TI's implementation a special DSP library is required.

libdspbridge

libdspbridge is a library which wraps up the ioctl calls to the dspbridge kernel driver. Originally it is in the userspace-dspbridge repository. But it is bloated and its build process is over-complicated. That is why we have started a slimmed version of it.

git clone git://gitorious.org/vjaquez-beagleboard/libbridge.git
cd libbridge
git co -b mybranch 23.3.3
make DESTDIR=/media/rootfs install

libomxil-ti

The original distribution of the TI's OpenMAX IL is in its gforge site. Nevertheless, its build process is overcomplicated. For that reason we started a repository which simplifies the build machinery, and also we are targeting a general code cleanup.

git clone git://gitorious.org/vjaquez-beagleboard/ti-omxil.git
cd ti-omxil
git co -b my-branch v3.28-2
make DBAPI_CFLAGS=-I/media/rootfs/usr/include/libbridge \
     DBAPI_LIBS="-L/media/rootfs/usr/lib -lbridge" DESTDIR=/media/rootfs install

gst-openmax

The official gst-openmax repository is git://anongit.freedesktop.org/gstreamer/gst-openmax

Nevertheless, for the TI's OpenMAX IL implementation some hacks are still required. And because of that, a unofficial repository is set up, which is the one we use in this document.

git clone git://gitorious.org/vjaquez-beagleboard/gst-openmax.git
cd gst-openmax
git checkout -b omap origin/omap
/autogen.sh --build=i686-linux --host=arm-linux --target=arm-linux
make DESTDIR=/media/rootfs install

Related stuff

In order to get the omapfb usable for video playback you need this kernel argument:

video=omapfb:vram:2M,vram:4M

And the GStreamer element:

git clone git://github.com/felipec/gst-omapfb.git
cd gst-omapfb
make DESTDIR=/media/rootfs install

Running

You should be able to use the gst-openmax elements now:

gst-launch-0.10 filesrc location="foobar.avi" ! avidemux ! omx_mpeg4dec ! omapfbsink

See also