Add PESQ precompiled tool for audio quality testing

BUG=webrtc:7229

Review-Url: https://codereview.webrtc.org/2715933003
Cr-Commit-Position: refs/heads/master@{#17055}
This commit is contained in:
oprypin
2017-03-06 02:23:34 -08:00
committed by Commit bot
parent 518161bde5
commit 3b2fb203fd
9 changed files with 62 additions and 42 deletions

View File

@ -73,12 +73,12 @@ def main():
_RunCommand(['gn', 'gen', build_dir_x86])
_RunCommand(['ninja', '-C', build_dir_x86, 'frame_analyzer'])
toolchain_dir = os.path.join(SRC_DIR, 'tools-webrtc',
'video_quality_toolchain')
tools_dir = os.path.join(SRC_DIR, 'tools-webrtc')
toolchain_dir = os.path.join(tools_dir, 'video_quality_toolchain')
# Download ffmpeg and zxing.
download_script = os.path.join(toolchain_dir, 'download.py')
_RunCommand([sys.executable, download_script])
download_script = os.path.join(tools_dir, 'download_tools.py')
_RunCommand([sys.executable, download_script, toolchain_dir])
# Run the Espresso code.
test_script = os.path.join(build_dir_android,