diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-11-26 08:43:25 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-11-26 08:43:25 +0000 |
commit | d222cb6c1456a48b90b2887ba8f5f2e9358bc79d (patch) | |
tree | e170a45e371b56416384cb41f3b19270e434482b /gst/speexresample/README | |
parent | 67d4bcd555dcab6ce38481deecc1c0179915d268 (diff) | |
download | gst-plugins-bad-d222cb6c1456a48b90b2887ba8f5f2e9358bc79d.tar.gz gst-plugins-bad-d222cb6c1456a48b90b2887ba8f5f2e9358bc79d.tar.bz2 gst-plugins-bad-d222cb6c1456a48b90b2887ba8f5f2e9358bc79d.zip |
gst/speexresample/: Update speex resampler to latest SVN. We're now down to only the changes noted in README again.
Original commit message from CVS:
* gst/speexresample/README:
* gst/speexresample/arch.h:
* gst/speexresample/resample.c: (resampler_basic_direct_single),
(resampler_basic_direct_double),
(resampler_basic_interpolate_single),
(resampler_basic_interpolate_double),
(speex_resampler_process_native), (speex_resampler_process_float),
(speex_resampler_process_int),
(speex_resampler_process_interleaved_float),
(speex_resampler_process_interleaved_int),
(speex_resampler_get_input_latency),
(speex_resampler_get_output_latency):
* gst/speexresample/speex_resampler.h:
Update speex resampler to latest SVN. We're now down to only the
changes noted in README again.
* gst/speexresample/speex_resampler_wrapper.h:
* gst/speexresample/gstspeexresample.c:
(gst_speex_resample_push_drain), (gst_speex_resample_query):
Adjust to API changes.
Diffstat (limited to 'gst/speexresample/README')
-rw-r--r-- | gst/speexresample/README | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/speexresample/README b/gst/speexresample/README index 72c9d631..68d8c290 100644 --- a/gst/speexresample/README +++ b/gst/speexresample/README @@ -3,7 +3,7 @@ arch.h fixed_generic.h speex_resampler.h -are taken from http://svn.xiph.org/trunk/speex/ revision 14208. +are taken from http://svn.xiph.org/trunk/speex/ revision 14232. The only changes are: @@ -46,9 +46,9 @@ The only changes are: #else /* OUTSIDE_SPEEX */ ---- speex/libspeex/resample.c 2007-11-21 11:07:32.000000000 +0100 -+++ speexresample/resample.c 2007-11-21 11:15:09.000000000 +0100 -@@ -62,20 +62,22 @@ +--- speex/libspeex/resample.c 2007-11-25 14:15:38.000000000 +0100 ++++ speexresample/resample.c 2007-11-25 14:15:31.000000000 +0100 +@@ -62,20 +62,23 @@ #ifdef OUTSIDE_SPEEX #include <stdlib.h> @@ -69,6 +69,7 @@ The only changes are: + return g_realloc (ptr, size); } -static void ++ +static inline void speex_free (void *ptr) { @@ -77,4 +78,3 @@ The only changes are: } #include "speex_resampler.h" - |