Explorar el Código

turning dither and noise shaping off at the simple example

dds
awalch6679 hace 4 años
padre
commit
141b88bf10
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      examples/HardwareTesting/PassThroughAsyncSpdif/PassThroughAsyncSpdif.ino

+ 1
- 1
examples/HardwareTesting/PassThroughAsyncSpdif/PassThroughAsyncSpdif.ino Ver fichero

@@ -1,7 +1,7 @@

#include <Audio.h>

AsyncAudioInputSPDIF3 spdifIn(true, true, 100, 20); //dither = true, noiseshaping = true, anti-aliasing attenuation=100dB, minimum resampling filter length=20
AsyncAudioInputSPDIF3 spdifIn(false, false, 100, 20); //dither = false, noiseshaping = false, anti-aliasing attenuation=100dB, minimum resampling filter length=20
AudioOutputSPDIF3 spdifOut;

AudioConnection patchCord1(spdifIn, 0, spdifOut, 0);

Cargando…
Cancelar
Guardar