This release improves upon the VP9 encoder and speeds up the encoding and decoding processes. - Enhancement: A core focus has been performance for low end Intel processors. SSSE3 instructions such as 'pshufb' have been avoided and instructions have been reordered to better accommodate the more constrained pipelines. As a result, devices based on Celeron processors have seen substantial decoding improvements. From Indian Runner Duck to Javan Whistling Duck, decoding speed improved between 10 and 30%. Between Javan Whistling Duck and Khaki Campbell Duck, it improved another 10 to 15%. While Celeron benefited most, Core-i5 also improved 5% and 10% between the respective releases. Realtime performance for WebRTC for both speed and quality has received a lot of attention. - Bug Fixes: A number of fuzzing issues, found variously by Mozilla, Chromium and others, have been fixed and we strongly recommend updating. OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libvpx?expand=0&rev=67
27 lines
810 B
Diff
27 lines
810 B
Diff
--- a/build/make/configure.sh
|
|
+++ b/build/make/configure.sh
|
|
@@ -697,6 +697,12 @@ process_common_toolchain() {
|
|
*i[3456]86*)
|
|
tgt_isa=x86
|
|
;;
|
|
+ *s390x*)
|
|
+ tgt_isa=s390x
|
|
+ ;;
|
|
+ *s390*)
|
|
+ tgt_isa=s390
|
|
+ ;;
|
|
*sparc*)
|
|
tgt_isa=sparc
|
|
;;
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -114,6 +114,8 @@ all_platforms="${all_platforms} armv7s-d
|
|
all_platforms="${all_platforms} armv8-linux-gcc"
|
|
all_platforms="${all_platforms} mips32-linux-gcc"
|
|
all_platforms="${all_platforms} mips64-linux-gcc"
|
|
+all_platforms="${all_platforms} s390-linux-gcc"
|
|
+all_platforms="${all_platforms} s390x-linux-gcc"
|
|
all_platforms="${all_platforms} sparc-solaris-gcc"
|
|
all_platforms="${all_platforms} x86-android-gcc"
|
|
all_platforms="${all_platforms} x86-darwin8-gcc"
|