Commit a8785589 authored by Jerome Jiang's avatar Jerome Jiang Committed by Commit Bot

Roll src/third_party/libvpx/source/libvpx/ 94384b5c6..b5d77a48d (12 commits)

https://chromium.googlesource.com/webm/libvpx.git/+log/94384b5c685a..b5d77a48d740

$ git log 94384b5c6..b5d77a48d --date=short --no-merges --format='%ad %ae %s'
2020-11-16 jianj Remove condition on copying svc loopfilter flag
2020-11-11 marpan vp9: Allow for disabling loopfilter per spatial layer
2020-11-05 chengchen Accumulate frame tpl stats and pass through rate control api
2020-10-29 jzern libs.mk: set LC_ALL=C w/egrep invocations
2020-09-20 wtc Add a comment about bitdeptharg and inbitdeptharg
2020-10-27 jzern vp9_ext_ratectrl_test: add missing override
2020-10-27 jianj Add cmd line option to control loopfilter for vpxenc
2020-10-26 angiebird Download bus_352x288_420_f20_b8.yuv properly
2020-10-20 angiebird Small changes of vp9_ext_ratectrl_test.cc
2020-10-16 angiebird Add ref frame info to vpx_rc_encodeframe_info_t
2020-10-12 angiebird Add vpx_rc_status_t
2020-10-15 angiebird Add unit test for vp9_ext_ratectrl

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

Change-Id: I48637e4f7b9d7c505157125afeb9f4823816c903
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2543187Reviewed-by: default avatarJames Zern <jzern@google.com>
Commit-Queue: Jerome Jiang <jianj@google.com>
Cr-Commit-Position: refs/heads/master@{#828255}
parent 45180c7b
...@@ -1163,7 +1163,7 @@ deps = { ...@@ -1163,7 +1163,7 @@ deps = {
}, },
'src/third_party/libvpx/source/libvpx': 'src/third_party/libvpx/source/libvpx':
Var('chromium_git') + '/webm/libvpx.git' + '@' + '94384b5c685ad3baac8989f19ee587eb72093a7f', Var('chromium_git') + '/webm/libvpx.git' + '@' + 'b5d77a48d740e211a130c8e45d9353ef8c154a47',
'src/third_party/libwebm/source': 'src/third_party/libwebm/source':
Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1',
......
...@@ -311,7 +311,7 @@ static_library("libvpx") { ...@@ -311,7 +311,7 @@ static_library("libvpx") {
configs -= [ "//build/config/compiler:default_optimization" ] configs -= [ "//build/config/compiler:default_optimization" ]
configs += [ "//build/config/compiler:optimize_max" ] configs += [ "//build/config/compiler:optimize_max" ]
} }
# As "nasm" does not embed the required LC_BUILD_VERSION section in object # As "nasm" does not embed the required LC_BUILD_VERSION section in object
# files, it is not possible to build optimised version of the code if the # files, it is not possible to build optimised version of the code if the
# target is iOS under "catalyst" environment. This version is not shipped, # target is iOS under "catalyst" environment. This version is not shipped,
......
...@@ -6,9 +6,9 @@ License: BSD ...@@ -6,9 +6,9 @@ License: BSD
License File: source/libvpx/LICENSE License File: source/libvpx/LICENSE
Security Critical: yes Security Critical: yes
Date: Tuesday October 20 2020 Date: Monday November 16 2020
Branch: master Branch: master
Commit: 94384b5c685ad3baac8989f19ee587eb72093a7f Commit: b5d77a48d740e211a130c8e45d9353ef8c154a47
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
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 9 #define VERSION_MINOR 9
#define VERSION_PATCH 0 #define VERSION_PATCH 0
#define VERSION_EXTRA "86-g94384b5c6" #define VERSION_EXTRA "104-gb5d77a48d"
#define VERSION_PACKED \ #define VERSION_PACKED \
((VERSION_MAJOR << 16) | (VERSION_MINOR << 8) | (VERSION_PATCH)) ((VERSION_MAJOR << 16) | (VERSION_MINOR << 8) | (VERSION_PATCH))
#define VERSION_STRING_NOSP "v1.9.0-86-g94384b5c6" #define VERSION_STRING_NOSP "v1.9.0-104-gb5d77a48d"
#define VERSION_STRING " v1.9.0-86-g94384b5c6" #define VERSION_STRING " v1.9.0-104-gb5d77a48d"
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