From: James Zern Date: Mon, 13 Feb 2017 19:29:39 +0000 (-0800) Subject: cosmetics,vp9_ratectrl: apply clang-format X-Git-Tag: v1.7.0~735^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c4ea94210c9f2fff45b680f362d8cfd2c64ec3e;p=libvpx cosmetics,vp9_ratectrl: apply clang-format broken since: c3f095c8b Merge "Fix to avoid abrupt relaxation of max qindex in recode path" 5f21aba4b Fix to avoid abrupt relaxation of max qindex in recode path the original change pre-dated the addition of .clang-format Change-Id: If5e399d9a805bcad9147360b13b36fbc8c560a7c --- diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c index 03bc720a9..0b869a827 100644 --- a/vp9/encoder/vp9_ratectrl.c +++ b/vp9/encoder/vp9_ratectrl.c @@ -170,11 +170,9 @@ int vp9_convert_q_to_qindex(double q_val, vpx_bit_depth_t bit_depth) { int i; for (i = 0; i < QINDEX_RANGE; ++i) - if (vp9_convert_qindex_to_q(i, bit_depth) >= q_val) - break; + if (vp9_convert_qindex_to_q(i, bit_depth) >= q_val) break; - if (i == QINDEX_RANGE) - i--; + if (i == QINDEX_RANGE) i--; return i; }