g_object_class_install_property(gobject_class,ARG_ZERO_PAD_SECONDS,g_param_spec_double("zero-pad","Zero-padding","Length of the zero-padding to include on both sides of the FFT in seconds",0,G_MAXDOUBLE,DEFAULT_ZERO_PAD_SECONDS,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));
g_object_class_install_property(gobject_class,ARG_FFT_LENGTH,g_param_spec_double("fft-length","FFT length","Total length of the FFT convolution in seconds",0,G_MAXDOUBLE,DEFAULT_FFT_LENGTH_SECONDS,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));
g_object_class_install_property(gobject_class,ARG_AVERAGE_SAMPLES,g_param_spec_int("average-samples","Average samples","Number of FFTs used in PSD average",1,G_MAXINT,DEFAULT_AVERAGE_SAMPLES,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));
g_object_class_install_property(gobject_class,ARG_AVERAGE_SAMPLES,g_param_spec_uint("average-samples","Average samples","Number of FFTs used in PSD average",1,G_MAXUINT,DEFAULT_AVERAGE_SAMPLES,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));
g_object_class_install_property(gobject_class,ARG_XML_FILENAME,g_param_spec_string("xml-filename","XML Filename","Name of file into which will be dumped PSD snapshots (null = disable).",NULL,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));
g_object_class_install_property(gobject_class,ARG_COMPENSATION_PSD,g_param_spec_string("compensation-psd","Filename","Name of text file from which to read reference spectrum to be compensated for by over-whitening (null = disable).",NULL,G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS));