summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-09-14 13:30:37 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2012-09-14 13:30:37 +0200
commit829c80ce6c8c09014d77bfb59cef41aa75a5c797 (patch)
tree7db7db779bf17d1231a33dec7bc64cb528eebd81 /gst
parent58ce9de7a51b848f233f874672b4c39188256b33 (diff)
fix more caps
Diffstat (limited to 'gst')
-rw-r--r--gst/multipart/multipartmux.c2
-rw-r--r--gst/rtp/README2
-rw-r--r--gst/videocrop/gstaspectratiocrop.c2
-rw-r--r--gst/y4m/gsty4mencode.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/gst/multipart/multipartmux.c b/gst/multipart/multipartmux.c
index 8d42ed8e4..ef6d63fb4 100644
--- a/gst/multipart/multipartmux.c
+++ b/gst/multipart/multipartmux.c
@@ -27,7 +27,7 @@
* <refsect2>
* <title>Sample pipelines</title>
* |[
- * gst-launch-1.0 videotestsrc ! video/x-raw-yuv, framerate='(fraction)'5/1 ! jpegenc ! multipartmux ! filesink location=/tmp/test.multipart
+ * gst-launch-1.0 videotestsrc ! video/x-raw, framerate='(fraction)'5/1 ! jpegenc ! multipartmux ! filesink location=/tmp/test.multipart
* ]| a pipeline to mux 5 JPEG frames per second into a multipart stream
* stored to a file.
* </refsect2>
diff --git a/gst/rtp/README b/gst/rtp/README
index bb09b00d0..97afe6b28 100644
--- a/gst/rtp/README
+++ b/gst/rtp/README
@@ -274,7 +274,7 @@ Some gst-launch-1.0 lines:
gst-launch-0.10 -v videotestsrc ! ffenc_h263p ! rtph263ppay ! udpsink
Setting pipeline to PAUSED ...
- /pipeline0/videotestsrc0.src: caps = video/x-raw-yuv, format=(fourcc)I420,
+ /pipeline0/videotestsrc0.src: caps = video/x-raw, format=(string)I420,
width=(int)320, height=(int)240, framerate=(fraction)30/1
Pipeline is PREROLLING ...
....
diff --git a/gst/videocrop/gstaspectratiocrop.c b/gst/videocrop/gstaspectratiocrop.c
index 95579e78c..1e0f3d232 100644
--- a/gst/videocrop/gstaspectratiocrop.c
+++ b/gst/videocrop/gstaspectratiocrop.c
@@ -29,7 +29,7 @@
* <refsect2>
* <title>Example launch line</title>
* |[
- * gst-launch-1.0 -v videotestsrc ! video/x-raw-rgb,height=640,width=480 ! aspectratiocrop aspect-ratio=16/9 ! ximagesink
+ * gst-launch-1.0 -v videotestsrc ! video/x-raw,height=640,width=480 ! aspectratiocrop aspect-ratio=16/9 ! ximagesink
* ]| This pipeline generates a videostream in 4/3 and crops it to 16/9.
* </refsect2>
*/
diff --git a/gst/y4m/gsty4mencode.c b/gst/y4m/gsty4mencode.c
index 310ee0828..8d0641191 100644
--- a/gst/y4m/gsty4mencode.c
+++ b/gst/y4m/gsty4mencode.c
@@ -29,7 +29,7 @@
* (write everything in one line, without the backslash characters)
* <programlisting>
* gst-launch-0.10 videotestsrc num-buffers=250 \
- * ! 'video/x-raw-yuv,format=(fourcc)I420,width=320,height=240,framerate=(fraction)25/1' \
+ * ! 'video/x-raw,format=(string)I420,width=320,height=240,framerate=(fraction)25/1' \
* ! y4menc ! filesink location=test.yuv
* </programlisting>
* </para>