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
gstrawparse.c
gstrawparse.h
gstvideoparse.c
gstvideoparse.h
Makefile.am
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