summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-12-16 19:12:45 -0800
committerJames Zern <jzern@google.com>2015-12-17 19:45:14 -0800
commit71100500a894a5a0f6a7c3d64e437b6d26b9abe4 (patch)
tree3d0152032e401eeb112b0925f29de3a5aab64fc8
parent230a685ea7b9c25feaf83de5344b510d8eff3d74 (diff)
downloadlibwebp-71100500a894a5a0f6a7c3d64e437b6d26b9abe4.tar.gz
bump version to 0.5.0
libwebp{,decoder} - 0.5.0 libwebp libtool - 6.0.0 libwebpdecoder libtool - 2.0.0 mux/demux - 0.3.0 libtool - 2.0.0 Change-Id: I5346d13eb827fb5890efbb63ff3f28cea9d0c55f
-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.h4
-rw-r--r--src/demux/Makefile.am2
-rw-r--r--src/demux/demux.c4
-rw-r--r--src/enc/vp8enci.h4
-rw-r--r--src/mux/Makefile.am2
-rw-r--r--src/mux/muxi.h4
10 files changed, 15 insertions, 15 deletions
diff --git a/README b/README
index 1a9edfa0..381b9270 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@
\__\__/\____/\_____/__/ ____ ___
/ _/ / \ \ / _ \/ _/
/ \_/ / / \ \ __/ \__
- \____/____/\_____/_____/____/v0.4.4
+ \____/____/\_____/_____/____/v0.5.0
Description:
============
diff --git a/README.mux b/README.mux
index a4320047..aa077e8d 100644
--- a/README.mux
+++ b/README.mux
@@ -1,7 +1,7 @@
 __ __ ____ ____ ____ __ __ _ __ __
/ \\/ \/ _ \/ _ \/ _ \/ \ \/ \___/_ / _\
\ / __/ _ \ __/ / / (_/ /__
- \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.2.2
+ \__\__/\_____/_____/__/ \__//_/\_____/__/___/v0.3.0
Description:
diff --git a/configure.ac b/configure.ac
index e9640874..025cf743 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libwebp], [0.4.4],
+AC_INIT([libwebp], [0.5.0],
[https://bugs.chromium.org/p/webp],,
[http://developers.google.com/speed/webp])
AC_CANONICAL_HOST
diff --git a/src/Makefile.am b/src/Makefile.am
index 0bf45d2e..23c5b491 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -38,7 +38,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:4:0
+libwebp_la_LDFLAGS = -no-undefined -version-info 6:0:0
libwebpincludedir = $(includedir)/webp
pkgconfig_DATA = libwebp.pc
@@ -50,7 +50,7 @@ if BUILD_LIBWEBPDECODER
libwebpdecoder_la_LIBADD += dsp/libwebpdspdecode.la
libwebpdecoder_la_LIBADD += utils/libwebputilsdecode.la
- libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 1:4:0
+ libwebpdecoder_la_LDFLAGS = -no-undefined -version-info 2:0:0
pkgconfig_DATA += libwebpdecoder.pc
endif
diff --git a/src/dec/vp8i.h b/src/dec/vp8i.h
index b5f2b230..0104f255 100644
--- a/src/dec/vp8i.h
+++ b/src/dec/vp8i.h
@@ -31,8 +31,8 @@ extern "C" {
// version numbers
#define DEC_MAJ_VERSION 0
-#define DEC_MIN_VERSION 4
-#define DEC_REV_VERSION 4
+#define DEC_MIN_VERSION 5
+#define DEC_REV_VERSION 0
// YUV-cache parameters. Cache is 32-bytes wide (= one cacheline).
// Constraints are: We need to store one 16x16 block of luma samples (y),
diff --git a/src/demux/Makefile.am b/src/demux/Makefile.am
index ff593920..d7ce525f 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:2:0
+libwebpdemux_la_LDFLAGS = -no-undefined -version-info 2:0:0
libwebpdemuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpdemux.pc
diff --git a/src/demux/demux.c b/src/demux/demux.c
index 8c482e58..0d2989f6 100644
--- a/src/demux/demux.c
+++ b/src/demux/demux.c
@@ -24,8 +24,8 @@
#include "../webp/format_constants.h"
#define DMUX_MAJ_VERSION 0
-#define DMUX_MIN_VERSION 2
-#define DMUX_REV_VERSION 2
+#define DMUX_MIN_VERSION 3
+#define DMUX_REV_VERSION 0
typedef struct {
size_t start_; // start location of the data
diff --git a/src/enc/vp8enci.h b/src/enc/vp8enci.h
index 08b26ef0..b2cc8d19 100644
--- a/src/enc/vp8enci.h
+++ b/src/enc/vp8enci.h
@@ -35,8 +35,8 @@ extern "C" {
// version numbers
#define ENC_MAJ_VERSION 0
-#define ENC_MIN_VERSION 4
-#define ENC_REV_VERSION 4
+#define ENC_MIN_VERSION 5
+#define ENC_REV_VERSION 0
enum { MAX_LF_LEVELS = 64, // Maximum loop filter level
MAX_VARIABLE_LEVEL = 67, // last (inclusive) level with variable cost
diff --git a/src/mux/Makefile.am b/src/mux/Makefile.am
index 7d7d5e05..a25bf286 100644
--- a/src/mux/Makefile.am
+++ b/src/mux/Makefile.am
@@ -13,6 +13,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:2:0
+libwebpmux_la_LDFLAGS = -no-undefined -version-info 2:0:0
libwebpmuxincludedir = $(includedir)/webp
pkgconfig_DATA = libwebpmux.pc
diff --git a/src/mux/muxi.h b/src/mux/muxi.h
index 718b2f5d..5e8ba2e8 100644
--- a/src/mux/muxi.h
+++ b/src/mux/muxi.h
@@ -27,8 +27,8 @@ extern "C" {
// Defines and constants.
#define MUX_MAJ_VERSION 0
-#define MUX_MIN_VERSION 2
-#define MUX_REV_VERSION 2
+#define MUX_MIN_VERSION 3
+#define MUX_REV_VERSION 0
// Chunk object.
typedef struct WebPChunk WebPChunk;