summaryrefslogtreecommitdiff
path: root/gst/interlace
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-09-14 16:29:23 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2012-09-14 16:29:23 +0200
commit0d8f8a5134c16e6bb4754a2d712a5bcad401e44d (patch)
tree7de5b47e93192c07886d0069b8eac52893ba65f5 /gst/interlace
parent744bd3d3f249aa9ec548bbfe2371acf6bd098094 (diff)
rename some caps and elements in examples
Diffstat (limited to 'gst/interlace')
-rw-r--r--gst/interlace/gstinterlace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/interlace/gstinterlace.c b/gst/interlace/gstinterlace.c
index 2dfb6235b..86e5a9d94 100644
--- a/gst/interlace/gstinterlace.c
+++ b/gst/interlace/gstinterlace.c
@@ -34,15 +34,15 @@
* two interlaced fields as one progressive frame.
* |[
* gst-launch -v filesrc location=/path/to/file ! decodebin ! videorate !
- * videoscale ! video/x-raw-yuv,format=\(fourcc\)I420,width=720,height=480,
+ * videoscale ! video/x-raw,format=\(string\)I420,width=720,height=480,
* framerate=60000/1001,pixel-aspect-ratio=11/10 !
* interlace top-field-first=false ! ...
* ]|
* This pipeline converts a progressive video stream into an interlaced
* stream suitable for standard definition NTSC.
* |[
- * gst-launch -v videotestsrc pattern=ball ! video/x-raw-yuv,
- * format=\(fourcc\)I420,width=720,height=480,framerate=24000/1001,
+ * gst-launch -v videotestsrc pattern=ball ! video/x-raw,
+ * format=\(string\)I420,width=720,height=480,framerate=24000/1001,
* pixel-aspect-ratio=11/10 ! interlace pattern=2:3 !
* ...
* ]|