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

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

Issue 1169543007: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « source/libvpx/test/test-data.sha1 ('k') | source/libvpx/test/variance_test.cc » ('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 ##
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 VP9_IVF_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-09-subpixel-00.ivf" 401 VP9_IVF_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-09-subpixel-00.ivf"
402 402
403 VP9_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-00-quantizer-00.webm" 403 VP9_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-00-quantizer-00.webm"
404 VP9_FPM_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-07-frame_parallel-1.webm" 404 VP9_FPM_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-07-frame_parallel-1.webm"
405 VP9_LT_50_FRAMES_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-02-size-32x08.webm" 405 VP9_LT_50_FRAMES_WEBM_FILE="${LIBVPX_TEST_DATA_PATH}/vp90-2-02-size-32x08.webm"
406 406
407 YUV_RAW_INPUT="${LIBVPX_TEST_DATA_PATH}/hantro_collage_w352h288.yuv" 407 YUV_RAW_INPUT="${LIBVPX_TEST_DATA_PATH}/hantro_collage_w352h288.yuv"
408 YUV_RAW_INPUT_WIDTH=352 408 YUV_RAW_INPUT_WIDTH=352
409 YUV_RAW_INPUT_HEIGHT=288 409 YUV_RAW_INPUT_HEIGHT=288
410 410
411 Y4M_NOSQ_PAR_INPUT="${LIBVPX_TEST_DATA_PATH}/park_joy_90p_8_420_a10-1.y4m"
412
411 # Setup a trap function to clean up after tests complete. 413 # Setup a trap function to clean up after tests complete.
412 trap cleanup EXIT 414 trap cleanup EXIT
413 415
414 vlog "$(basename "${0%.*}") test configuration: 416 vlog "$(basename "${0%.*}") test configuration:
415 LIBVPX_BIN_PATH=${LIBVPX_BIN_PATH} 417 LIBVPX_BIN_PATH=${LIBVPX_BIN_PATH}
416 LIBVPX_CONFIG_PATH=${LIBVPX_CONFIG_PATH} 418 LIBVPX_CONFIG_PATH=${LIBVPX_CONFIG_PATH}
417 LIBVPX_TEST_DATA_PATH=${LIBVPX_TEST_DATA_PATH} 419 LIBVPX_TEST_DATA_PATH=${LIBVPX_TEST_DATA_PATH}
418 VP8_IVF_FILE=${VP8_IVF_FILE} 420 VP8_IVF_FILE=${VP8_IVF_FILE}
419 VP9_IVF_FILE=${VP9_IVF_FILE} 421 VP9_IVF_FILE=${VP9_IVF_FILE}
420 VP9_WEBM_FILE=${VP9_WEBM_FILE} 422 VP9_WEBM_FILE=${VP9_WEBM_FILE}
421 VPX_TEST_EXE_SUFFIX=${VPX_TEST_EXE_SUFFIX} 423 VPX_TEST_EXE_SUFFIX=${VPX_TEST_EXE_SUFFIX}
422 VPX_TEST_FILTER=${VPX_TEST_FILTER} 424 VPX_TEST_FILTER=${VPX_TEST_FILTER}
423 VPX_TEST_LIST_TESTS=${VPX_TEST_LIST_TESTS} 425 VPX_TEST_LIST_TESTS=${VPX_TEST_LIST_TESTS}
424 VPX_TEST_OUTPUT_DIR=${VPX_TEST_OUTPUT_DIR} 426 VPX_TEST_OUTPUT_DIR=${VPX_TEST_OUTPUT_DIR}
425 VPX_TEST_PREFIX=${VPX_TEST_PREFIX} 427 VPX_TEST_PREFIX=${VPX_TEST_PREFIX}
426 VPX_TEST_RUN_DISABLED_TESTS=${VPX_TEST_RUN_DISABLED_TESTS} 428 VPX_TEST_RUN_DISABLED_TESTS=${VPX_TEST_RUN_DISABLED_TESTS}
427 VPX_TEST_SHOW_PROGRAM_OUTPUT=${VPX_TEST_SHOW_PROGRAM_OUTPUT} 429 VPX_TEST_SHOW_PROGRAM_OUTPUT=${VPX_TEST_SHOW_PROGRAM_OUTPUT}
428 VPX_TEST_TEMP_ROOT=${VPX_TEST_TEMP_ROOT} 430 VPX_TEST_TEMP_ROOT=${VPX_TEST_TEMP_ROOT}
429 VPX_TEST_VERBOSE_OUTPUT=${VPX_TEST_VERBOSE_OUTPUT} 431 VPX_TEST_VERBOSE_OUTPUT=${VPX_TEST_VERBOSE_OUTPUT}
430 YUV_RAW_INPUT=${YUV_RAW_INPUT} 432 YUV_RAW_INPUT=${YUV_RAW_INPUT}
431 YUV_RAW_INPUT_WIDTH=${YUV_RAW_INPUT_WIDTH} 433 YUV_RAW_INPUT_WIDTH=${YUV_RAW_INPUT_WIDTH}
432 YUV_RAW_INPUT_HEIGHT=${YUV_RAW_INPUT_HEIGHT}" 434 YUV_RAW_INPUT_HEIGHT=${YUV_RAW_INPUT_HEIGHT}
435 Y4M_NOSQ_PAR_INPUT=${Y4M_NOSQ_PAR_INPUT}"
433 436
434 fi # End $VPX_TEST_TOOLS_COMMON_SH pseudo include guard. 437 fi # End $VPX_TEST_TOOLS_COMMON_SH pseudo include guard.
OLDNEW
« no previous file with comments | « source/libvpx/test/test-data.sha1 ('k') | source/libvpx/test/variance_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698