summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/resample
AgeCommit message (Collapse)AuthorFilesLines
2004-03-15don't mix tabs and spacesThomas Vander Stichele3-49/+50
Original commit message from CVS: don't mix tabs and spaces
2004-03-15*.h: Revert indentingJohan Dahlin2-95/+90
Original commit message from CVS: * *.h: Revert indenting
2004-03-14gst-indentThomas Vander Stichele7-1386/+1442
Original commit message from CVS: gst-indent
2004-02-23ext/xine/xineinput.c: call parent dispose.Benjamin Otte3-71/+71
Original commit message from CVS: 2004-02-23 Benjamin Otte <otte@gnome.org> * ext/xine/xineinput.c: (gst_xine_input_dispose): (gst_xine_input_subclass_init): call parent dispose. change pad template for CD reader correctly * ext/xine/Makefile.am: * ext/xine/gstxine.h: * ext/xine/xine.c: (plugin_init): * ext/xine/xineaudiosink.c: wrap audio sinks, too * gst-libs/gst/resample/private.h: * gst-libs/gst/resample/resample.c: (gst_resample_init), (gst_resample_reinit), (gst_resample_scale), (gst_resample_nearest_s16), (gst_resample_bilinear_s16), (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16), (gst_resample_sinc_ft_s16), (gst_resample_nearest_float), (gst_resample_bilinear_float), (gst_resample_sinc_slow_float), (gst_resample_sinc_float), (gst_resample_sinc_ft_float): * gst-libs/gst/resample/resample.h: * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type), (gst_audioscale_class_init), (gst_audioscale_link), (gst_audioscale_get_buffer), (gst_audioscale_init), (gst_audioscale_chain), (gst_audioscale_set_property), (gst_audioscale_get_property): * gst/audioscale/gstaudioscale.h: s/resample_*/gst_resample_*/i to not clobber namespaces
2004-01-12Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_HDavid Schleef1-1/+3
Original commit message from CVS: * ext/ffmpeg/gstffmpeg.c: * ext/ffmpeg/gstffmpegcodecmap.c: * ext/ffmpeg/gstffmpegdec.c: * ext/ffmpeg/gstffmpegenc.c: * ext/ffmpeg/gstffmpegprotocol.c: * ext/gdk_pixbuf/gstgdkanimation.c: * ext/jpeg/gstjpeg.c: * ext/libpng/gstpng.c: * ext/mpeg2dec/perftest.c: * ext/speex/gstspeex.c: * gst-libs/gst/resample/dtos.c: * gst/intfloat/gstintfloatconvert.c: * gst/oneton/gstoneton.c: * gst/rtjpeg/RTjpeg.c: * gst/rtp/gstrtp.c: * sys/dxr3/dxr3init.c: * sys/glsink/gstgl_nvimage.c: * sys/glsink/gstgl_pdrimage.c: * sys/glsink/gstglsink.c: * testsuite/gst-lint: Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
2003-12-04remove copyright field from pluginsAndy Wingo1-1/+0
Original commit message from CVS: remove copyright field from plugins
2003-11-07Remove all config.h includes from header files, add it to each source file ↵Ronald S. Bultje4-1/+9
and remove duplicate config.h includes fro... Original commit message from CVS: Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes from several source files
2003-10-31first bunch of conversions to new plugin_init. Includes libs/gst, gst/id3, ↵Benjamin Otte1-5/+10
sys/oss, ext/gnomevfs, gst/typefind and ex... Original commit message from CVS: first bunch of conversions to new plugin_init. Includes libs/gst, gst/id3, sys/oss, ext/gnomevfs, gst/typefind and ext/mad. You guessed it, everything Rhythmbox needs ;) fixed BMP typefind and made gnomevfs one plugin instead of two while doing this
2003-09-11Remove all locally-defined optimization flagsDavid Schleef1-17/+1
Original commit message from CVS: Remove all locally-defined optimization flags
2003-06-14gcc 3.3 and ppc fixesBenjamin Otte1-1/+2
Original commit message from CVS: gcc 3.3 and ppc fixes
2003-05-21Updated autogen.sh/configure.ac and various Makefiles to make the configure ↵Brian Cameron1-1/+1
script set up all gcc specific compiler a... Original commit message from CVS: Updated autogen.sh/configure.ac and various Makefiles to make the configure script set up all gcc specific compiler arguments, rather than hardcoding them in the Makefile.am files
2002-12-11merge back from release branchThomas Vander Stichele1-3/+3
Original commit message from CVS: merge back from release branch
2002-12-08parallel install fixesThomas Vander Stichele1-4/+4
Original commit message from CVS: parallel install fixes
2002-09-15Add config.h, since we use HAVE_CPU_PPCDavid Schleef1-0/+1
Original commit message from CVS: Add config.h, since we use HAVE_CPU_PPC
2002-06-29Fix buffer allocation problem.David Schleef1-1/+2
Original commit message from CVS: Fix buffer allocation problem.
2002-06-22header relocationThomas Vander Stichele1-1/+1
Original commit message from CVS: header relocation
2002-05-29add float support to resampling lib clean up header fileAndy Wingo6-113/+567
Original commit message from CVS: * add float support to resampling lib * clean up header file
2002-03-24added plugin_desc structures to libs, which makes their locations cached in ↵Andy Wingo1-0/+15
the registry. this speeds plugin loading ... Original commit message from CVS: * added plugin_desc structures to libs, which makes their locations cached in the registry. this speeds plugin loading considerably, especially on uninstalled versions. * put the lib path before all others, for speed reasons. * some fixes to adder's caps. * added linefeeds (\n) to GST_DEBUG strings to match GST_INFO behavior. this is more sane. all code will need to be converted. i think some perl can do this.
2002-03-19removal of //-style comments don't link plugins to core libs -- the ↵Andy Wingo5-69/+69
versioning is done internally to the plugins with... Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
2002-03-19s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables ↵Andy Wingo1-1/+1
variables are defined as make variables automagi... Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag
2002-01-31- plugins are built without versioning infoWrobell1-0/+1
Original commit message from CVS: - plugins are built without versioning info
2001-12-23dvdread added more fixes for libs stuffThomas Vander Stichele1-2/+2
Original commit message from CVS: dvdread added more fixes for libs stuff
2001-12-23made changes everywhere to accomodate for the headers being in ↵Thomas Vander Stichele1-5/+5
<gst/(lib)/...> we'll need to conclude this fast becau... Original commit message from CVS: made changes everywhere to accomodate for the headers being in <gst/(lib)/...> we'll need to conclude this fast because we will also need to change stuff in core real soon for the libs in order to fix everything and I can't do it right now because I disabled all of the plugins here ;)
2001-12-23adding resample libThomas Vander Stichele7-0/+1641
Original commit message from CVS: adding resample lib