diff options
author | Vineeth TM <vineeth.tm@samsung.com> | 2015-12-14 11:09:46 +0900 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-12-15 10:30:49 +0000 |
commit | 7c42ba97d7ca394c0a2db097a65d3a895f6b5605 (patch) | |
tree | 73f5fe91d76f3c53888bc0ba0ff474ca9edf92c2 /ext/daala | |
parent | ea54d2aaabf8b9ac398884bc281582003a5278e0 (diff) | |
download | gstreamer-plugins-bad-7c42ba97d7ca394c0a2db097a65d3a895f6b5605.tar.gz |
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
Diffstat (limited to 'ext/daala')
-rw-r--r-- | ext/daala/gstdaaladec.c | 2 | ||||
-rw-r--r-- | ext/daala/gstdaalaenc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/daala/gstdaaladec.c b/ext/daala/gstdaaladec.c index 0cf4f63da..085685c6d 100644 --- a/ext/daala/gstdaaladec.c +++ b/ext/daala/gstdaaladec.c @@ -33,7 +33,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v filesrc location=videotestsrc.ogg ! oggdemux ! daaladec ! xvimagesink + * gst-launch-1.0 -v filesrc location=videotestsrc.ogg ! oggdemux ! daaladec ! xvimagesink * ]| This example pipeline will decode an ogg stream and decodes the daala video. Refer to * the daalaenc example to create the ogg file. * </refsect2> diff --git a/ext/daala/gstdaalaenc.c b/ext/daala/gstdaalaenc.c index 77ab0b26d..705c7e697 100644 --- a/ext/daala/gstdaalaenc.c +++ b/ext/daala/gstdaalaenc.c @@ -33,7 +33,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v videotestsrc num-buffers=1000 ! daalaenc ! oggmux ! filesink location=videotestsrc.ogg + * gst-launch-1.0 -v videotestsrc num-buffers=1000 ! daalaenc ! oggmux ! filesink location=videotestsrc.ogg * ]| This example pipeline will encode a test video source to daala muxed in an * ogg container. Refer to the daaladec documentation to decode the create * stream. |