Mercurial > mplayer.hg
annotate libaf/filter.h @ 27980:21779d5ea61c
Create a separate codecs.conf entry for Tremor and use it if MPlayer is
with Tremor support instead of libvorbis. Previously MPlayer would show
the same output on the console when decoding with libvorbis and Tremor.
author | diego |
---|---|
date | Mon, 24 Nov 2008 08:31:44 +0000 |
parents | 82fd0e4c93c9 |
children | 9e739bdb049c |
rev | line source |
---|---|
7568 | 1 /*============================================================================= |
2 // | |
13602
14090f7300a8
The full name of the GPL is GNU General Public License.
diego
parents:
8957
diff
changeset
|
3 // This software has been released under the terms of the GNU General Public |
7568 | 4 // license. See http://www.gnu.org/copyleft/gpl.html for details. |
5 // | |
6 // Copyright 2001 Anders Johansson ajh@atri.curtin.edu.au | |
7 // | |
8 //============================================================================= | |
9 */ | |
10 | |
26029 | 11 #if !defined MPLAYER_DSP_H |
26343
1b73f5aa1796
Remove some useless quotes from #error preprocessor directives.
diego
parents:
26342
diff
changeset
|
12 # error Never use filter.h directly; include dsp.h instead. |
7568 | 13 #endif |
14 | |
26029 | 15 #ifndef MPLAYER_FILTER_H |
16 #define MPLAYER_FILTER_H | |
7568 | 17 |
18 | |
19 // Design and implementation of different types of digital filters | |
20 | |
21 | |
22 // Flags used for filter design | |
23 | |
24 // Filter characteristics | |
25 #define LP 0x00010000 // Low pass | |
26 #define HP 0x00020000 // High pass | |
27 #define BP 0x00040000 // Band pass | |
28 #define BS 0x00080000 // Band stop | |
29 #define TYPE_MASK 0x000F0000 | |
30 | |
31 // Window types | |
32 #define BOXCAR 0x00000001 | |
33 #define TRIANG 0x00000002 | |
34 #define HAMMING 0x00000004 | |
35 #define HANNING 0x00000008 | |
36 #define BLACKMAN 0x00000010 | |
37 #define FLATTOP 0x00000011 | |
38 #define KAISER 0x00000012 | |
39 #define WINDOW_MASK 0x0000001F | |
40 | |
41 // Parallel filter design | |
42 #define FWD 0x00000001 // Forward indexing of polyphase filter | |
43 #define REW 0x00000002 // Reverse indexing of polyphase filter | |
44 #define ODD 0x00000010 // Make filter HP | |
45 | |
46 // Exported functions | |
27258 | 47 extern FLOAT_TYPE af_filter_fir(unsigned int n, const FLOAT_TYPE* w, const FLOAT_TYPE* x); |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
7568
diff
changeset
|
48 |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
49 extern FLOAT_TYPE* af_filter_pfir(unsigned int n, unsigned int k, |
27258 | 50 unsigned int xi, const FLOAT_TYPE** w, |
51 const FLOAT_TYPE** x, FLOAT_TYPE* y, | |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
52 unsigned int s); |
7568 | 53 |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
54 //extern int af_filter_updateq(unsigned int n, unsigned int xi, |
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
55 // FLOAT_TYPE* xq, FLOAT_TYPE* in); |
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
56 extern int af_filter_updatepq(unsigned int n, unsigned int k, unsigned int xi, |
27258 | 57 FLOAT_TYPE** xq, const FLOAT_TYPE* in, unsigned int s); |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
58 |
27258 | 59 extern int af_filter_design_fir(unsigned int n, FLOAT_TYPE* w, const FLOAT_TYPE* fc, |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
60 unsigned int flags, FLOAT_TYPE opt); |
7568 | 61 |
27258 | 62 extern int af_filter_design_pfir(unsigned int n, unsigned int k, const FLOAT_TYPE* w, |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
63 FLOAT_TYPE** pw, FLOAT_TYPE g, |
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
64 unsigned int flags); |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
7568
diff
changeset
|
65 |
27258 | 66 extern int af_filter_szxform(const FLOAT_TYPE* a, const FLOAT_TYPE* b, FLOAT_TYPE Q, |
26350
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
67 FLOAT_TYPE fc, FLOAT_TYPE fs, FLOAT_TYPE *k, |
07abe94a9cc4
Fix illegal identifier: Rename _ftype_t macro to FLOAT_TYPE.
diego
parents:
26343
diff
changeset
|
68 FLOAT_TYPE *coef); |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
7568
diff
changeset
|
69 |
7568 | 70 /* Add new data to circular queue designed to be used with a FIR |
71 filter. xq is the circular queue, in pointing at the new sample, xi | |
72 current index for xq and n the length of the filter. xq must be n*2 | |
73 long. | |
74 */ | |
14275
de13fd557440
less namespace pollution #2 (prefixed globals in filter.c with af_filter_)
alex
parents:
13602
diff
changeset
|
75 #define af_filter_updateq(n,xi,xq,in)\ |
8957
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
8832
diff
changeset
|
76 xq[xi]=(xq)[(xi)+(n)]=*(in);\ |
36a5cdca733b
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
mosu
parents:
8832
diff
changeset
|
77 xi=(++(xi))&((n)-1); |
7568 | 78 |
26029 | 79 #endif /* MPLAYER_FILTER_H */ |