forked from Decatf/android-audio-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.h
45 lines (35 loc) · 1.42 KB
/
common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (C) 2013 Thomas Wendt <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AUDIO_WRAPPER_COMMON_H
#define AUDIO_WRAPPER_COMMON_H
#include <media/AudioParameter.h>
#include <hardware/audio.h>
#include <hardware/hardware.h>
#include "include/4.0/system/audio.h"
#define ANDROID_VERSION(maj, min) \
(maj * 10 + min)
#define WRAPPED_AUDIO_POLICY_VERSION ANDROID_VERSION(4, 0)
#define WRAPPED_AUDIO_HAL_VERSION ANDROID_VERSION(4, 0)
enum flags_conversion_mode {
ICS_TO_JB,
JB_TO_ICS,
};
typedef enum flags_conversion_mode flags_conversion_mode_t;
int load_vendor_module(const hw_module_t* wrapper_module, const char* name,
hw_device_t** device, const char* inst);
char* fixup_audio_parameters(const char* kv_pairs, flags_conversion_mode_t mode);
uint32_t convert_audio_devices(uint32_t devices, flags_conversion_mode_t mode);
#endif // AUDIO_WRAPPER_COMMON_H