gstreamer/gst/rawparse
Sebastian Dröge 252d4044bf gst/rawparse/gstrawparse.c: Handle framesizes > 4096 with multiple frames per buffer correctly in pull mode and handl...
Original commit message from CVS:
* gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
(gst_raw_parse_loop):
Handle framesizes > 4096 with multiple frames per buffer correctly
in pull mode and handle short reads better.
Also put offset and offset_end on outgoing buffers.
2008-01-19 16:13:31 +00:00
..
gstaudioparse.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
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: Handle framesizes > 4096 with multiple frames per buffer correctly in pull mode and handl... 2008-01-19 16:13:31 +00:00
gstrawparse.h gst/rawparse/gstrawparse.*: Implement pull mode. 2008-01-18 16:56:19 +00:00
gstvideoparse.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
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 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
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