gstreamer/gst/rawparse
Thibault Saunier 17fd7ebcb4 android: make it ready for androgenizer
Remove the android/ top dir
Fixe the Makefile.am to be androgenized

To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files.
Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
2011-04-11 07:27:11 +02:00
..
gstaudioparse.c audioparse: Allow implicit channel map for 1-/2-channel audio 2010-12-08 16:30:11 +01:00
gstaudioparse.h audioparse: Add support for setting the channel-positions 2010-10-07 10:34:48 +02:00
gstrawparse.c rawparse: Don't use GST_FLOW_IS_FATAL() 2010-09-21 12:26:36 +02:00
gstrawparse.h
gstvideoparse.c
gstvideoparse.h
Makefile.am android: make it ready for androgenizer 2011-04-11 07:27:11 +02:00
plugin.c
README

videoparse
==========

The videoparse element is used to parse a file containing raw image
data.


Creating example data
=====================

gst-launch videotestsrc num_buffers=300 ! \
  video/x-raw-yuv,format=\(fourcc\)I420,width=320,height=240 ! \
  filesink location=raw


Reading example data
====================

gst-launch filesrc location=raw ! \
  videoparse format=I420 width=320 height=240 framerate=30/1 ! \
  xvimagesink