]> granicus.if.org Git - libvpx/commitdiff
Minor code style refactoring
authorYunqing Wang <yunqingwang@google.com>
Mon, 13 Feb 2017 20:59:01 +0000 (12:59 -0800)
committerYunqing Wang <yunqingwang@google.com>
Mon, 13 Feb 2017 20:59:01 +0000 (12:59 -0800)
Change-Id: I20107693d0a87e08a10520bfb573ff3dcef69fdb

vp9/encoder/vp9_ratectrl.c

index 03bc720a95880397db1d503f7d8fdf2a71bff6d0..0b869a8277c096b7c4bee1ff5c1badff3322e2bd 100644 (file)
@@ -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;
 }