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

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

Issue 2715933003: Add PESQ precompiled tool for audio quality testing (Closed)
Patch Set: 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
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..1165e4bfea1187883d80f9a66922ad9f2d6c9a17 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.py')
+ _RunCommand([sys.executable, download_script, toolchain_dir])
kjellander_webrtc 2017/02/27 07:05:13 Then you'll just skip this argument too.
# Run the Espresso code.
test_script = os.path.join(build_dir_android,
« tools-webrtc/download.py ('K') | « 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