diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | INSTALL | 18 | ||||
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 27 insertions, 6 deletions
@@ -1,19 +1,25 @@ This file contains information about the changes done to the ODR-DabMux in this repository +2014-02-12: Matthias P. Braendli <matthias@mpb.li> + (v0.4.3): + * odr-dabmux: + Add support for hexadecimal IDs in configuration file. + Add ZMQ input for toolame-dab. + 2014-02-11: Matthias P. Braendli <matthias@mpb.li> (v0.4.2) - * crc-dabmux: + * odr-dabmux: Actually add zmq.hpp to Makefile.am (v0.4.1) - * crc-dabmux: + * odr-dabmux: Include zmq.hpp locally and prefer it over the system one. Fix wrong usage of zmq::socket_t.recv 2014-02-07: Matthias P. Braendli <matthias@mpb.li> (v0.4.0) - * crc-dabmux: + * odr-dabmux: CRC-DabMux renamed to ODR-DabMux Version bump to 0.4.0 @@ -17,9 +17,19 @@ Simple install procedure using tarball release: [as root] % make install # Install the library + # install zeromq 4.0.3 + % wget http://download.zeromq.org/zeromq-4.0.3.tar.gz + % tar -f zeromq-4.0.3.tar.gz -x + % cd zeromq-4.0.3 + % ./configure + % make + [as root] + % make install + % tar xjf odr-dabmux-x.y.z.tar.bz2 # Unpack the source % cd odr-dabmux-x.y.z # Change to the source directory - % ./configure # Run the configure script + % ./configure --enable-input-zeromq --enable-output-zeromq + # Run the configure script % make # Build ODR-DabMux [ as root ] % make install # Install ODR-DabMux @@ -27,10 +37,14 @@ Simple install procedure using tarball release: Nearly as simple install procedure using repository: ==================================================== +The code in the repository is more recent than the latest +release and could be less stable, but already have new +features. + * Download and install fec as above * Clone the git repository * Bootstrap autotools: - % aclocal && automake --gnu --add-missing && autoconf + % ./bootstrap.sh * Then use ./configure as above @@ -11,6 +11,7 @@ In addition to the features of CRC-DabMux, this fork contains: - timestamping support required for SFN - a ZeroMQ ETI output that can be used with ODR-DABMOD - a ZeroMQ dabplus input that can be used with fdk-aac-dabplus-zmq + and toolame-dab - supports logging to syslog - supports ZMQ input monitoring with munin tool - supports a Telnet Remote Control for setting/getting parameters diff --git a/configure.ac b/configure.ac index 2c9bcb2..0af2805 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ # along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.61) -AC_INIT([ODR-DabMux], [0.4.2], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMux], [0.4.3], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([-Wall subdir-objects]) |