aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-11-18 04:23:24 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-11-18 04:23:24 +0100
commit0d9b67dd5ba2a9a8274ba16241f82a9e7159c51c (patch)
treefc64fd4eee15ce02601b8e968e1624541c159f4a
parent9c8e72ce7d0bb7324784ff9d3235675827cbe2d2 (diff)
downloadODR-AudioEnc-0d9b67dd5ba2a9a8274ba16241f82a9e7159c51c.tar.gz
ODR-AudioEnc-0d9b67dd5ba2a9a8274ba16241f82a9e7159c51c.tar.bz2
ODR-AudioEnc-0d9b67dd5ba2a9a8274ba16241f82a9e7159c51c.zip
Prepare v2.2.0v2.2.0
-rw-r--r--ChangeLog9
-rw-r--r--README.md5
-rw-r--r--configure.ac2
3 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 70ed186..7d48b8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2017-11-18: Matthias P. Braendli <matthias@mpb.li>
+ (v2.2.0):
+ Add a decoder option for loopback testing.
+ Add a auto-restart option in case of input fault.
+ PAD improvements for DAB and DAB+.
+ Fix a few issues in mono.
+ Unify internal API for all inputs and simplify implementation.
+ Usage screen clarifications and minor internal fixes.
+
2017-03-10: Matthias P. Braendli <matthias@mpb.li>
(v2.1.0):
Improve drift compensation quality, reduce occurrence of microglitches.
diff --git a/README.md b/README.md
index 3977841..9c6758c 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,8 @@ ODR-mmbTools.
The DAB encoder is based on toolame. The DAB+ encoder uses a modified library
of the Fraunhofer FDK AAC code from Android, patched for 960-transform to do
-DAB+ broadcast encoding. FDK-AAC has to be supplied separately.
+DAB+ broadcast encoding. FDK-AAC has to be supplied separately, and is available
+in the [repository](https://github.com/Opendigitalradio/fdk-aac.git).
The main tool is the *odr-audioenc* encoder, which can read audio from
a file (raw or wav), from an ALSA source, from JACK or using libVLC,
@@ -36,7 +37,7 @@ How to build
Requirements:
* A C++11 compiler
-* FDK-AAC with the DAB+ patches
+* [FDK-AAC](https://github.com/Opendigitalradio/fdk-aac.git) with the DAB+ patches
* ZeroMQ 4.0.4 or more recent
* JACK audio connection kit (optional)
* The alsa libraries (libasound2, optional)
diff --git a/configure.ac b/configure.ac
index 5d0918a..f12cc94 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([ODR-AudioEnc], [2.1.0], [http://opendigitalradio.org/])
+AC_INIT([ODR-AudioEnc], [2.2.0], [http://opendigitalradio.org/])
AC_CONFIG_AUX_DIR(.)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([tar-ustar foreign])