mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
63e280df22
See https://bugzilla.gnome.org/show_bug.cgi?id=773666 This would ideally be solved in baseparse but that requires further thought at this point, and in the meantime it would be good to have rawbaseparse not assert on this but handle it gracefully instead. |
||
---|---|---|
.. | ||
gstaudioparse.c | ||
gstaudioparse.h | ||
gstrawaudioparse.c | ||
gstrawaudioparse.h | ||
gstrawbaseparse.c | ||
gstrawbaseparse.h | ||
gstrawvideoparse.c | ||
gstrawvideoparse.h | ||
gstunalignedaudioparse.c | ||
gstunalignedaudioparse.h | ||
gstunalignedvideoparse.c | ||
gstunalignedvideoparse.h | ||
gstvideoparse.c | ||
gstvideoparse.h | ||
Makefile.am | ||
meson.build | ||
plugin.c | ||
README | ||
unalignedaudio.h | ||
unalignedvideo.h |
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