aom_multi_resolution_encoder.sh: Remove file as example doesn't exist.

It was removed in...50cbe24 "remove more vp8 and vp9 only code."

Change-Id: Ibc7dbdea48bb4ddc0d5e6ac5e6e1af5368551f36
diff --git a/.gitignore b/.gitignore
index bb9f599..600cf9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,7 +35,6 @@
 /examples/simple_decoder
 /examples/simple_encoder
 /examples/twopass_encoder
-/examples/aom_multi_resolution_encoder
 /examples/aomcx_set_ref
 /examples/av1_lossless_encoder
 /examples/av1_spatial_scalable_encoder
diff --git a/test/aom_multi_resolution_encoder.sh b/test/aom_multi_resolution_encoder.sh
deleted file mode 100755
index 53d415c..0000000
--- a/test/aom_multi_resolution_encoder.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/sh
-## Copyright (c) 2016, Alliance for Open Media. All rights reserved
-##
-## This source code is subject to the terms of the BSD 2 Clause License and
-## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
-## was not distributed with this source code in the LICENSE file, you can
-## obtain it at www.aomedia.org/license/software. If the Alliance for Open
-## Media Patent License 1.0 was not distributed with this source code in the
-## PATENTS file, you can obtain it at www.aomedia.org/license/patent.
-##
-## This file tests the libaom aom_multi_resolution_encoder example. To add new
-## tests to this file, do the following:
-##   1. Write a shell function (this is your test).
-##   2. Add the function to aom_mre_tests (on a new line).
-##
-. $(dirname $0)/tools_common.sh
-
-# Environment check: $YUV_RAW_INPUT is required.
-aom_multi_resolution_encoder_verify_environment() {
-  if [ "$(aom_config_option_enabled CONFIG_MULTI_RES_ENCODING)" = "yes" ]; then
-    if [ ! -e "${YUV_RAW_INPUT}" ]; then
-      elog "Libaom test data must exist in LIBAOM_TEST_DATA_PATH."
-      return 1
-    fi
-    local readonly app="aom_multi_resolution_encoder"
-    if [ -z "$(aom_tool_path "${app}")" ]; then
-      elog "${app} not found. It must exist in LIBAOM_BIN_PATH or its parent."
-      return 1
-    fi
-  fi
-}
-
-# Runs aom_multi_resolution_encoder. Simply forwards all arguments to
-# aom_multi_resolution_encoder after building path to the executable.
-aom_mre() {
-  local readonly encoder="$(aom_tool_path aom_multi_resolution_encoder)"
-  if [ ! -x "${encoder}" ]; then
-    elog "${encoder} does not exist or is not executable."
-    return 1
-  fi
-
-  eval "${AOM_TEST_PREFIX}" "${encoder}" "$@" ${devnull}
-}
-
-aom_multi_resolution_encoder_three_formats() {
-  local readonly output_files="${AOM_TEST_OUTPUT_DIR}/aom_mre_0.ivf
-                               ${AOM_TEST_OUTPUT_DIR}/aom_mre_1.ivf
-                               ${AOM_TEST_OUTPUT_DIR}/aom_mre_2.ivf"
-
-  if [ "$(aom_config_option_enabled CONFIG_MULTI_RES_ENCODING)" = "yes" ]; then
-    if [ "$(aom_encode_available)" = "yes" ]; then
-      # Param order:
-      #  Input width
-      #  Input height
-      #  Input file path
-      #  Output file names
-      #  Output PSNR
-      aom_mre "${YUV_RAW_INPUT_WIDTH}" \
-        "${YUV_RAW_INPUT_HEIGHT}" \
-        "${YUV_RAW_INPUT}" \
-        ${output_files} \
-        0
-
-      for output_file in ${output_files}; do
-        if [ ! -e "${output_file}" ]; then
-          elog "Missing output file: ${output_file}"
-          return 1
-        fi
-      done
-    fi
-  fi
-}
-
-aom_mre_tests="aom_multi_resolution_encoder_three_formats"
-run_tests aom_multi_resolution_encoder_verify_environment "${aom_mre_tests}"
-