sys/v4l2/gstv4l2src.c: Add another example pipeline.

Original commit message from CVS:
* sys/v4l2/gstv4l2src.c:
Add another example pipeline.
This commit is contained in:
Stefan Kost 2007-07-18 11:55:13 +00:00
parent e547bc5595
commit c1254d31e9
2 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-07-18 Stefan Kost <ensonic@users.sf.net>
* sys/v4l2/gstv4l2src.c:
Add another example pipeline.
2007-07-18 Stefan Kost <ensonic@users.sf.net> 2007-07-18 Stefan Kost <ensonic@users.sf.net>
Patch by: Alexander Eichner <alexeichi@yahoo.de> Patch by: Alexander Eichner <alexeichi@yahoo.de>
@ -14,7 +19,6 @@
* sys/v4l2/v4l2src_calls.h: * sys/v4l2/v4l2src_calls.h:
Improve fallback format negotionation. Fixes #451388 Improve fallback format negotionation. Fixes #451388
2007-07-18 Stefan Kost <ensonic@users.sf.net> 2007-07-18 Stefan Kost <ensonic@users.sf.net>
* tests/check/elements/videocrop.c: (GST_START_TEST): * tests/check/elements/videocrop.c: (GST_START_TEST):

View file

@ -26,7 +26,7 @@
* *
* <refsect2> * <refsect2>
* v4l2src can be used to capture video from v4l2 devices, like webcams and tv cards. * v4l2src can be used to capture video from v4l2 devices, like webcams and tv cards.
* <title>Example launch line</title> * <title>Example launch lines</title>
* <para> * <para>
* <programlisting> * <programlisting>
* gst-launch v4l2src ! xvimagesink * gst-launch v4l2src ! xvimagesink
@ -34,6 +34,13 @@
* This pipeline shows the video captured from /dev/video0 tv card and for * This pipeline shows the video captured from /dev/video0 tv card and for
* webcams. * webcams.
* </para> * </para>
* <para>
* <programlisting>
* gst-launch-0.10 v4l2src ! jpegdec ! xvimagesink
* </programlisting>
* This pipeline shows the video captured from a webcam that delivers jpeg
* images.
* </para>
* </refsect2> * </refsect2>
*/ */