blob: 2d1e0f85eae0d0091395b4fe77268befcf152b68 [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2009 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#define LOG_TAG "IAudioFlingerClient"
18#include <utils/Log.h>
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopian75624082009-05-19 19:08:10 -070023#include <binder/Parcel.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080024
25#include <media/IAudioFlingerClient.h>
Eric Laurentc2f1f072009-07-17 12:17:14 -070026#include <media/AudioSystem.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080027
28namespace android {
29
30enum {
Eric Laurentc2f1f072009-07-17 12:17:14 -070031 IO_CONFIG_CHANGED = IBinder::FIRST_CALL_TRANSACTION
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080032};
33
34class BpAudioFlingerClient : public BpInterface<IAudioFlingerClient>
35{
36public:
37 BpAudioFlingerClient(const sp<IBinder>& impl)
38 : BpInterface<IAudioFlingerClient>(impl)
39 {
40 }
41
Glenn Kastenb81cc8c2012-03-01 09:14:51 -080042 void ioConfigChanged(int event, audio_io_handle_t ioHandle, const void *param2)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080043 {
44 Parcel data, reply;
45 data.writeInterfaceToken(IAudioFlingerClient::getInterfaceDescriptor());
Eric Laurentc2f1f072009-07-17 12:17:14 -070046 data.writeInt32(event);
Glenn Kasten72ef00d2012-01-17 11:09:42 -080047 data.writeInt32((int32_t) ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -070048 if (event == AudioSystem::STREAM_CONFIG_CHANGED) {
Glenn Kastenb81cc8c2012-03-01 09:14:51 -080049 uint32_t stream = *(const uint32_t *)param2;
Steve Block3856b092011-10-20 11:56:00 +010050 ALOGV("ioConfigChanged stream %d", stream);
Eric Laurentc2f1f072009-07-17 12:17:14 -070051 data.writeInt32(stream);
52 } else if (event != AudioSystem::OUTPUT_CLOSED && event != AudioSystem::INPUT_CLOSED) {
Glenn Kasten8af901c2012-11-01 11:11:38 -070053 const AudioSystem::OutputDescriptor *desc =
54 (const AudioSystem::OutputDescriptor *)param2;
Eric Laurentc2f1f072009-07-17 12:17:14 -070055 data.writeInt32(desc->samplingRate);
56 data.writeInt32(desc->format);
57 data.writeInt32(desc->channels);
58 data.writeInt32(desc->frameCount);
59 data.writeInt32(desc->latency);
60 }
61 remote()->transact(IO_CONFIG_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080062 }
63};
64
65IMPLEMENT_META_INTERFACE(AudioFlingerClient, "android.media.IAudioFlingerClient");
66
67// ----------------------------------------------------------------------
68
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080069status_t BnAudioFlingerClient::onTransact(
70 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71{
Glenn Kastene53b9ea2012-03-12 16:29:55 -070072 switch (code) {
Eric Laurentc2f1f072009-07-17 12:17:14 -070073 case IO_CONFIG_CHANGED: {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080074 CHECK_INTERFACE(IAudioFlingerClient, data, reply);
Eric Laurentc2f1f072009-07-17 12:17:14 -070075 int event = data.readInt32();
Glenn Kasten72ef00d2012-01-17 11:09:42 -080076 audio_io_handle_t ioHandle = (audio_io_handle_t) data.readInt32();
Glenn Kastenb81cc8c2012-03-01 09:14:51 -080077 const void *param2 = NULL;
Eric Laurentc2f1f072009-07-17 12:17:14 -070078 AudioSystem::OutputDescriptor desc;
79 uint32_t stream;
Eric Laurentc2f1f072009-07-17 12:17:14 -070080 if (event == AudioSystem::STREAM_CONFIG_CHANGED) {
81 stream = data.readInt32();
82 param2 = &stream;
Steve Block3856b092011-10-20 11:56:00 +010083 ALOGV("STREAM_CONFIG_CHANGED stream %d", stream);
Eric Laurentc2f1f072009-07-17 12:17:14 -070084 } else if (event != AudioSystem::OUTPUT_CLOSED && event != AudioSystem::INPUT_CLOSED) {
85 desc.samplingRate = data.readInt32();
86 desc.format = data.readInt32();
87 desc.channels = data.readInt32();
88 desc.frameCount = data.readInt32();
89 desc.latency = data.readInt32();
90 param2 = &desc;
91 }
Eric Laurentfa2877b2009-07-28 08:44:33 -070092 ioConfigChanged(event, ioHandle, param2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080093 return NO_ERROR;
94 } break;
95 default:
96 return BBinder::onTransact(code, data, reply, flags);
97 }
98}
99
100// ----------------------------------------------------------------------------
101
102}; // namespace android