diff --git a/common b/common index 3a9d355b65..7d9e2e10b6 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 3a9d355b657cf710011aa1eaadd64f6723527e14 +Subproject commit 7d9e2e10b66efa4ce40e896212108543831aa0e9 diff --git a/gst-libs/gst/video/video.c b/gst-libs/gst/video/video.c index 32135d704b..67214b8bc4 100644 --- a/gst-libs/gst/video/video.c +++ b/gst-libs/gst/video/video.c @@ -89,15 +89,3 @@ gst_video_get_size (GstPad * pad, gint * width, gint * height) return TRUE; } - -static gboolean -plugin_init (GstPlugin * plugin) -{ - return TRUE; -} - -GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, - GST_VERSION_MINOR, - "gstvideo", - "Convenience routines for video plugins", - plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 5e704e6a79..69926d0ae3 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2005 Stefan Kost * - * gstaudiotestsrc.c: + * gstaudiotestsrc.c: * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -23,19 +23,21 @@ * * * AudioTestSrc can be used to generate basic audio signals. It support several - * different waveforms, variable pitch and volume. + * different waveforms and allows you to set the base frequency and volume. * Example launch line * * * gst-launch audiotestsrc ! audioconvert ! alsasink * - * This pipeline produces a sine with default pitch and volume. + * This pipeline produces a sine with default frequency (mid-C) and volume. * * * * gst-launch audiotestsrc wave=2 freq=200 ! audioconvert ! tee name=t ! alsasink t. ! libvisual_lv_scope ! ffmpegcolorspace ! xvimagesink * - * In this example a saw-wave has been choosen. The wave is shown using a scope. + * In this example a saw wave is generated. The wave is shown using a + * scope visualizer from libvisual, allowing you to visually verify that + * the saw wave is correct. * * */ @@ -680,4 +682,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, "audiotestsrc", "Creates audio test signals of given frequency and volume", - plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) + plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);