blob: 48b71379810c3e3c7a62fc12923a5612c7a2f475 [file] [log] [blame]
Shunkai Yaoea24c1a2022-09-28 17:39:23 +00001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18#include <aidl/android/media/audio/common/AudioUuid.h>
19
20namespace aidl::android::hardware::audio::effect {
21
22using ::aidl::android::media::audio::common::AudioUuid;
23
Shunkai Yaoa4ab38c2022-10-14 01:07:47 +000024// Null UUID
25static const AudioUuid EffectNullUuid = {static_cast<int32_t>(0xec7178ec),
26 0xe5e1,
27 0x4432,
28 0xa3f4,
29 {0x46, 0x57, 0xe6, 0x79, 0x52, 0x10}};
30
31// Zero UUID
32static const AudioUuid EffectZeroUuid = {
33 static_cast<int32_t>(0x0), 0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}};
34
Shunkai Yaoea24c1a2022-09-28 17:39:23 +000035// Equalizer type UUID.
36static const AudioUuid EqualizerTypeUUID = {static_cast<int32_t>(0x0bed4300),
37 0xddd6,
38 0x11db,
39 0x8f34,
40 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
41
42// Equalizer implementation UUID.
43static const AudioUuid EqualizerSwImplUUID = {static_cast<int32_t>(0x0bed4300),
44 0x847d,
45 0x11df,
46 0xbb17,
47 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
48
49// Visualizer type UUID.
50static const AudioUuid VisualizerTypeUUID = {static_cast<int32_t>(0x1d4033c0),
51 0x8557,
52 0x11df,
53 0x9f2d,
54 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
55
56} // namespace aidl::android::hardware::audio::effect