ref: bf833ff771b6d531c53985d7c36c126bdc8a838c
parent: 69a6506a8ff81dc3d222df21d19812e3125779dd
parent: 561e01e7103a2c20e269b74e068113507ea2427e
author: Jingning Han <jingning@google.com>
date: Wed Jun 20 17:00:27 EDT 2018
Merge "Disable tpl model in high bd route"
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -5670,6 +5670,15 @@
int tpl_group_frames = 0;
int frame_idx;
+ // TODO(jingning): Make the model support high bit-depth route.
+#if CONFIG_VP9_HIGHBITDEPTH
+ (void)gf_picture;
+ (void)gf_group;
+ (void)tpl_group_frames;
+ (void)frame_idx;
+ return;
+#endif
+
init_gop_frames(cpi, gf_picture, gf_group, &tpl_group_frames);
init_tpl_stats(cpi);