mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-01 17:31:10 +00:00
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?
This commit is contained in:
parent
ffd4b556cc
commit
31375b100c
1 changed files with 1 additions and 10 deletions
|
@ -30,15 +30,6 @@ static GstElementDetails gst_spectrum_details = {
|
||||||
"(C) 1999",
|
"(C) 1999",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static GstTypeDefinition spectrumdefinition = {
|
|
||||||
"spectrum_spectrum_raw",
|
|
||||||
"spectrum/raw",
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/* Spectrum signals and args */
|
/* Spectrum signals and args */
|
||||||
enum {
|
enum {
|
||||||
/* FILL ME */
|
/* FILL ME */
|
||||||
|
@ -141,7 +132,7 @@ gst_spectrum_chain (GstPad *pad, GstBuffer *buf)
|
||||||
gint spec_base, spec_len;
|
gint spec_base, spec_len;
|
||||||
gint16 *re, *im, *loud;
|
gint16 *re, *im, *loud;
|
||||||
gint16 *samples;
|
gint16 *samples;
|
||||||
gint samplecount,step,pos,i;
|
gint step,pos,i;
|
||||||
guchar *spect;
|
guchar *spect;
|
||||||
GstBuffer *newbuf;
|
GstBuffer *newbuf;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue