diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-08-26 22:39:55 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-08-27 21:20:30 +0100 |
commit | 4bb52bbadfe7e3de57ab3908dbc0f4f1b964514f (patch) | |
tree | deb30ed338b5ec2e038ac8233f283e8c1c00683c /ext/gdk_pixbuf | |
parent | e4cb67fad898cd6d0c7516e48168e9632995872f (diff) | |
download | gstreamer-plugins-good-4bb52bbadfe7e3de57ab3908dbc0f4f1b964514f.tar.gz |
docs: gst-launch -> gst-launch-1.0 and ffmpegcolorspace -> videoconvert
Diffstat (limited to 'ext/gdk_pixbuf')
-rw-r--r-- | ext/gdk_pixbuf/gstgdkpixbufoverlay.c | 2 | ||||
-rw-r--r-- | ext/gdk_pixbuf/gstgdkpixbufsink.c | 2 | ||||
-rw-r--r-- | ext/gdk_pixbuf/pixbufscale.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/gdk_pixbuf/gstgdkpixbufoverlay.c b/ext/gdk_pixbuf/gstgdkpixbufoverlay.c index fbdb791c4..ea68e50f7 100644 --- a/ext/gdk_pixbuf/gstgdkpixbufoverlay.c +++ b/ext/gdk_pixbuf/gstgdkpixbufoverlay.c @@ -36,7 +36,7 @@ * <refsect2> * <title>Example launch line</title> * |[ - * gst-launch -v videotestsrc ! gdkpixbufoverlay location=image.png ! autovideosink + * gst-launch-1.0 -v videotestsrc ! gdkpixbufoverlay location=image.png ! autovideosink * ]| * Overlays the image in image.png onto the test video picture produced by * videotestsrc. diff --git a/ext/gdk_pixbuf/gstgdkpixbufsink.c b/ext/gdk_pixbuf/gstgdkpixbufsink.c index bde9e4afa..5cac8bc5c 100644 --- a/ext/gdk_pixbuf/gstgdkpixbufsink.c +++ b/ext/gdk_pixbuf/gstgdkpixbufsink.c @@ -86,7 +86,7 @@ * <refsect2> * <title>Example pipeline</title> * |[ - * gst-launch -m -v videotestsrc num-buffers=1 ! gdkpixbufsink + * gst-launch-1.0 -m -v videotestsrc num-buffers=1 ! gdkpixbufsink * ]| Process one single test image as pixbuf (note that the output you see will * be slightly misleading. The message structure does contain a valid pixbuf * object even if the structure string says '(NULL)'). diff --git a/ext/gdk_pixbuf/pixbufscale.c b/ext/gdk_pixbuf/pixbufscale.c index 95cf340a3..f2ab968d7 100644 --- a/ext/gdk_pixbuf/pixbufscale.c +++ b/ext/gdk_pixbuf/pixbufscale.c @@ -31,7 +31,7 @@ #define ROUND_UP_4(x) (((x)+3)&~3) #define ROUND_UP_8(x) (((x)+7)&~7) -/* These match the ones gstffmpegcolorspace uses (Tim) */ +/* These match the ones gstvideoconvert uses (Tim) */ #define GST_RGB24_ROWSTRIDE(width) (ROUND_UP_4 ((width)*3)) #define GST_RGB24_SIZE(width,height) ((height)*GST_RGB24_ROWSTRIDE(width)) |