gstreamer/gst/rawparse
Wim Taymans 1119f6ee41 Merge branch 'master' into 0.11
Conflicts:
	ext/chromaprint/gstchromaprint.c
	ext/mpeg2enc/Makefile.am
	ext/voaacenc/gstvoaacenc.c
	gst/dvbsuboverlay/gstdvbsuboverlay.c
	gst/mpegtsdemux/mpegtsbase.c
	gst/sdp/gstsdpdemux.c
	gst/videoparsers/gsth264parse.c
	sys/d3dvideosink/d3dvideosink.c
	tests/examples/camerabin/gst-camera-perf.c
	tests/examples/camerabin/gst-camerabin-test.c
	tests/examples/camerabin2/gst-camerabin2-test.c
	tests/examples/mxf/mxfdemux-structure.c
	tests/examples/scaletempo/demo-main.c
2012-02-10 16:46:50 +01:00
..
gstaudioparse.c audioparse: Allow implicit channel map for 1-/2-channel audio 2010-12-08 16:30:11 +01:00
gstaudioparse.h audioparse: Add support for setting the channel-positions 2010-10-07 10:34:48 +02:00
gstrawparse.c Merge branch 'master' into 0.11 2012-02-10 16:46:50 +01:00
gstrawparse.h Update for pad API changes 2011-11-01 00:45:25 +00:00
gstvideoparse.c videoparse: Only provide very fundamental caps in the pad template 2009-08-08 10:30:11 +02:00
gstvideoparse.h videoparse: Use libgstvideo for everything instead of our own calculations 2009-08-08 09:08:16 +02:00
Makefile.am android: make it ready for androgenizer 2011-04-11 07:27:11 +02: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