blob: 86f8c3ad2e43b4ca1052103cb3815f94fa873184 [file] [log] [blame]
Shunkai Yaoc23916b2022-07-13 04:59:37 +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
19#include <cstdlib>
20
21namespace aidl::android::hardware::audio::effect {
22
23// Equalizer implementation UUID.
24static const ::aidl::android::media::audio::common::AudioUuid EqualizerUUID = {
25 static_cast<int32_t>(0xce772f20),
26 0x847d,
27 0x11df,
28 0xbb17,
29 {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}};
30
31} // namespace aidl::android::hardware::audio::effect