Changeset 47e6dfa48ec84ff167d27d4cf304ef0cb9152e03
- Timestamp:
- 07/06/07 18:36:38
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1181234198 +0000
- git-parent:
[b012efbd12a930e50b5d136fc32a1a8a7a428eff]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1181234198 +0000
- Message:
Use unsigned
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re060a75 |
r47e6dfa |
|
| 40 | 40 | static void CalcPeakEQCoeffs( float, float, float, float, float * ); |
|---|
| 41 | 41 | static void CalcShelfEQCoeffs( float, float, float, int, float, float * ); |
|---|
| 42 | | static void ProcessEQ( float *, float *, float *, int, int, float *, int ); |
|---|
| | 42 | static void ProcessEQ( float *, float *, float *, unsigned, unsigned, float *, unsigned ); |
|---|
| 43 | 43 | static void DoWork( aout_instance_t *, aout_filter_t *, |
|---|
| 44 | 44 | aout_buffer_t *, aout_buffer_t * ); |
|---|
| … | … | |
| 302 | 302 | */ |
|---|
| 303 | 303 | void ProcessEQ( float *src, float *dest, float *state, |
|---|
| 304 | | int channels, int samples, float *coeffs, |
|---|
| 305 | | int eqCount ) |
|---|
| 306 | | { |
|---|
| 307 | | int i, chn, eq; |
|---|
| | 304 | unsigned channels, unsigned samples, float *coeffs, |
|---|
| | 305 | unsigned eqCount ) |
|---|
| | 306 | { |
|---|
| | 307 | unsigned i, chn, eq; |
|---|
| 308 | 308 | float b0, b1, b2, a1, a2; |
|---|
| 309 | 309 | float x, y = 0; |
|---|