gstreamer/gst/rawparse
Tim-Philipp Müller 32ba17cd0f Use gst_element_class_set_static_metadata()
where possible. Avoids some string copies. Also re-indent
some stuff. Also some indent fixes here and there.
2012-10-17 17:46:34 +01:00
..
gstaudioparse.c Use gst_element_class_set_static_metadata() 2012-10-17 17:46:34 +01:00
gstaudioparse.h audioparse: add a mode where the caps are taken from the sink pad, and thus audioparse 2012-10-09 23:00:14 -07:00
gstrawparse.c ext, gst: only activate in pull mode if upstream is seekable 2012-09-11 17:47:33 +02:00
gstrawparse.h rawparse: port to 0.11 2012-03-20 20:21:37 +01:00
gstvideoparse.c Use gst_element_class_set_static_metadata() 2012-10-17 17:46:34 +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 rename some caps and elements in examples 2012-09-14 16:29:23 +02: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,format=\(string\)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