]> granicus.if.org Git - libvpx/blob - test/vpxdec.sh
vpxdec.sh: Refactor vpxdec().
[libvpx] / test / vpxdec.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 vpxdec. To add new tests to this file, do the following:
12 ##    1. Write a shell function (this is your test).
13 ##    2. Add the function to vpxdec_tests (on a new line).
14 ##
15 . $(dirname $0)/tools_common.sh
16
17 # Environment check: Make sure input is available.
18 vpxdec_verify_environment() {
19   if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_WEBM_FILE}" ]; then
20     echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
21     return 1
22   fi
23 }
24
25 # Echoes yes to stdout when vpxdec exists according to vpx_tool_available().
26 vpxdec_available() {
27   [ -n "$(vpx_tool_available vpxdec)" ] && echo yes
28 }
29
30 # Wrapper function for running vpxdec with pipe input. Requires that
31 # LIBVPX_BIN_PATH points to the directory containing vpxdec. $1 is used as the
32 # input file path and shifted away. All remaining parameters are passed through
33 # to vpxdec.
34 vpxdec_pipe() {
35   local decoder="${LIBVPX_BIN_PATH}/vpxdec${VPX_TEST_EXE_SUFFIX}"
36   local input="$1"
37   shift
38   cat "${input}" | eval "${VPX_TEST_PREFIX}" "${decoder}" - "$@" ${devnull}
39 }
40
41 # Wrapper function for running vpxdec. Requires that LIBVPX_BIN_PATH points to
42 # the directory containing vpxdec. $1 one is used as the input file path and
43 # shifted away. All remaining parameters are passed through to vpxdec.
44 vpxdec() {
45   local decoder="${LIBVPX_BIN_PATH}/vpxdec${VPX_TEST_EXE_SUFFIX}"
46   local input="${1}"
47   shift
48   eval "${VPX_TEST_PREFIX}" "${decoder}" "$input" "$@" ${devnull}
49 }
50
51 vpxdec_can_decode_vp8() {
52   if [ "$(vpxdec_available)" = "yes" ] && \
53      [ "$(vp8_decode_available)" = "yes" ]; then
54     echo yes
55   fi
56 }
57
58 vpxdec_can_decode_vp9() {
59   if [ "$(vpxdec_available)" = "yes" ] && \
60      [ "$(vp9_decode_available)" = "yes" ]; then
61     echo yes
62   fi
63 }
64
65 vpxdec_vp8_ivf() {
66   if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then
67     vpxdec "${VP8_IVF_FILE}" --summary --noblit
68   fi
69 }
70
71 vpxdec_vp8_ivf_pipe_input() {
72   if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then
73     vpxdec_pipe "${VP8_IVF_FILE}" --summary --noblit
74   fi
75 }
76
77 vpxdec_vp9_webm() {
78   if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \
79      [ "$(webm_io_available)" = "yes" ]; then
80     vpxdec "${VP9_WEBM_FILE}" --summary --noblit
81   fi
82 }
83
84 vpxdec_tests="vpxdec_vp8_ivf
85               vpxdec_vp8_ivf_pipe_input
86               vpxdec_vp9_webm"
87
88 run_tests vpxdec_verify_environment "${vpxdec_tests}"