external/libvpx: cherry-pick -Wunreachable-code-loop-increment fix
vpx_codec_enc_config_default: rm unnecessary loop
quiets -Wunreachable-code-loop-increment, present since:
e57f388bc vpx_codec_enc_config_default: disable 'usage'
as g_usage was never supported for vp8/9 this was always a single
iteration. if additional usages are added in the future similar to av1
this can be restored.
Bug: b/150166387
Test: compiles
Change-Id: Iab8a1037950a9b2c006bd18b638fce77add199e8
(cherry picked from commit 6327de3f623106165844bacb541366c27eac8d07)
diff --git a/README.version b/README.version
index d11ef9a..1f4dd4a 100644
--- a/README.version
+++ b/README.version
@@ -7,3 +7,4 @@
0f3fe088f vp8_decode: add missing vpx_clear_system_state
9cfcac1cb vp8,GetSigned: silence unsigned int overflow warning
c713f8461 move common attribute defs to compiler_attributes.h
+ 223645aa8 vpx_codec_enc_config_default: rm unnecessary loop