mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
129c7e8af1
Original commit message from CVS: * configure.ac: Remove idct and resample libs * gst-libs/gst/Makefile.am: same Remove usage of gst_library_load(): * ext/alsa/gstalsaplugin.c: (plugin_init): * ext/libvisual/visual.c: (plugin_init): * ext/ogg/gstogg.c: (plugin_init): * ext/theora/theora.c: (plugin_init): * ext/vorbis/vorbis.c: (plugin_init): * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init): * gst/audioscale/gstaudioscale.c: * gst/adder/gstadder.c: (plugin_init): * gst/audioconvert/plugin.c: (plugin_init): * sys/ximage/ximagesink.c: (plugin_init): * sys/xvimage/xvimagesink.c: (plugin_init): * gst/tcp/gsttcpplugin.c: (plugin_init): Link plugins against libraries: * ext/ogg/Makefile.am: * ext/theora/Makefile.am: * ext/vorbis/Makefile.am: * gst/audioconvert/Makefile.am: Create proper libraries: * gst-libs/gst/riff/Makefile.am: * gst-libs/gst/audio/Makefile.am: * gst-libs/gst/video/Makefile.am: Move resample library to audioscale plugin directory: * gst-libs/gst/resample/Makefile.am: * gst-libs/gst/resample/README: * gst-libs/gst/resample/dtof.c: * gst-libs/gst/resample/dtos.c: * gst-libs/gst/resample/functable.c: * gst-libs/gst/resample/private.h: * gst-libs/gst/resample/resample.c: * gst-libs/gst/resample/resample.h: * gst-libs/gst/resample/resample.vcproj: * gst-libs/gst/resample/test.c: * gst/audioscale/Makefile.am: * gst/audioscale/README: * gst/audioscale/dtof.c: * gst/audioscale/dtos.c: * gst/audioscale/functable.c: * gst/audioscale/private.h: * gst/audioscale/resample.c: * gst/audioscale/resample.h: * gst/audioscale/test.c: Move tagedit library to gst-libs: * gst-libs/gst/tag/Makefile.am: * gst-libs/gst/tag/gstid3tag.c: * gst-libs/gst/tag/gsttagediting.c: * gst-libs/gst/tag/gsttageditingprivate.h: * gst-libs/gst/tag/gstvorbistag.c: * gst/tags/Makefile.am: * gst/tags/gstid3tag.c: * gst/tags/gstvorbistag.c: Fix for core changes: * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init), (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link), (gst_sinesrc_getrange):
118 lines
3.6 KiB
C
118 lines
3.6 KiB
C
/* Resampling library
|
|
* Copyright (C) <2001> David Schleef <ds@schleef.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
|
|
#ifndef __PRIVATE_H__
|
|
#define __PRIVATE_H__
|
|
|
|
#include "resample.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gst_resample_nearest_s16(gst_resample_t *r);
|
|
void gst_resample_bilinear_s16(gst_resample_t *r);
|
|
void gst_resample_sinc_s16(gst_resample_t *r);
|
|
void gst_resample_sinc_slow_s16(gst_resample_t *r);
|
|
void gst_resample_sinc_ft_s16(gst_resample_t * r);
|
|
|
|
void gst_resample_nearest_float(gst_resample_t *r);
|
|
void gst_resample_bilinear_float(gst_resample_t *r);
|
|
void gst_resample_sinc_float(gst_resample_t *r);
|
|
void gst_resample_sinc_slow_float(gst_resample_t *r);
|
|
void gst_resample_sinc_ft_float(gst_resample_t * r);
|
|
|
|
|
|
typedef struct functable_s functable_t;
|
|
struct functable_s {
|
|
double start;
|
|
double offset;
|
|
int len;
|
|
|
|
double invoffset;
|
|
|
|
double scale;
|
|
double scale2;
|
|
|
|
double (*func_x)(void *,double x);
|
|
double (*func_dx)(void *,double x);
|
|
|
|
double (*func2_x)(void *,double x);
|
|
double (*func2_dx)(void *,double x);
|
|
|
|
double *fx;
|
|
double *fdx;
|
|
|
|
void *priv;
|
|
};
|
|
|
|
void functable_init(functable_t *t);
|
|
double functable_eval(functable_t *t,double x);
|
|
|
|
double functable_fir(functable_t *t,double x0,int n,double *data,int len);
|
|
void functable_fir2(functable_t *t,double *r0, double *r1, double x0,
|
|
int n,double *data,int len);
|
|
|
|
double functable_sinc(void *p, double x);
|
|
double functable_dsinc(void *p, double x);
|
|
double functable_window_std(void *p, double x);
|
|
double functable_window_dstd(void *p, double x);
|
|
double functable_window_boxcar(void *p, double x);
|
|
double functable_window_dboxcar(void *p, double x);
|
|
|
|
/* math lib stuff */
|
|
|
|
void conv_double_short_table(double *dest, short *src, int n);
|
|
void conv_double_short_unroll(double *dest, short *src, int n);
|
|
void conv_double_short_ref(double *dest, short *src, int n);
|
|
#ifdef HAVE_CPU_PPC
|
|
void conv_double_short_altivec(double *dest, short *src, int n);
|
|
#endif
|
|
|
|
void conv_short_double_ref(short *dest, double *src, int n);
|
|
#ifdef HAVE_CPU_PPC
|
|
void conv_short_double_ppcasm(short *dest, double *src, int n);
|
|
#endif
|
|
|
|
#ifdef HAVE_CPU_PPC
|
|
# define conv_double_short conv_double_short_table
|
|
# if 0
|
|
/* disabled as in .c */
|
|
# define conv_short_double conv_short_double_ppcasm
|
|
# else
|
|
# define conv_short_double conv_short_double_ref
|
|
# endif
|
|
#else
|
|
# define conv_double_short conv_double_short_ref
|
|
# define conv_short_double conv_short_double_ref
|
|
#endif
|
|
|
|
#define conv_double_float conv_double_float_ref
|
|
#define conv_float_double conv_float_double_ref
|
|
|
|
void conv_double_short_dstr(double *dest, short *src, int n, int dstr);
|
|
void conv_short_double_sstr(short *dest, double *src, int n, int dstr);
|
|
|
|
void conv_double_float_ref(double *dest, float *src, int n);
|
|
void conv_float_double_ref(float *dest, double *src, int n);
|
|
void conv_double_float_dstr(double *dest, float *src, int n, int dstr);
|
|
void conv_float_double_sstr(float *dest, double *src, int n, int sstr);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __PRIVATE_H__ */
|