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

Unified Diff: webrtc/examples/androidtests/video_quality_loopback_test.py

Issue 2715933003: Add PESQ precompiled tool for audio quality testing (Closed)
Patch Set: Clarify the purpose of the script for downloading tools Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools-webrtc/video_quality_toolchain/download.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/androidtests/video_quality_loopback_test.py
diff --git a/webrtc/examples/androidtests/video_quality_loopback_test.py b/webrtc/examples/androidtests/video_quality_loopback_test.py
index dd112750b6f8583cb38d5e9d1a4aee0eeccc48ec..a6115f31e3ddc822fc4206f09ce3fa678060819d 100755
--- a/webrtc/examples/androidtests/video_quality_loopback_test.py
+++ b/webrtc/examples/androidtests/video_quality_loopback_test.py
@@ -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,
« no previous file with comments | « tools-webrtc/video_quality_toolchain/download.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698