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

Unified Diff: webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py

Issue 2793903006: Style fix and docstring for the APM QA Python tool (Closed)
Patch Set: _ prefix for internal use functions Created 3 years, 8 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/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py
diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py
index f5454d92064d761821724983a9959269ba15d8ed..3c618b460581a06f2b5e223974970879447bd747 100644
--- a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py
+++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/audioproc_wrapper.py
@@ -36,7 +36,7 @@ class AudioProcWrapper(object):
def output_filepath(self):
return self._output_signal_filepath
- def run(self, config_filepath, input_filepath, output_path):
+ def Run(self, config_filepath, input_filepath, output_path):
"""Run audioproc_f.
Args:
@@ -57,7 +57,7 @@ class AudioProcWrapper(object):
return
# Load configuration.
- self._config = data_access.AudioProcConfigFile.load(config_filepath)
+ self._config = data_access.AudioProcConfigFile.Load(config_filepath)
# Set remaining parametrs.
self._config['-i'] = self._input_signal_filepath

Powered by Google App Engine
This is Rietveld 408576698