gstreamer/gst/rawparse
Nirbheek Chauhan 42af2d66d8 Add support for Meson as alternative/parallel build system
https://github.com/mesonbuild/meson

With contributions from:

Tim-Philipp Müller <tim@centricular.com>
Matej Knopp <matej.knopp@gmail.com>
Jussi Pakkanen <jpakkane@gmail.com> (original port)

Highlights of the features provided are:
* Faster builds on Linux (~40-50% faster)
* The ability to build with MSVC on Windows
* Generate Visual Studio project files
* Generate XCode project files
* Much faster builds on Windows (on-par with Linux)
* Seriously fast configure and building on embedded

... and many more. For more details see:

http://blog.nirbheek.in/2016/05/gstreamer-and-meson-new-hope.html
http://blog.nirbheek.in/2016/07/building-and-developing-gstreamer-using.html

Building with Meson should work on both Linux and Windows, but may
need a few more tweaks on other operating systems.
2016-08-20 11:35:54 +01:00
..
gstaudioparse.c rawparse: Remove old parser code and wrap new parsers in old elements 2016-07-26 13:44:39 +03:00
gstaudioparse.h rawparse: Remove old parser code and wrap new parsers in old elements 2016-07-26 13:44:39 +03:00
gstrawaudioparse.c rawaudioparse: Use G_GINT64_MODIFIER for portability 2016-07-29 10:49:26 +03:00
gstrawaudioparse.h rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
gstrawbaseparse.c rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
gstrawbaseparse.h rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
gstrawvideoparse.c rawvideoparse: fix typo in comment 2016-08-19 12:25:48 +01:00
gstrawvideoparse.h rawvideoparse: Compute plane offsets & strides if no custom ones are set 2016-08-18 09:21:16 +03:00
gstunalignedaudioparse.c unalignedaudioparse: Fix element factory name of inner parser 2016-07-29 10:07:23 +03:00
gstunalignedaudioparse.h rawparse: Add unaligned raw audio parsing to audioparse and add new element 2016-05-15 13:19:48 +03:00
gstunalignedvideoparse.c rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
gstunalignedvideoparse.h rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
gstvideoparse.c rawparse: Remove old parser code and wrap new parsers in old elements 2016-07-26 13:44:39 +03:00
gstvideoparse.h rawparse: Remove old parser code and wrap new parsers in old elements 2016-07-26 13:44:39 +03:00
Makefile.am rawparse: Remove old parser code and wrap new parsers in old elements 2016-07-26 13:44:39 +03:00
meson.build Add support for Meson as alternative/parallel build system 2016-08-20 11:35:54 +01:00
plugin.c rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00
README plugins-bad: Fix example pipelines 2015-12-15 10:30:49 +00:00
unalignedaudio.h rawparse: Add unaligned raw audio parsing to audioparse and add new element 2016-05-15 13:19:48 +03:00
unalignedvideo.h rawparse: Add new raw audio and video parser elements 2016-07-26 13:44:39 +03:00

videoparse
==========

The videoparse element is used to parse a file containing raw image
data.


Creating example data
=====================

gst-launch-1.0 videotestsrc num_buffers=300 ! \
  video/x-raw,format=\(string\)I420,width=320,height=240 ! \
  filesink location=raw


Reading example data
====================

gst-launch-1.0 filesrc location=raw ! \
  videoparse format=I420 width=320 height=240 framerate=30/1 ! \
  xvimagesink