gstreamer/gst/rawparse
2012-04-05 18:02:56 +02:00
..
gstaudioparse.c rawparse: port to 0.11 2012-03-20 20:21:37 +01:00
gstaudioparse.h rawparse: port to 0.11 2012-03-20 20:21:37 +01:00
gstrawparse.c rawparse: fix compile warning 2012-04-05 09:08:02 +02:00
gstrawparse.h rawparse: port to 0.11 2012-03-20 20:21:37 +01:00
gstvideoparse.c rawparse: fix bayer caps 2012-03-21 09:41:08 +01:00
gstvideoparse.h videoparse: Use libgstvideo for everything instead of our own calculations 2009-08-08 09:08:16 +02:00
Makefile.am gst: Update versioning 2012-04-04 14:44:34 +02:00
plugin.c gst: Update for GST_PLUGIN_DEFINE() API changes 2012-04-05 18:02:56 +02:00
README Add new plugin rawparse that contains a base class for raw data parsers and the two elements audioparse and videopars... 2007-12-23 06:22:32 +00:00

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