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
gstaudioparse.h
gstrawparse.c
gstrawparse.h
gstvideoparse.c Make RGB masks unsigned in rawvideoparse 2009-01-23 14:33:51 +00:00
gstvideoparse.h
Makefile.am Don't install static libs for plugins. Fixes #550851 for -bad. 2008-11-04 12:42:30 +00: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