summaryrefslogtreecommitdiffstats
path: root/gst/videoparse/README
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2007-12-13 04:43:58 +0000
committerDavid Schleef <ds@schleef.org>2007-12-13 04:43:58 +0000
commitd49970264602af7be39612f46bd3f9eca297a24b (patch)
tree0b1e684a93977c62fa5c849edb033355ec21cb04 /gst/videoparse/README
parent8dcd3dd27e3fb88d0aa6803163d68a5157171a2f (diff)
downloadgst-plugins-bad-d49970264602af7be39612f46bd3f9eca297a24b.tar.gz
gst-plugins-bad-d49970264602af7be39612f46bd3f9eca297a24b.tar.bz2
gst-plugins-bad-d49970264602af7be39612f46bd3f9eca297a24b.zip
gst/videoparse/: Add a bunch of features: handle format specification, handle queries and conversion. Works much lik...
Original commit message from CVS: * gst/videoparse/README: * gst/videoparse/gstvideoparse.c: Add a bunch of features: handle format specification, handle queries and conversion. Works much like a normal parser now.
Diffstat (limited to 'gst/videoparse/README')
-rw-r--r--gst/videoparse/README23
1 files changed, 23 insertions, 0 deletions
diff --git a/gst/videoparse/README b/gst/videoparse/README
new file mode 100644
index 00000000..0a698c90
--- /dev/null
+++ b/gst/videoparse/README
@@ -0,0 +1,23 @@
+
+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
+