From daa4ba8d1940d17d257f331a732bc00d559a39b5 Mon Sep 17 00:00:00 2001 From: Sarah Parker Date: Thu, 18 Aug 2016 13:03:35 -0700 Subject: [PATCH] Disable global motion experiment when incompatible experiments are enabled This is temporary until the global motion experiment is made to work with ext_inter and dual_filter. Change-Id: I73624ca6f536fd98218d7e07bcd7a2c1e6f5aebd --- configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure b/configure index 633e3edba..44f7c238b 100755 --- a/configure +++ b/configure @@ -434,6 +434,12 @@ post_process_cmdline() { for c in ${CODECS}; do enabled ${c} && enable_feature ${c##*_}s done + + if enabled global_motion && (enabled ext_inter || enabled dual_filter); then + log_echo "global_motion currently not compatible with ext_inter" + log_echo "and dual_filter. Disabling global_motion." + disable_feature global_motion + fi } -- GitLab