summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_detokenize.c
diff options
context:
space:
mode:
authorclang-format <noreply@google.com>2017-02-13 20:06:18 -0800
committerJames Zern <jzern@google.com>2017-02-14 12:45:52 -0800
commit4b402746cad6f9dbebbb3c3b79a2da098385d46f (patch)
tree2aaf26124679e2317f031b14d4cba46502c98a01 /vp9/decoder/vp9_detokenize.c
parentf670628ca546883b1989203a38835c27d3e130b7 (diff)
downloadlibvpx-4b402746cad6f9dbebbb3c3b79a2da098385d46f.tar
libvpx-4b402746cad6f9dbebbb3c3b79a2da098385d46f.tar.gz
libvpx-4b402746cad6f9dbebbb3c3b79a2da098385d46f.tar.bz2
libvpx-4b402746cad6f9dbebbb3c3b79a2da098385d46f.zip
apply clang-format
Change-Id: I75e4a9e0b37bd4586f26c8d6c1fa27f3f6ff1bce
Diffstat (limited to 'vp9/decoder/vp9_detokenize.c')
-rw-r--r--vp9/decoder/vp9_detokenize.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/vp9/decoder/vp9_detokenize.c b/vp9/decoder/vp9_detokenize.c
index a441f3add..4bd016dc7 100644
--- a/vp9/decoder/vp9_detokenize.c
+++ b/vp9/decoder/vp9_detokenize.c
@@ -99,9 +99,10 @@ static int decode_coefs(const MACROBLOCKD *xd, PLANE_TYPE type,
vp9_cat6_prob;
const int cat6_bits =
#if CONFIG_VP9_HIGHBITDEPTH
- (xd->bd == VPX_BITS_12) ? 18 : (xd->bd == VPX_BITS_10) ? 16 :
+ (xd->bd == VPX_BITS_12) ? 18
+ : (xd->bd == VPX_BITS_10) ? 16 :
#endif // CONFIG_VP9_HIGHBITDEPTH
- 14;
+ 14;
// Keep value, range, and count as locals. The compiler produces better
// results with the locals than using r directly.
BD_VALUE value = r->value;