blob: 99f6c24d83da71614ad782f2a7f6ef273e1a8df5 [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
24// Equalizer type UUID.
25static const AudioUuid EqualizerTypeUUID = {static_cast<int32_t>(0x0bed4300),
26 0xddd6,
27 0x11db,
28 0x8f34,
29 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
30
31// Equalizer implementation UUID.
32static const AudioUuid EqualizerSwImplUUID = {static_cast<int32_t>(0x0bed4300),
33 0x847d,
34 0x11df,
35 0xbb17,
36 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
37
38// Visualizer type UUID.
39static const AudioUuid VisualizerTypeUUID = {static_cast<int32_t>(0x1d4033c0),
40 0x8557,
41 0x11df,
42 0x9f2d,
43 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
44
45} // namespace aidl::android::hardware::audio::effect