summaryrefslogtreecommitdiffstats
path: root/audio/filter/equalizer.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-13 18:00:51 +0200
committerwm4 <wm4@nowhere>2014-04-13 18:03:01 +0200
commit78128bddda4bcea1f256fc13cc33fa2652ed277c (patch)
tree35bf6596cb8e2d7927618845833c3ee36534f890 /audio/filter/equalizer.h
parent44f382cf98564c0fe08bdc78579c284362cd6f3c (diff)
downloadmpv-78128bddda4bcea1f256fc13cc33fa2652ed277c.tar.bz2
mpv-78128bddda4bcea1f256fc13cc33fa2652ed277c.tar.xz
Kill all tabs
I hate tabs. This replaces all tabs in all source files with spaces. The only exception is old-makefile. The replacement was made by running the GNU coreutils "expand" command on every file. Since the replacement was automatic, it's possible that some formatting was destroyed (but perhaps only if it was assuming that the end of a tab does not correspond to aligning the end to multiples of 8 spaces).
Diffstat (limited to 'audio/filter/equalizer.h')
-rw-r--r--audio/filter/equalizer.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/audio/filter/equalizer.h b/audio/filter/equalizer.h
index 4935401413..6505379276 100644
--- a/audio/filter/equalizer.h
+++ b/audio/filter/equalizer.h
@@ -26,22 +26,22 @@
typedef struct equalizer_s
{
- float gain; // Gain in dB -15 - 15
- int channel; // Channel number 0 - 5
- int band; // Frequency band 0 - 9
+ float gain; // Gain in dB -15 - 15
+ int channel; // Channel number 0 - 5
+ int band; // Frequency band 0 - 9
}equalizer_t;
/* The different frequency bands are:
-nr. center frequency
-0 31.25 Hz
-1 62.50 Hz
-2 125.0 Hz
-3 250.0 Hz
-4 500.0 Hz
-5 1.000 kHz
-6 2.000 kHz
-7 4.000 kHz
-8 8.000 kHz
+nr. center frequency
+0 31.25 Hz
+1 62.50 Hz
+2 125.0 Hz
+3 250.0 Hz
+4 500.0 Hz
+5 1.000 kHz
+6 2.000 kHz
+7 4.000 kHz
+8 8.000 kHz
9 16.00 kHz
*/