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/openal | |
parent | ea54d2aaabf8b9ac398884bc281582003a5278e0 (diff) |
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/openal')
-rw-r--r-- | ext/openal/gstopenalsink.c | 6 | ||||
-rw-r--r-- | ext/openal/gstopenalsrc.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ext/openal/gstopenalsink.c b/ext/openal/gstopenalsink.c index 1fa1c6574..74f58e44d 100644 --- a/ext/openal/gstopenalsink.c +++ b/ext/openal/gstopenalsink.c @@ -34,13 +34,13 @@ * <refsect2> * <title>Example pipelines</title> * |[ - * gst-launch audiotestsrc ! audioconvert ! volume volume=0.5 ! openalsink + * gst-launch-1.0 audiotestsrc ! audioconvert ! volume volume=0.5 ! openalsink * ]| will play a sine wave (continuous beep sound) through OpenAL. * |[ - * gst-launch filesrc location=stream.wav ! decodebin ! audioconvert ! openalsink + * gst-launch-1.0 filesrc location=stream.wav ! decodebin ! audioconvert ! openalsink * ]| will play a wav audio file through OpenAL. * |[ - * gst-launch openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink + * gst-launch-1.0 openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink * ]| will capture and play audio through OpenAL. * </refsect2> */ diff --git a/ext/openal/gstopenalsrc.c b/ext/openal/gstopenalsrc.c index ef4847599..d06b3c440 100644 --- a/ext/openal/gstopenalsrc.c +++ b/ext/openal/gstopenalsrc.c @@ -57,10 +57,10 @@ * <refsect2> * <title>Example pipelines</title> * |[ - * gst-launch -v openalsrc ! audioconvert ! wavenc ! filesink location=stream.wav + * gst-launch-1.0 -v openalsrc ! audioconvert ! wavenc ! filesink location=stream.wav * ]| * will capture sound through OpenAL and encode it to a wav file. * |[ - * gst-launch openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink + * gst-launch-1.0 openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink * ]| will capture and play audio through OpenAL. * </refsect2> */ |