gstreamer/gst/rawparse
Jan Schmidt 2014b7f498 Make RGB masks unsigned in rawvideoparse
Allow the full range of 32 bit masks for RGBA/RGB data by making sure
the mask properties are unsigned.
2009-01-23 14:33:51 +00:00
..
gstaudioparse.c Do not use short_description in section docs for elements. We extract them from element details and there will be war... 2008-06-12 14:49:18 +00:00
gstaudioparse.h 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
gstrawparse.c gst/rawparse/gstrawparse.c: Add simple reverse playback. 2008-06-09 17:57:08 +00:00
gstrawparse.h gst/rawparse/gstrawparse.*: Fix seeking, timestamps, duration and some more. Fixes #536309. 2008-06-09 12:05:00 +00:00
gstvideoparse.c Make RGB masks unsigned in rawvideoparse 2009-01-23 14:33:51 +00:00
gstvideoparse.h 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
Makefile.am Don't install static libs for plugins. Fixes #550851 for -bad. 2008-11-04 12:42:30 +00:00
plugin.c 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
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