Module: opencore-amr
Branch: master
Commit: 958395d13773834ac044c1a707cf7d2cdc3f8dc1
Author: Martin Storsjo <martin@...>
Date: Mon Feb 20 13:05:21 2012 +0200
URL: http://opencore-amr.git.sf.net/git/gitweb.cgi?p=opencore-amr/opencore-amr;a=commit;h=958395d13773834ac044c1a707cf7d2cdc3f8dc1
Add a changelog entry for 0.1.3, bump the version numbers
---
ChangeLog | 11 +++++++++++
configure.ac | 6 +++---
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8b81dcf..6acf662 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+0.1.3
+ - Adjusted libtool flags for building DLLs for windows
+ - Update to the latest upstream opencore source
+ - Updated and improved example applications
+ - Add options for enabling the arm inline assembly
+ - Add options for disabling the encoder or decoder in the amrnb library
+ - Avoid dependencies on libstdc++ if building the source as C
+ - Hide internal symbols in shared libraries
+ - Minor tweaks
+ - Remove old static makefiles and corresponding build scripts
+
0.1.2
- Fixed AMR-NB encoding on 64-bit architectures
- Switch to using automake/autoconf/libtool
diff --git a/configure.ac b/configure.ac
index 7a8151b..8b0f504 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
-AC_INIT([opencore-amr], [0.1.2], [http://sourceforge.net/projects/opencore-amr/])
+AC_INIT([opencore-amr], [0.1.3], [http://sourceforge.net/projects/opencore-amr/])
AC_CONFIG_AUX_DIR(.)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([tar-ustar])
@@ -79,8 +79,8 @@ AC_CHECK_FUNCS([memset])
# OpenCORE AMR soname version to use
# goes by ‘current[:revision[:age]]’ with the soname ending up as
# current.age.revision.
-OPENCORE_AMRNB_VERSION=0:2:0
-OPENCORE_AMRWB_VERSION=0:2:0
+OPENCORE_AMRNB_VERSION=0:3:0
+OPENCORE_AMRWB_VERSION=0:3:0
AC_SUBST(OPENCORE_AMRNB_VERSION)
AC_SUBST(OPENCORE_AMRWB_VERSION)
|