docs/plugins/gst-plugins-bad-plugins.*: Remove equalizer plugin docs
authorJan Schmidt <thaytan@mad.scientist.com>
Fri, 8 Feb 2008 02:48:54 +0000 (02:48 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Fri, 8 Feb 2008 02:48:54 +0000 (02:48 +0000)
Original commit message from CVS:
* docs/plugins/gst-plugins-bad-plugins.args:
* docs/plugins/gst-plugins-bad-plugins.hierarchy:
* docs/plugins/gst-plugins-bad-plugins.interfaces:
Remove equalizer plugin docs
* tests/check/Makefile.am:
Add GST_OPTION_CFLAGS, to get -Werror -Wall into the tests as for
other modules.
* tests/check/elements/multifile.c:
* tests/check/elements/rganalysis.c:
* tests/check/elements/rglimiter.c:
Fix compiler warnings from -Wall -Werror

tests/check/elements/multifile.c
tests/check/elements/rganalysis.c
tests/check/elements/rglimiter.c

index 4b5a28f9c53013322039acc7aa7550f6d676c143..26ba0af1df8af0a78d748f168c9781d08621ee2b 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
+#include <glib/gstdio.h>
 #include <gst/check/gstcheck.h>
 
 static void
index c5168fd239e2fb126287ec059dcf1b3efc022352..96ea6dad4680f54119b9008e8a5b2a0a229e408f 100644 (file)
@@ -94,15 +94,15 @@ struct rate_test
 };
 
 static const struct rate_test supported_rates[] = {
-  8000, -0.91,
-  11025, -2.80,
-  12000, -3.13,
-  16000, -4.26,
-  22050, -5.64,
-  24000, -5.87,
-  32000, -6.03,
-  44100, -6.20,
-  48000, -6.14
+  {8000, -0.91},
+  {11025, -2.80},
+  {12000, -3.13},
+  {16000, -4.26},
+  {22050, -5.64},
+  {24000, -5.87},
+  {32000, -6.03},
+  {44100, -6.20},
+  {48000, -6.14}
 };
 
 /* Lookup the correct gain adjustment result in above array. */
@@ -1057,7 +1057,6 @@ GST_START_TEST (test_peak_track_album)
 {
   GstElement *element = setup_rganalysis ();
   GstTagList *tag_list;
-  guint num;
 
   set_playing_state (element);
 
@@ -1091,7 +1090,6 @@ GST_START_TEST (test_peak_album_abort_to_track)
 {
   GstElement *element = setup_rganalysis ();
   GstTagList *tag_list;
-  guint num;
 
   g_object_set (element, "num-tracks", 2, NULL);
   set_playing_state (element);
index 2b7cc7413ecabcf0ad3babc1d9436b4dc4246ba2..33b478d01ee4030c0aa80d73fb58923ea69e5cec 100644 (file)
@@ -53,7 +53,6 @@ GstElement *
 setup_rglimiter ()
 {
   GstElement *element;
-  GstBus *bus;
 
   GST_DEBUG ("setup_rglimiter");
   element = gst_check_setup_element ("rglimiter");