forked from fat-tire/android_hardware_alsa_sound
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathALSAControl.cpp
More file actions
111 lines (94 loc) · 2.77 KB
/
Copy pathALSAControl.cpp
File metadata and controls
111 lines (94 loc) · 2.77 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* ALSAControl.cpp
**
** Copyright 2008-2009 Wind River Systems
** Copyright (c) 2011, Code Aurora Forum. All rights reserved.
**
** 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.
*/
#include <errno.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <dlfcn.h>
#define LOG_TAG "ALSAControl"
//#define LOG_NDEBUG 0
#define LOG_NDDEBUG 0
#include <utils/Log.h>
#include <utils/String8.h>
#include <cutils/properties.h>
#include <media/AudioRecord.h>
#include <hardware_legacy/power.h>
#include "AudioHardwareALSA.h"
namespace android_audio_legacy
{
ALSAControl::ALSAControl(const char *device)
{
LOGD("ALSAControl: ctor device %s", device);
mHandle = mixer_open(device);
LOGV("ALSAControl: ctor mixer %p", mHandle);
}
ALSAControl::~ALSAControl()
{
if (mHandle) mixer_close(mHandle);
}
status_t ALSAControl::get(const char *name, unsigned int &value, int index)
{
struct mixer_ctl *ctl;
if (!mHandle) {
LOGE("Control not initialized");
return NO_INIT;
}
ctl = mixer_get_control(mHandle, name, index);
if (!ctl)
return BAD_VALUE;
mixer_ctl_get(ctl, &value);
return NO_ERROR;
}
status_t ALSAControl::set(const char *name, unsigned int value, int index)
{
struct mixer_ctl *ctl;
int ret = 0;
LOGD("set:: name %s value %d index %d", name, value, index);
if (!mHandle) {
LOGE("Control not initialized");
return NO_INIT;
}
// ToDo: Do we need to send index here? Right now it works with 0
ctl = mixer_get_control(mHandle, name, 0);
if(ctl == NULL) {
LOGE("Could not get the mixer control");
return BAD_VALUE;
}
ret = mixer_ctl_set(ctl, value);
return (ret < 0) ? BAD_VALUE : NO_ERROR;
}
status_t ALSAControl::set(const char *name, const char *value)
{
struct mixer_ctl *ctl;
int ret = 0;
LOGD("set:: name %s value %s", name, value);
if (!mHandle) {
LOGE("Control not initialized");
return NO_INIT;
}
ctl = mixer_get_control(mHandle, name, 0);
if(ctl == NULL) {
LOGE("Could not get the mixer control");
return BAD_VALUE;
}
ret = mixer_ctl_select(ctl, value);
return (ret < 0) ? BAD_VALUE : NO_ERROR;
}
}; // namespace android