Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: source/libvpx/test/vpxdec.sh

Issue 478033002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/test/vpx_scale_test.cc ('k') | source/libvpx/test/vpxenc.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 ## 2 ##
3 ## Copyright (c) 2014 The WebM project authors. All Rights Reserved. 3 ## Copyright (c) 2014 The WebM project authors. All Rights Reserved.
4 ## 4 ##
5 ## Use of this source code is governed by a BSD-style license 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 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 7 ## tree. An additional intellectual property rights grant can be found
8 ## in the file PATENTS. All contributing project authors may 8 ## in the file PATENTS. All contributing project authors may
9 ## be found in the AUTHORS file in the root of the source tree. 9 ## be found in the AUTHORS file in the root of the source tree.
10 ## 10 ##
11 ## This file tests vpxdec. To add new tests to this file, do the following: 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). 12 ## 1. Write a shell function (this is your test).
13 ## 2. Add the function to vpxdec_tests (on a new line). 13 ## 2. Add the function to vpxdec_tests (on a new line).
14 ## 14 ##
15 . $(dirname $0)/tools_common.sh 15 . $(dirname $0)/tools_common.sh
16 16
17 # Environment check: Make sure input is available. 17 # Environment check: Make sure input is available.
18 vpxdec_verify_environment() { 18 vpxdec_verify_environment() {
19 if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_WEBM_FILE}" ]; then 19 if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_WEBM_FILE}" ]; then
20 echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH." 20 elog "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
21 return 1
22 fi
23 if [ -z "$(vpx_tool_path vpxdec)" ]; then
24 elog "vpxdec not found. It must exist in LIBVPX_BIN_PATH or its parent."
21 return 1 25 return 1
22 fi 26 fi
23 } 27 }
24 28
29 # Wrapper function for running vpxdec with pipe input. Requires that
30 # LIBVPX_BIN_PATH points to the directory containing vpxdec. $1 is used as the
31 # input file path and shifted away. All remaining parameters are passed through
32 # to vpxdec.
33 vpxdec_pipe() {
34 local readonly decoder="$(vpx_tool_path vpxdec)"
35 local readonly input="$1"
36 shift
37 cat "${input}" | eval "${VPX_TEST_PREFIX}" "${decoder}" - "$@" ${devnull}
38 }
39
40 # Wrapper function for running vpxdec. Requires that LIBVPX_BIN_PATH points to
41 # the directory containing vpxdec. $1 one is used as the input file path and
42 # shifted away. All remaining parameters are passed through to vpxdec.
43 vpxdec() {
44 local readonly decoder="$(vpx_tool_path vpxdec)"
45 local readonly input="$1"
46 shift
47 eval "${VPX_TEST_PREFIX}" "${decoder}" "$input" "$@" ${devnull}
48 }
49
25 vpxdec_can_decode_vp8() { 50 vpxdec_can_decode_vp8() {
26 if [ "$(vpxdec_available)" = "yes" ] && \ 51 if [ "$(vp8_decode_available)" = "yes" ]; then
27 [ "$(vp8_decode_available)" = "yes" ]; then
28 echo yes 52 echo yes
29 fi 53 fi
30 } 54 }
31 55
32 vpxdec_can_decode_vp9() { 56 vpxdec_can_decode_vp9() {
33 if [ "$(vpxdec_available)" = "yes" ] && \ 57 if [ "$(vp9_decode_available)" = "yes" ]; then
34 [ "$(vp9_decode_available)" = "yes" ]; then
35 echo yes 58 echo yes
36 fi 59 fi
37 } 60 }
38 61
39 vpxdec_vp8_ivf() { 62 vpxdec_vp8_ivf() {
40 if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then 63 if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then
41 vpxdec "${VP8_IVF_FILE}" 64 vpxdec "${VP8_IVF_FILE}" --summary --noblit
42 fi 65 fi
43 } 66 }
44 67
45 vpxdec_vp8_ivf_pipe_input() { 68 vpxdec_vp8_ivf_pipe_input() {
46 if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then 69 if [ "$(vpxdec_can_decode_vp8)" = "yes" ]; then
47 vpxdec "${VP8_IVF_FILE}" - 70 vpxdec_pipe "${VP8_IVF_FILE}" --summary --noblit
48 fi 71 fi
49 } 72 }
50 73
51 vpxdec_vp9_webm() { 74 vpxdec_vp9_webm() {
52 if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \ 75 if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \
53 [ "$(webm_io_available)" = "yes" ]; then 76 [ "$(webm_io_available)" = "yes" ]; then
54 vpxdec "${VP9_WEBM_FILE}" 77 vpxdec "${VP9_WEBM_FILE}" --summary --noblit
55 fi 78 fi
56 } 79 }
57 80
58 vpxdec_tests="vpxdec_vp8_ivf 81 vpxdec_tests="vpxdec_vp8_ivf
59 vpxdec_vp8_ivf_pipe_input 82 vpxdec_vp8_ivf_pipe_input
60 vpxdec_vp9_webm" 83 vpxdec_vp9_webm"
61 84
62 run_tests vpxdec_verify_environment "${vpxdec_tests}" 85 run_tests vpxdec_verify_environment "${vpxdec_tests}"
OLDNEW
« no previous file with comments | « source/libvpx/test/vpx_scale_test.cc ('k') | source/libvpx/test/vpxenc.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698