blob: edf46bc1d6080be3af53f41f172aa254df0c2733 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001{#
2 Copyright (c) 2021 Arm Limited. All rights reserved.
3 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{{common_template_header}}
18
19#include "InputFiles.hpp"
20
21static const char *audio_clip_filenames[] = {
22{% for name in clip_names %}
23 "{{name}}",
24{% endfor %}
25};
26
27static const int16_t *audio_clip_arrays[] = {
28 {{ var_names|join(',\n\t') }}
29};
30
31
32static const size_t audio_clip_sizes[NUMBER_OF_FILES] = {
33 {{ clip_sizes|join(',\n\t') }}
34};
35
36
37const char* get_filename(const uint32_t idx)
38{
39 if (idx < NUMBER_OF_FILES) {
40 return audio_clip_filenames[idx];
41 }
42 return nullptr;
43}
44
45
46const int16_t* get_audio_array(const uint32_t idx)
47{
48 if (idx < NUMBER_OF_FILES) {
49 return audio_clip_arrays[idx];
50 }
51 return nullptr;
52}
53
54
55uint32_t get_audio_array_size(const uint32_t idx)
56{
57 if (idx < NUMBER_OF_FILES) {
58 return audio_clip_sizes[idx];
59 }
60 return 0;
61}
62