diff --git a/.mailmap b/.mailmap index 166c45ee8..29af51065 100644 --- a/.mailmap +++ b/.mailmap @@ -3,6 +3,7 @@ Aℓex Converse Aℓex Converse Alexis Ballier Alpha Lam +Chris Cunningham Daniele Castagna Deb Mukherjee Erik Niemeyer @@ -21,18 +22,21 @@ Marco Paniconi Marco Paniconi Pascal Massimino Paul Wilkins +Peter Boström Peter de Rivaz Peter de Rivaz Ralph Giles Ralph Giles Ronald S. Bultje Sami Pietilä +Shiyou Yin Tamar Levy Tamar Levy Tero Rintaluoma Timothy B. Terriberry Tom Finegan Tom Finegan +Urvang Joshi Yaowu Xu Yaowu Xu Yaowu Xu diff --git a/AUTHORS b/AUTHORS index fc2ef8f43..04c287243 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,13 +3,13 @@ Aaron Watry Abo Talib Mahfoodh -Adam Xu Adrian Grange Aℓex Converse Ahmad Sharif Aleksey Vasenev Alexander Potapenko Alexander Voronov +Alexandra Hájková Alexis Ballier Alok Ahuja Alpha Lam @@ -17,6 +17,7 @@ A.Mahfoodh Ami Fischman Andoni Morales Alastruey Andres Mejia +Andrew Lewis Andrew Russell Angie Chiang Aron Rosenberg @@ -24,7 +25,9 @@ Attila Nagy Brion Vibber changjun.yang Charles 'Buck' Krasic +Cheng Chen chm +Chris Cunningham Christian Duvivier Daniele Castagna Daniel Kang @@ -46,10 +49,12 @@ Geza Lore Ghislain MARY Giuseppe Scrivano Gordana Cmiljanovic +Gregor Jasny Guillaume Martres Guillermo Ballester Valor Hangyu Kuang Hanno Böck +Han Shen Henrik Lundin Hui Su Ivan Krasin @@ -83,6 +88,7 @@ Justin Clift Justin Lebar Kaustubh Raste KO Myung-Hun +Kyle Siefring Lawrence Velázquez Linfeng Zhang Lou Quillio @@ -101,6 +107,7 @@ Mikhal Shemer Min Chen Minghai Shang Min Ye +Moriyoshi Koizumi Morton Jonuschat Nathan E. Egge Nico Weber @@ -111,12 +118,15 @@ Paul Wilkins Pavol Rusnak Paweł Hajdan Pengchong Jin -Peter Boström +Peter Boström +Peter Collingbourne Peter de Rivaz Philip Jägenstedt Priit Laes Rafael Ávila de Espíndola Rafaël Carré +Rafael de Lucena Valle +Rahul Chaudhry Ralph Giles Ranjit Kumar Tulabandu Rob Bradford @@ -135,6 +145,7 @@ Shiyou Yin Shunyao Li Stefan Holmer Suman Sunkara +Sylvestre Ledru Taekhyun Kim Takanori MATSUURA Tamar Levy @@ -147,6 +158,7 @@ Tom Finegan Tristan Matthews Urvang Joshi Vignesh Venkatasubramanian +Vlad Tsyrklevich Yaowu Xu Yi Luo Yongzhe Wang diff --git a/CHANGELOG b/CHANGELOG index 7e7aec67a..2281394c8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,28 @@ +2017-01-04 v1.7.0 "Mandarin Duck" + This release focused on high bit depth performance (10/12 bit) and vp9 + encoding improvements. + + - Upgrading: + This release is ABI incompatible due to new vp9 encoder features. + + Frame parallel decoding for vp9 has been removed. + + - Enhancements: + vp9 encoding supports additional threads with --row-mt. This can be greater + than the number of tiles. + + Two new vp9 encoder options have been added: + --corpus-complexity + --tune-content=film + + Additional tooling for respecting the vp9 "level" profiles has been added. + + - Bug fixes: + A variety of fuzzing issues. + vp8 threading fix for ARM. + Codec control VP9_SET_SKIP_LOOP_FILTER fixed. + Reject invalid multi resolution configurations. + 2017-01-09 v1.6.1 "Long Tailed Duck" This release improves upon the VP9 encoder and speeds up the encoding and decoding processes. diff --git a/README b/README index f910ce761..73304dd62 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -README - 26 January 2017 +README - 24 January 2018 Welcome to the WebM VP8/VP9 Codec SDK! @@ -63,6 +63,8 @@ COMPILING THE APPLICATIONS/LIBRARIES: armv8-linux-gcc mips32-linux-gcc mips64-linux-gcc + ppc64-linux-gcc + ppc64le-linux-gcc sparc-solaris-gcc x86-android-gcc x86-darwin8-gcc diff --git a/libs.mk b/libs.mk index ba75b4a4f..a3e2f9d0e 100644 --- a/libs.mk +++ b/libs.mk @@ -233,8 +233,8 @@ OBJS-yes += $(LIBVPX_OBJS) LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS) -SO_VERSION_MAJOR := 4 -SO_VERSION_MINOR := 1 +SO_VERSION_MAJOR := 5 +SO_VERSION_MINOR := 0 SO_VERSION_PATCH := 0 ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS)) LIBVPX_SO := libvpx.$(SO_VERSION_MAJOR).dylib