diff options
author | Benjamin Otte <otte@gnome.org> | 2002-04-06 14:51:03 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2002-04-06 14:51:03 +0000 |
commit | 31375b100c3037d0003282b944c918799ec26113 (patch) | |
tree | 11ede016c5d4efb554352a91f4a97948eefa892c /gst | |
parent | ffd4b556cc0e94ccdc92b6fa47a0d1b93ab6a26b (diff) |
fixed rest of warning for gcc 3 in /gst.
Original commit message from CVS:
fixed rest of warning for gcc 3 in /gst.
fixed some Makefiles: s/-m486/-mcpu=i486/
disabled mpegaudioparse plugin. What good is this rotten code for anyway?
Diffstat (limited to 'gst')
-rw-r--r-- | gst/spectrum/gstspectrum.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c index f025c28a..f8461a5c 100644 --- a/gst/spectrum/gstspectrum.c +++ b/gst/spectrum/gstspectrum.c @@ -30,15 +30,6 @@ static GstElementDetails gst_spectrum_details = { "(C) 1999", }; - -static GstTypeDefinition spectrumdefinition = { - "spectrum_spectrum_raw", - "spectrum/raw", - NULL, - NULL, -}; - - /* Spectrum signals and args */ enum { /* FILL ME */ @@ -141,7 +132,7 @@ gst_spectrum_chain (GstPad *pad, GstBuffer *buf) gint spec_base, spec_len; gint16 *re, *im, *loud; gint16 *samples; - gint samplecount,step,pos,i; + gint step,pos,i; guchar *spect; GstBuffer *newbuf; |