|
22 | 22 | //| CLIP: DistortionMode |
23 | 23 | //| """Digital distortion effect which cuts off peaks at the top and bottom of the waveform.""" |
24 | 24 | //| |
25 | | -//| ATAN: DistortionMode |
26 | | -//| """""" |
27 | | -//| |
28 | 25 | //| LOFI: DistortionMode |
29 | 26 | //| """Low-resolution digital distortion effect (bit depth reduction). You can use it to emulate the sound of early digital audio devices.""" |
30 | 27 | //| |
|
36 | 33 | //| |
37 | 34 |
|
38 | 35 | MAKE_ENUM_VALUE(audiofilters_distortion_mode_type, distortion_mode, CLIP, DISTORTION_MODE_CLIP); |
39 | | -MAKE_ENUM_VALUE(audiofilters_distortion_mode_type, distortion_mode, ATAN, DISTORTION_MODE_ATAN); |
40 | 36 | MAKE_ENUM_VALUE(audiofilters_distortion_mode_type, distortion_mode, LOFI, DISTORTION_MODE_LOFI); |
41 | 37 | MAKE_ENUM_VALUE(audiofilters_distortion_mode_type, distortion_mode, OVERDRIVE, DISTORTION_MODE_OVERDRIVE); |
42 | 38 | MAKE_ENUM_VALUE(audiofilters_distortion_mode_type, distortion_mode, WAVESHAPE, DISTORTION_MODE_WAVESHAPE); |
43 | 39 |
|
44 | 40 | MAKE_ENUM_MAP(audiofilters_distortion_mode) { |
45 | 41 | MAKE_ENUM_MAP_ENTRY(distortion_mode, CLIP), |
46 | | - MAKE_ENUM_MAP_ENTRY(distortion_mode, ATAN), |
47 | 42 | MAKE_ENUM_MAP_ENTRY(distortion_mode, LOFI), |
48 | 43 | MAKE_ENUM_MAP_ENTRY(distortion_mode, OVERDRIVE), |
49 | 44 | MAKE_ENUM_MAP_ENTRY(distortion_mode, WAVESHAPE), |
|
0 commit comments