Commit 01cfef7b authored by Jerome Jiang's avatar Jerome Jiang Committed by Commit Bot

Roll src/third_party/libvpx/source/libvpx/ e188b5435..137d99c91 (54 commits)

https://chromium.googlesource.com/webm/libvpx.git/+log/e188b5435de7..137d99c91fc7

$ git log e188b5435..137d99c91 --date=short --no-merges --format='%ad %ae %s'
2018-10-15 huisu ML_VAR_PARTITION: enable at speed 5
2018-10-18 chiyotsai Changes 4-tap SSSE3 filter to 8-tap AVX2 filter.
2018-10-17 chiyotsai Add SSSE3 support for 4-tap interpolation filter
2018-10-17 jingning Replace MAX_LAG_BUFFERS with MAX_ARF_GOP_SIZE for gop size
2018-10-17 angiebird Add do_motion_search
2018-10-17 angiebird Preserve code of doing mv search in raster order
2018-10-17 huisu Enable rect partition search for HBD at speed 1
2018-10-16 chiyotsai Adds SSE2 support for interpolation filter for width 4 and 8
2018-10-17 urvang For keyframe-only coding do not boost in q mode
2018-10-16 chiyotsai Refactor SSE2 Code for 4-tap interpolation filter on width 16.
2018-10-12 yunqingwang Optimize vp9_highbd_temporal_filter_apply_c
2018-10-16 chiyotsai Add SSE2 support for 4-tap interpolation filter for width 16.
2018-10-16 angiebird Variant implementation of changing mv search order
2018-10-15 angiebird Add feature_score_loc_sort
2018-10-12 angiebird Init mv_[dist/cost]_sum in init_tpl_stats
2018-10-10 angiebird Change mv search order according to feature_score
2018-10-16 huisu Fix a bug in ml_prune_rect_partition()
2018-10-16 jingning Refactor tpl dependency model to support multi-layer ARF updates
2018-10-16 yunqingwang Fix the filter tap calculation in mips optimizations
2018-10-15 jianj fix output file check in vpxenc tests script.
(...)

Created with:
  roll-dep src/third_party/libvpx/source/libvpx
R=johannkoenig@google.com

Change-Id: Id5bc4c9f32a0991bc6b162f721869e30d210ccf7
Reviewed-on: https://chromium-review.googlesource.com/c/1294671Reviewed-by: default avatarJohann Koenig <johannkoenig@google.com>
Commit-Queue: Jerome Jiang <jianj@google.com>
Cr-Commit-Position: refs/heads/master@{#601774}
parent c9749849
...@@ -903,7 +903,7 @@ deps = { ...@@ -903,7 +903,7 @@ deps = {
}, },
'src/third_party/libvpx/source/libvpx': 'src/third_party/libvpx/source/libvpx':
Var('chromium_git') + '/webm/libvpx.git' + '@' + 'e188b5435de71bcd602c378f1ac0441111f0f915', Var('chromium_git') + '/webm/libvpx.git' + '@' + '137d99c91fc7f03b6b886e5ac342ee4ef7f875ec',
'src/third_party/libwebm/source': 'src/third_party/libwebm/source':
Var('chromium_git') + '/webm/libwebm.git' + '@' + 'e4931ebc0a816458c18a6734e91a4d1b5acd5c56', Var('chromium_git') + '/webm/libwebm.git' + '@' + 'e4931ebc0a816458c18a6734e91a4d1b5acd5c56',
......
...@@ -5,9 +5,9 @@ License: BSD ...@@ -5,9 +5,9 @@ License: BSD
License File: source/libvpx/LICENSE License File: source/libvpx/LICENSE
Security Critical: yes Security Critical: yes
Date: Thursday October 11 2018 Date: Friday October 19 2018
Branch: master Branch: master
Commit: e188b5435de71bcd602c378f1ac0441111f0f915 Commit: 137d99c91fc7f03b6b886e5ac342ee4ef7f875ec
Description: Description:
Contains the sources used to compile libvpx binaries used by Google Chrome and Contains the sources used to compile libvpx binaries used by Google Chrome and
......
...@@ -323,6 +323,7 @@ libvpx_srcs_x86 = [ ...@@ -323,6 +323,7 @@ libvpx_srcs_x86 = [
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/bitdepth_conversion_sse2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/bitdepth_conversion_sse2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_avx2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_avx2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_sse2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_ssse3.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_ssse3.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h",
...@@ -439,6 +440,7 @@ libvpx_srcs_x86_sse2 = [ ...@@ -439,6 +440,7 @@ libvpx_srcs_x86_sse2 = [
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/quantize_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/quantize_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/sum_squares_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/sum_squares_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/variance_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/variance_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/vpx_subpixel_4t_intrin_sse2.c",
] ]
libvpx_srcs_x86_sse3 = [] libvpx_srcs_x86_sse3 = []
libvpx_srcs_x86_ssse3 = [ libvpx_srcs_x86_ssse3 = [
...@@ -797,6 +799,7 @@ libvpx_srcs_x86_64 = [ ...@@ -797,6 +799,7 @@ libvpx_srcs_x86_64 = [
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/bitdepth_conversion_sse2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/bitdepth_conversion_sse2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_avx2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_avx2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_sse2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_ssse3.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve_ssse3.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h",
...@@ -918,6 +921,7 @@ libvpx_srcs_x86_64_sse2 = [ ...@@ -918,6 +921,7 @@ libvpx_srcs_x86_64_sse2 = [
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/quantize_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/quantize_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/sum_squares_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/sum_squares_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/variance_sse2.c", "//third_party/libvpx/source/libvpx/vpx_dsp/x86/variance_sse2.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/x86/vpx_subpixel_4t_intrin_sse2.c",
] ]
libvpx_srcs_x86_64_sse3 = [] libvpx_srcs_x86_64_sse3 = []
libvpx_srcs_x86_64_ssse3 = [ libvpx_srcs_x86_64_ssse3 = [
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 7 #define VERSION_MINOR 7
#define VERSION_PATCH 0 #define VERSION_PATCH 0
#define VERSION_EXTRA "1132-ge188b5435" #define VERSION_EXTRA "1227-g137d99c91"
#define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH)) #define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH))
#define VERSION_STRING_NOSP "v1.7.0-1132-ge188b5435" #define VERSION_STRING_NOSP "v1.7.0-1227-g137d99c91"
#define VERSION_STRING " v1.7.0-1132-ge188b5435" #define VERSION_STRING " v1.7.0-1227-g137d99c91"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment