Changeset 3a4997f56f2b27d9802dadd17ad23b19a036582c
- Timestamp:
- 22/07/04 17:09:42
(4 years ago)
- Author:
- Eric Petit <titer@videolan.org>
- git-committer:
- Eric Petit <titer@videolan.org> 1090508982 +0000
- git-parent:
[17d02421a753534dc818690d4f0b31eff731a050]
- git-author:
- Eric Petit <titer@videolan.org> 1090508982 +0000
- Message:
equalizer.c: compile fix for old compilers (thx sam)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfa2921e |
r3a4997f |
|
| 211 | 211 | float f_beta; |
|---|
| 212 | 212 | float f_gamma; |
|---|
| 213 | | } band[]; |
|---|
| | 213 | } band[0]; |
|---|
| 214 | 214 | |
|---|
| 215 | 215 | } eqz_config_t; |
|---|
| … | … | |
| 254 | 254 | int i_band; |
|---|
| 255 | 255 | float f_preamp; |
|---|
| 256 | | float f_amp[]; |
|---|
| | 256 | float f_amp[0]; |
|---|
| 257 | 257 | } eqz_preset_t; |
|---|
| 258 | 258 | |
|---|