Browse Source

turning dither and noise shaping off at the simple example

dds
awalch6679 4 years ago
parent
commit
141b88bf10
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/HardwareTesting/PassThroughAsyncSpdif/PassThroughAsyncSpdif.ino

+ 1
- 1
examples/HardwareTesting/PassThroughAsyncSpdif/PassThroughAsyncSpdif.ino View File

@@ -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);

Loading…
Cancel
Save