summaryrefslogtreecommitdiff
path: root/vp8/encoder/rdopt.c
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2018-01-12 09:12:42 -0800
committerJohann <johannkoenig@google.com>2018-01-18 12:37:58 -0800
commitf95bf1db50cdffde0d37eeb768a9955fc423684c (patch)
tree7d7277d753ad7927c762273bdfd239fbd788cda4 /vp8/encoder/rdopt.c
parent97acbbb7018deef26a52a929e61367aba5bc5118 (diff)
downloadlibvpx-f95bf1db50cdffde0d37eeb768a9955fc423684c.tar
libvpx-f95bf1db50cdffde0d37eeb768a9955fc423684c.tar.gz
libvpx-f95bf1db50cdffde0d37eeb768a9955fc423684c.tar.bz2
libvpx-f95bf1db50cdffde0d37eeb768a9955fc423684c.zip
clang-format v5.0.0 vp8/
Allow*OnASingleLine appears to no longer apply to typedef structs. Adjust closing parenthesis/opening brace on functions. Remove trailing commas to keep multiple elements on one line. Change-Id: I6e535a8ddb15c9b3de8216ce8ddb2a18241af46c
Diffstat (limited to 'vp8/encoder/rdopt.c')
-rw-r--r--vp8/encoder/rdopt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index e210b4410..fa5dde15d 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -770,9 +770,9 @@ static void rd_pick_intra_mbuv_mode(MACROBLOCK *x, int *rate,
vp8_quantize_mbuv(x);
rate_to = rd_cost_mbuv(x);
- this_rate = rate_to +
- x->intra_uv_mode_cost[xd->frame_type]
- [xd->mode_info_context->mbmi.uv_mode];
+ this_rate =
+ rate_to + x->intra_uv_mode_cost[xd->frame_type]
+ [xd->mode_info_context->mbmi.uv_mode];
this_distortion = vp8_mbuverror(x) / 4;