blob: 60e27fc9fe75ac55bd38f406e1c0b5ecb2810e92 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Richard Burtonf32a86a2022-11-15 11:46:11 +00002 * SPDX-FileCopyrightText: Copyright 2021 Arm Limited and/or its affiliates <open-source-office@arm.com>
alexander3c798932021-03-26 21:42:19 +00003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef ASR_EVT_HANDLER_HPP
18#define ASR_EVT_HANDLER_HPP
19
20#include "AppContext.hpp"
21
22namespace arm {
23namespace app {
24
25 /**
26 * @brief Handles the inference event.
27 * @param[in] ctx Pointer to the application context.
28 * @param[in] clipIndex Index to the audio clip to classify.
29 * @param[in] runAll Flag to request classification of all the available audio clips.
30 * @return true or false based on execution success.
31 **/
32 bool ClassifyAudioHandler(ApplicationContext& ctx, uint32_t clipIndex, bool runAll);
33
34} /* namespace app */
35} /* namespace arm */
36
37#endif /* ASR_EVT_HANDLER_HPP */