Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / libvpx / source / libvpx / test / postproc.sh
1 #!/bin/sh
2 ##
3 ##  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
4 ##
5 ##  Use of this source code is governed by a BSD-style license
6 ##  that can be found in the LICENSE file in the root of the source
7 ##  tree. An additional intellectual property rights grant can be found
8 ##  in the file PATENTS.  All contributing project authors may
9 ##  be found in the AUTHORS file in the root of the source tree.
10 ##
11 ##  This file tests the libvpx postproc example code. To add new tests to this
12 ##  file, do the following:
13 ##    1. Write a shell function (this is your test).
14 ##    2. Add the function to postproc_tests (on a new line).
15 ##
16 . $(dirname $0)/tools_common.sh
17
18 # Environment check: Make sure input is available:
19 #   $VP8_IVF_FILE and $VP9_IVF_FILE are required.
20 postproc_verify_environment() {
21   if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_IVF_FILE}" ]; then
22     echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
23     return 1
24   fi
25 }
26
27 # Runs postproc using $1 as input file. $2 is the codec name, and is used
28 # solely to name the output file.
29 postproc() {
30   local decoder="${LIBVPX_BIN_PATH}/postproc${VPX_TEST_EXE_SUFFIX}"
31   local input_file="$1"
32   local codec="$2"
33   local output_file="${VPX_TEST_OUTPUT_DIR}/postproc_${codec}.raw"
34
35   [ -x "${decoder}" ] || return 1
36
37   eval "${decoder}" "${input_file}" "${output_file}" ${devnull}
38
39   [ -e "${output_file}" ] || return 1
40 }
41
42 postproc_vp8() {
43   if [ "$(vp8_decode_available)" = "yes" ]; then
44     postproc "${VP8_IVF_FILE}" vp8 || return 1
45   fi
46 }
47
48 postproc_vp9() {
49   if [ "$(vpx_config_option_enabled CONFIG_VP9_POSTPROC)" = "yes" ]; then
50     if [ "$(vp9_decode_available)" = "yes" ]; then
51       postproc "${VP9_IVF_FILE}" vp9 || return 1
52     fi
53   fi
54 }
55
56 postproc_tests="postproc_vp8
57                 postproc_vp9"
58
59 run_tests postproc_verify_environment "${postproc_tests}"