summaryrefslogtreecommitdiff
path: root/source/use_case/kws_asr/src/UseCaseHandler.cc
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2021-05-12 08:27:15 +0100
committerIsabella Gottardi <isabella.gottardi@arm.com>2021-05-18 09:48:12 +0100
commit56ee6207c1524ddc4c444c6e48e05eb34105985a (patch)
treed4fc7823961034e95364f44b34fb098b34b99d0d /source/use_case/kws_asr/src/UseCaseHandler.cc
parentf4e2c4736f19d2e06fede715bb49c475f93d79a9 (diff)
downloadml-embedded-evaluation-kit-56ee6207c1524ddc4c444c6e48e05eb34105985a.tar.gz
MLECO-1858: Documentation update
* Removing `_` in front of private functions and member Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com> Change-Id: I5a5d652f9647ebb16d2d2bd16ab980e73f7be3cf
Diffstat (limited to 'source/use_case/kws_asr/src/UseCaseHandler.cc')
-rw-r--r--source/use_case/kws_asr/src/UseCaseHandler.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/use_case/kws_asr/src/UseCaseHandler.cc b/source/use_case/kws_asr/src/UseCaseHandler.cc
index 0560e88..60c0fd2 100644
--- a/source/use_case/kws_asr/src/UseCaseHandler.cc
+++ b/source/use_case/kws_asr/src/UseCaseHandler.cc
@@ -67,8 +67,6 @@ namespace app {
* object.
* @param[in] platform reference to the hal platform object
* @param[in] results vector of classification results to be displayed
- * @param[in] infTimeMs inference time in milliseconds, if available
- * Otherwise, this can be passed in as 0.
* @return true if successful, false otherwise
**/
static bool PresentInferenceResult(hal_platform& platform, std::vector<arm::app::kws::KwsResult>& results);
@@ -78,8 +76,6 @@ namespace app {
* object.
* @param[in] platform reference to the hal platform object
* @param[in] results vector of classification results to be displayed
- * @param[in] infTimeMs inference time in milliseconds, if available
- * Otherwise, this can be passed in as 0.
* @return true if successful, false otherwise
**/
static bool PresentInferenceResult(hal_platform& platform, std::vector<arm::app::asr::AsrResult>& results);
@@ -291,8 +287,8 @@ namespace app {
/**
* @brief Performs the ASR pipeline.
*
- * @param ctx[in/out] pointer to the application context object
- * @param kwsOutput[in] struct containing pointer to audio data where ASR should begin
+ * @param[in,out] ctx pointer to the application context object
+ * @param[in] kwsOutput struct containing pointer to audio data where ASR should begin
* and how much data to process
* @return bool true if pipeline executed without failure
*/