diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-02-17 12:26:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-02-17 12:26:28 +0100 |
commit | c6ddb4451138005bbf678ee75d6de690a165faa2 (patch) | |
tree | c831f55fc1bd1f371a270034f2b46bc4ebc94e0d /src | |
parent | cf26226714f73ce0d2b833bc579dbb00b9297d88 (diff) | |
download | dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.tar.gz dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.tar.bz2 dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.zip |
Update EDI lib: fix SAD and take latest changes
Diffstat (limited to 'src')
-rw-r--r-- | src/DabMod.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DabMod.cpp b/src/DabMod.cpp index 9cb25a3..526670d 100644 --- a/src/DabMod.cpp +++ b/src/DabMod.cpp @@ -702,7 +702,7 @@ int launch_modulator(int argc, char* argv[]) EdiReader ediReader(tist_offset_s, tist_delay_stages); - EdiDecoder::ETIDecoder ediInput(ediReader); + EdiDecoder::ETIDecoder ediInput(ediReader, false); if (edi_max_delay_ms > 0.0f) { // setMaxDelay wants number of AF packets, which correspond to 24ms ETI frames ediInput.setMaxDelay(lroundf(edi_max_delay_ms / 24.0f)); |