diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2014-03-09: Matthias P. Braendli <matthias@mpb.li> + (v0.2.0): + Rename all tools in a consistent way and tidy + them up. + Add the alsa input with optional drift compensation + Add MOT Slideshow and PAD code from CSP.it + Add new descriptions and scenarios to the README + 2014-02-11: Matthias P. Braendli <matthias@mpb.li> (v0.1.0): Initial release of fdk-aac-dabplus, based on diff --git a/Makefile.am b/Makefile.am index 9e2e164..459e61d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,6 +44,7 @@ dabplus_enc_file_SOURCES = src/dabplus-enc-file.c \ dabplus_enc_file_zmq_LDADD = libfdk-aac.la -lfec -lzmq dabplus_enc_file_zmq_SOURCES = src/dabplus-enc-file-zmq.c \ src/wavreader.c \ + contrib/lib_crc.h \ contrib/lib_crc.c dabplus_enc_alsa_zmq_LDFLAGS = -no-install @@ -59,6 +60,7 @@ dabplus_enc_alsa_zmq_SOURCES = src/AlsaDabplus.cpp \ mot_encoder_CFLAGS = @MAGICKWAND_CFLAGS@ -Icontrib mot_encoder_LDADD = @MAGICKWAND_LDADD@ mot_encoder_SOURCES = src/mot-encoder.c \ + contrib/lib_crc.h \ contrib/lib_crc.c bin_PROGRAMS = dabplus-enc-file$(EXEEXT) \ diff --git a/configure.ac b/configure.ac index fb2314d..ac126ef 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([fdk-aac-dabplus], [0.1.0], [http://opendigitalradio.org/]) +AC_INIT([fdk-aac-dabplus], [0.2.0], [http://opendigitalradio.org/]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([tar-ustar foreign]) |