mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
plugins-bad: Fix example pipelines
rename gst-launch --> gst-launch-1.0 replace old elements with new elements(ffmpegcolorspace -> videoconvert, ffenc_** -> avenc_**) fix caps in examples https://bugzilla.gnome.org/show_bug.cgi?id=759432
This commit is contained in:
parent
ac6e8e93a2
commit
0061913f08
9 changed files with 12 additions and 12 deletions
|
@ -27,7 +27,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch -v videotestsrc ! glupload ! glbumper location=normalmap.bmp ! glimagesink
|
||||
* gst-launch-1.0 -v videotestsrc ! glupload ! glbumper location=normalmap.bmp ! glimagesink
|
||||
* ]| A pipeline to test normal mapping.
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glupload ! gldeinterlace ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glupload ! gldeinterlace ! glimagesink
|
||||
* ]|
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glupload ! gldifferencemate location=backgroundimagefile ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glupload ! gldifferencemate location=backgroundimagefile ! glimagesink
|
||||
* ]|
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glupload ! gleffects effect=5 ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glupload ! gleffects effect=5 ! glimagesink
|
||||
* ]|
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glupload ! glfilterreflectedscreen ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glupload ! glfilterreflectedscreen ! glimagesink
|
||||
* ]|
|
||||
* </refsect2>
|
||||
*/
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glupload ! glshader location=myshader.fs ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glupload ! glshader location=myshader.fs ! glimagesink
|
||||
* ]|
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch videotestsrc ! glstereosplit name=s ! queue ! glimagesink s. ! queue ! glimagesink
|
||||
* gst-launch-1.0 videotestsrc ! glstereosplit name=s ! queue ! glimagesink s. ! queue ! glimagesink
|
||||
* ]|
|
||||
* FBO (Frame Buffer Object) and GLSL (OpenGL Shading Language) are required.
|
||||
* </refsect2>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch -v gltestsrc pattern=smpte ! glimagesink
|
||||
* gst-launch-1.0 -v gltestsrc pattern=smpte ! glimagesink
|
||||
* </programlisting>
|
||||
* Shows original SMPTE color bars in a window.
|
||||
* </para>
|
||||
|
|
|
@ -26,16 +26,16 @@
|
|||
* <refsect2>
|
||||
* <title>Examples</title>
|
||||
* |[
|
||||
* gst-launch gltestsrc ! gltransformation rotation-z=45 ! glimagesink
|
||||
* gst-launch-1.0 gltestsrc ! gltransformation rotation-z=45 ! glimagesink
|
||||
* ]| A pipeline to rotate by 45 degrees
|
||||
* |[
|
||||
* gst-launch gltestsrc ! gltransformation translation-x=0.5 ! glimagesink
|
||||
* gst-launch-1.0 gltestsrc ! gltransformation translation-x=0.5 ! glimagesink
|
||||
* ]| Translate the video by 0.5
|
||||
* |[
|
||||
* gst-launch gltestsrc ! gltransformation scale-y=0.5 scale-x=0.5 ! glimagesink
|
||||
* gst-launch-1.0 gltestsrc ! gltransformation scale-y=0.5 scale-x=0.5 ! glimagesink
|
||||
* ]| Resize the video by 0.5
|
||||
* |[
|
||||
* gst-launch gltestsrc ! gltransformation rotation-x=-45 ortho=True ! glimagesink
|
||||
* gst-launch-1.0 gltestsrc ! gltransformation rotation-x=-45 ortho=True ! glimagesink
|
||||
* ]| Rotate the video around the X-Axis by -45° with an orthographic projection
|
||||
* </refsect2>
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue