diff options
Diffstat (limited to 'ext/vpx')
-rw-r--r-- | ext/vpx/gstvp8dec.c | 2 | ||||
-rw-r--r-- | ext/vpx/gstvp8enc.c | 2 | ||||
-rw-r--r-- | ext/vpx/gstvp9dec.c | 2 | ||||
-rw-r--r-- | ext/vpx/gstvp9enc.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/vpx/gstvp8dec.c b/ext/vpx/gstvp8dec.c index 7bc660a90..4b05f9969 100644 --- a/ext/vpx/gstvp8dec.c +++ b/ext/vpx/gstvp8dec.c @@ -32,7 +32,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v filesrc location=videotestsrc.webm ! matroskademux ! vp8dec ! xvimagesink + * gst-launch-1.0 -v filesrc location=videotestsrc.webm ! matroskademux ! vp8dec ! videoconvert ! videoscale ! autovideosink * ]| This example pipeline will decode a WebM stream and decodes the VP8 video. * </refsect2> */ diff --git a/ext/vpx/gstvp8enc.c b/ext/vpx/gstvp8enc.c index a3dd6f0b7..ee1cbb9f1 100644 --- a/ext/vpx/gstvp8enc.c +++ b/ext/vpx/gstvp8enc.c @@ -40,7 +40,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v videotestsrc num-buffers=1000 ! vp8enc ! webmmux ! filesink location=videotestsrc.webm + * gst-launch-1.0 -v videotestsrc num-buffers=1000 ! vp8enc ! webmmux ! filesink location=videotestsrc.webm * ]| This example pipeline will encode a test video source to VP8 muxed in an * WebM container. * </refsect2> diff --git a/ext/vpx/gstvp9dec.c b/ext/vpx/gstvp9dec.c index db65c9f0d..a11c84810 100644 --- a/ext/vpx/gstvp9dec.c +++ b/ext/vpx/gstvp9dec.c @@ -32,7 +32,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v filesrc location=videotestsrc.webm ! matroskademux ! vp9dec ! xvimagesink + * gst-launch-1.0 -v filesrc location=videotestsrc.webm ! matroskademux ! vp9dec ! videoconvert ! videoscale ! autovideosink * ]| This example pipeline will decode a WebM stream and decodes the VP9 video. * </refsect2> */ diff --git a/ext/vpx/gstvp9enc.c b/ext/vpx/gstvp9enc.c index e64f5af5e..532b59ebd 100644 --- a/ext/vpx/gstvp9enc.c +++ b/ext/vpx/gstvp9enc.c @@ -40,7 +40,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -v videotestsrc num-buffers=1000 ! vp9enc ! webmmux ! filesink location=videotestsrc.webm + * gst-launch-1.0 -v videotestsrc num-buffers=1000 ! vp9enc ! webmmux ! filesink location=videotestsrc.webm * ]| This example pipeline will encode a test video source to VP9 muxed in an * WebM container. * </refsect2> |