Use generator macros for the process functions for the different sample types, add...
[platform/upstream/gst-plugins-good.git] / gst / audiofx / audiowsinclimit.h
1 /* -*- c-basic-offset: 2 -*-
2  * 
3  * GStreamer
4  * Copyright (C) 1999-2001 Erik Walthinsen <omega@cse.ogi.edu>
5  *               2006 Dreamlab Technologies Ltd. <mathis.hofer@dreamlab.net>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  * 
22  * 
23  * this windowed sinc filter is taken from the freely downloadable DSP book,
24  * "The Scientist and Engineer's Guide to Digital Signal Processing",
25  * chapter 16
26  * available at http://www.dspguide.com/
27  *
28  */
29
30 #ifndef __GST_LPWSINC_H__
31 #define __GST_LPWSINC_H__
32
33 #include "gstfilter.h"
34 #include <gst/gst.h>
35 #include <gst/audio/gstaudiofilter.h>
36
37 G_BEGIN_DECLS
38
39 #define GST_TYPE_LPWSINC \
40   (gst_lpwsinc_get_type())
41 #define GST_LPWSINC(obj) \
42   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_LPWSINC,GstLPWSinc))
43 #define GST_LPWSINC_CLASS(klass) \
44   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_LPWSINC,GstLPWSincClass))
45 #define GST_IS_LPWSINC(obj) \
46   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_LPWSINC))
47 #define GST_IS_LPWSINC_CLASS(klass) \
48   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_LPWSINC))
49
50 typedef struct _GstLPWSinc GstLPWSinc;
51 typedef struct _GstLPWSincClass GstLPWSincClass;
52
53 typedef void (*GstLPWSincProcessFunc) (GstLPWSinc *, guint8 *, guint8 *, guint);
54
55 /**
56  * GstLPWSinc:
57  *
58  * Opaque data structure.
59  */
60 struct _GstLPWSinc {
61   GstAudioFilter element;
62
63   /* < private > */
64   GstLPWSincProcessFunc process;
65
66   gint mode;
67   gint window;
68   gfloat cutoff;
69   gint kernel_length;           /* length of the filter kernel */
70
71   gdouble *residue;             /* buffer for left-over samples from previous buffer */
72   gdouble *kernel;              /* filter kernel */
73   gboolean have_kernel;
74   gint residue_length;
75   guint64 latency;
76   GstClockTime next_ts;
77   guint64 next_off;
78 };
79
80 struct _GstLPWSincClass {
81   GstAudioFilterClass parent_class;
82 };
83
84 GType gst_lpwsinc_get_type (void);
85
86 G_END_DECLS
87
88 #endif /* __GST_LPWSINC_H__ */