summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorPeter de Rivaz <peter.derivaz@gmail.com>2014-12-04 10:51:10 +0000
committerDeb Mukherjee <debargha@google.com>2014-12-04 15:48:42 -0800
commita306bd8274763e5aa684dd33aaf3fb0e2871310f (patch)
tree0e3a1a1698c97d758fb6c4c28eb244f208e3f55e /vp9/encoder
parent7cb7588b1e548b6bab7d4be810876af6cfc7539a (diff)
downloadlibvpx-a306bd8274763e5aa684dd33aaf3fb0e2871310f.tar
libvpx-a306bd8274763e5aa684dd33aaf3fb0e2871310f.tar.gz
libvpx-a306bd8274763e5aa684dd33aaf3fb0e2871310f.tar.bz2
libvpx-a306bd8274763e5aa684dd33aaf3fb0e2871310f.zip
Use the RTC optimizations when in high bitdepth mode.
Change 72193 made the encoder behave differently when configured with and without high bitdepth. This change means the same algorithm is used for both. Change-Id: I707a44a94afca773a9e0c2f7ebeeea83030257c5
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_encodemb.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/vp9/encoder/vp9_encodemb.c b/vp9/encoder/vp9_encodemb.c
index ef5bb5ace..9b2165be6 100644
--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -652,10 +652,6 @@ static void encode_block(int plane, int block, BLOCK_SIZE plane_bsize,
return;
}
-#if CONFIG_VP9_HIGHBITDEPTH
- if (!x->skip_recode)
- vp9_xform_quant(x, plane, block, plane_bsize, tx_size);
-#else
if (!x->skip_recode) {
if (x->quant_fp) {
// Encoding process for rtc mode
@@ -687,7 +683,6 @@ static void encode_block(int plane, int block, BLOCK_SIZE plane_bsize,
}
}
}
-#endif
if (x->optimize && (!x->skip_recode || !x->skip_optimize)) {
const int ctx = combine_entropy_contexts(*a, *l);