summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-10-13 17:04:41 +0200
committerJames Zern <jzern@google.com>2014-10-14 12:02:17 +0200
commit857578a811ea96abfa3235e4e47dd1ab4726e655 (patch)
tree0aef3cbc9f8dcd9546e7e3962a240f21de265637
parent9129deb5b1d47d6708ddef267f0fddb447209ed6 (diff)
downloadlibwebp-857578a811ea96abfa3235e4e47dd1ab4726e655.tar.gz
bump version to 0.4.2
libwebp{,decoder} - 0.4.2 libwebp libtool - 5.2.0 libwebpdecoder libtool - 1.2.0 mux/demux - 0.2.2 libtool - 1.2.0 Change-Id: If593a198f802fd68c7dbbdbe0fc2612dbc44e2df
-rw-r--r--README2
-rw-r--r--README.mux2
-rw-r--r--configure.ac2
-rw-r--r--src/Makefile.am4
-rw-r--r--src/dec/vp8i.h2
-rw-r--r--src/demux/Makefile.am2
-rw-r--r--src/demux/demux.c2
-rw-r--r--src/mux/Makefile.am2
-rw-r--r--src/mux/muxi.h2
9 files changed, 10 insertions, 10 deletions
diff --git a/README b/README
index e4867e88..13f32ea1 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@
\__\__/\____/\_____/__/ ____ ___
/ _/ / \ \ / _ \/ _/
/ \_/ / / \ \ __/ \__
- \____/____/\_____/_____/____/v0.4.1
+ \____/____/\_____/_____/____/v0.4.2
Description:
============
diff --git a/README.mux b/README.mux
index 437a751c..644b9747 100644
--- a/README.mux
+++ b/README.mux
@@ -1,7 +1,7 @@
 __ __ ____ ____ ____ __ __ _ __ __
/ \\/ \/ _ \/ _ \/ _ \/ \ \/ \___/_ / _\
\ / __/ _ \ __/ / / (_/ /__
- \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.2.1
+ \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.2.2
Description:
diff --git a/configure.ac b/configure.ac
index a472d270..2d1d2463 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libwebp], [0.4.1],
+AC_INIT([libwebp], [0.4.2],
[http://code.google.com/p/webp/issues],,
[http://developers.google.com/speed/webp])
AC_CANONICAL_HOST
diff --git a/src/Makefile.am b/src/Makefile.am
index d4bd3caf..daa6688c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -35,7 +35,7 @@ libwebp_la_LIBADD += utils/libwebputils.la
# other than the ones listed on the command line, i.e., after linking, it will
# not have unresolved symbols. Some platforms (Windows among them) require all
# symbols in shared libraries to be resolved at library creation.
-libwebp_la_LDFLAGS = -no-undefined -version-info 5:1:0
+libwebp_la_LDFLAGS = -no-undefined -version-info 5:2:0
libwebpincludedir = $(includedir)/webp
pkgconfig_DATA = libwebp.pc
@@ -47,7 +47,7 @@ if BUILD_LIBWEBPDECODER
libwebpdecoder_la_LIBADD += dsp/libwebpdspdecode.la
libwebpdecoder_la_LIBADD += utils/libwebputilsdecode.la
- libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 1:1:0
+ libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 1:2:0
pkgconfig_DATA += libwebpdecoder.pc
endif
diff --git a/src/dec/vp8i.h b/src/dec/vp8i.h
index 7cc1840f..29701be7 100644
--- a/src/dec/vp8i.h
+++ b/src/dec/vp8i.h
@@ -31,7 +31,7 @@ extern "C" {
// version numbers
#define DEC_MAJ_VERSION 0
#define DEC_MIN_VERSION 4
-#define DEC_REV_VERSION 1
+#define DEC_REV_VERSION 2
// intra prediction modes
enum { B_DC_PRED = 0, // 4x4 modes
diff --git a/src/demux/Makefile.am b/src/demux/Makefile.am
index 8fdc28ea..507bcb2a 100644
--- a/src/demux/Makefile.am
+++ b/src/demux/Makefile.am
@@ -9,6 +9,6 @@ libwebpdemuxinclude_HEADERS += ../webp/mux_types.h
libwebpdemuxinclude_HEADERS += ../webp/types.h
libwebpdemux_la_LIBADD = ../libwebp.la
-libwebpdemux_la_LDFLAGS = -no-undefined -version-info 1:1:0
+libwebpdemux_la_LDFLAGS = -no-undefined -version-info 1:2:0
libwebpdemuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpdemux.pc
diff --git a/src/demux/demux.c b/src/demux/demux.c
index 0ab30746..55a7918f 100644
--- a/src/demux/demux.c
+++ b/src/demux/demux.c
@@ -25,7 +25,7 @@
#define DMUX_MAJ_VERSION 0
#define DMUX_MIN_VERSION 2
-#define DMUX_REV_VERSION 1
+#define DMUX_REV_VERSION 2
typedef struct {
size_t start_; // start location of the data
diff --git a/src/mux/Makefile.am b/src/mux/Makefile.am
index 37f96726..40c39b43 100644
--- a/src/mux/Makefile.am
+++ b/src/mux/Makefile.am
@@ -12,6 +12,6 @@ libwebpmuxinclude_HEADERS += ../webp/mux_types.h
libwebpmuxinclude_HEADERS += ../webp/types.h
libwebpmux_la_LIBADD = ../libwebp.la
-libwebpmux_la_LDFLAGS = -no-undefined -version-info 1:1:0
+libwebpmux_la_LDFLAGS = -no-undefined -version-info 1:2:0
libwebpmuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpmux.pc
diff --git a/src/mux/muxi.h b/src/mux/muxi.h
index f38d5131..718b2f5d 100644
--- a/src/mux/muxi.h
+++ b/src/mux/muxi.h
@@ -28,7 +28,7 @@ extern "C" {
#define MUX_MAJ_VERSION 0
#define MUX_MIN_VERSION 2
-#define MUX_REV_VERSION 1
+#define MUX_REV_VERSION 2
// Chunk object.
typedef struct WebPChunk WebPChunk;