blob: 4d88a7f93e41773d455d262792da4d650bdd1f5b [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2008, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18// Proxy for media player implementations
19
20//#define LOG_NDEBUG 0
21#define LOG_TAG "MediaPlayerService"
22#include <utils/Log.h>
23
24#include <sys/types.h>
25#include <sys/stat.h>
Gloria Wang7cf180c2011-02-19 18:37:57 -080026#include <sys/time.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080027#include <dirent.h>
28#include <unistd.h>
29
30#include <string.h>
Mathias Agopian6f74b0c2009-06-03 17:32:49 -070031
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080032#include <cutils/atomic.h>
Nicolas Catania14d27472009-07-13 14:37:49 -070033#include <cutils/properties.h> // for property_get
Mathias Agopian6f74b0c2009-06-03 17:32:49 -070034
35#include <utils/misc.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080036
Chong Zhang0b30fd42014-07-23 14:46:05 -070037#include <binder/IBatteryStats.h>
Mathias Agopian75624082009-05-19 19:08:10 -070038#include <binder/IPCThreadState.h>
39#include <binder/IServiceManager.h>
40#include <binder/MemoryHeapBase.h>
41#include <binder/MemoryBase.h>
Mathias Agopianb1e7cd12013-02-14 17:11:27 -080042#include <gui/Surface.h>
Nicolas Catania1d187f12009-05-12 23:25:55 -070043#include <utils/Errors.h> // for status_t
44#include <utils/String8.h>
Marco Nelissen10dbb8e2009-09-20 10:42:13 -070045#include <utils/SystemClock.h>
Lajos Molnar06ad1522014-08-28 07:27:44 -070046#include <utils/Timers.h>
Nicolas Catania1d187f12009-05-12 23:25:55 -070047#include <utils/Vector.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080048
Andreas Huber1b86fe02014-01-29 11:13:26 -080049#include <media/IMediaHTTPService.h>
Jeff Brown2013a542012-09-04 21:38:42 -070050#include <media/IRemoteDisplay.h>
51#include <media/IRemoteDisplayClient.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080052#include <media/MediaPlayerInterface.h>
53#include <media/mediarecorder.h>
54#include <media/MediaMetadataRetrieverInterface.h>
nikoa64c8c72009-07-20 15:07:26 -070055#include <media/Metadata.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080056#include <media/AudioTrack.h>
James Dong8635b7b2011-03-14 17:01:38 -070057#include <media/MemoryLeakTrackUtil.h>
Lajos Molnar1381d4b2014-08-07 15:18:35 -070058#include <media/stagefright/MediaCodecList.h>
Eric Laurent9cb839a2011-09-27 09:48:56 -070059#include <media/stagefright/MediaErrors.h>
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +010060#include <media/stagefright/AudioPlayer.h>
61#include <media/stagefright/foundation/ADebug.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080062
Dima Zavin64760242011-05-11 14:15:23 -070063#include <system/audio.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070064
Gloria Wang7cf180c2011-02-19 18:37:57 -080065#include <private/android_filesystem_config.h>
66
James Dong559bf282012-03-28 10:29:14 -070067#include "ActivityManager.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080068#include "MediaRecorderClient.h"
69#include "MediaPlayerService.h"
70#include "MetadataRetrieverClient.h"
John Grossman44a7e422012-06-21 17:29:24 -070071#include "MediaPlayerFactory.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080072
Nicolas Catania14d27472009-07-13 14:37:49 -070073#include "TestPlayerStub.h"
Andreas Huber20111aa2009-07-14 16:56:47 -070074#include "StagefrightPlayer.h"
Andreas Huberf9334412010-12-15 15:17:42 -080075#include "nuplayer/NuPlayerDriver.h"
Andreas Huber20111aa2009-07-14 16:56:47 -070076
Andreas Huber20111aa2009-07-14 16:56:47 -070077#include <OMX.h>
Nicolas Catania14d27472009-07-13 14:37:49 -070078
Andreas Hubered3e3e02012-03-26 11:13:27 -070079#include "Crypto.h"
Jeff Tinkercc82dc62013-02-08 10:18:35 -080080#include "Drm.h"
Andreas Huber59451f82012-09-18 10:36:32 -070081#include "HDCP.h"
Andreas Huberb7319a72013-05-29 14:20:52 -070082#include "HTTPBase.h"
Andreas Huber35213f12012-08-29 11:41:50 -070083#include "RemoteDisplay.h"
Andreas Hubered3e3e02012-03-26 11:13:27 -070084
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070085namespace {
nikoa64c8c72009-07-20 15:07:26 -070086using android::media::Metadata;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070087using android::status_t;
88using android::OK;
89using android::BAD_VALUE;
90using android::NOT_ENOUGH_DATA;
91using android::Parcel;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070092
93// Max number of entries in the filter.
94const int kMaxFilterSize = 64; // I pulled that out of thin air.
95
nikoa64c8c72009-07-20 15:07:26 -070096// FIXME: Move all the metadata related function in the Metadata.cpp
nikod608a812009-07-16 16:39:53 -070097
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070098
99// Unmarshall a filter from a Parcel.
100// Filter format in a parcel:
101//
102// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
103// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
104// | number of entries (n) |
105// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106// | metadata type 1 |
107// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
108// | metadata type 2 |
109// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
110// ....
111// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
112// | metadata type n |
113// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114//
115// @param p Parcel that should start with a filter.
116// @param[out] filter On exit contains the list of metadata type to be
117// filtered.
118// @param[out] status On exit contains the status code to be returned.
119// @return true if the parcel starts with a valid filter.
120bool unmarshallFilter(const Parcel& p,
nikoa64c8c72009-07-20 15:07:26 -0700121 Metadata::Filter *filter,
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700122 status_t *status)
123{
Nicolas Catania48290382009-07-10 13:53:06 -0700124 int32_t val;
125 if (p.readInt32(&val) != OK)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700126 {
Steve Block29357bc2012-01-06 19:20:56 +0000127 ALOGE("Failed to read filter's length");
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700128 *status = NOT_ENOUGH_DATA;
129 return false;
130 }
131
Nicolas Catania48290382009-07-10 13:53:06 -0700132 if( val > kMaxFilterSize || val < 0)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700133 {
Steve Block29357bc2012-01-06 19:20:56 +0000134 ALOGE("Invalid filter len %d", val);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700135 *status = BAD_VALUE;
136 return false;
137 }
138
Nicolas Catania48290382009-07-10 13:53:06 -0700139 const size_t num = val;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700140
141 filter->clear();
Nicolas Catania48290382009-07-10 13:53:06 -0700142 filter->setCapacity(num);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700143
nikoa64c8c72009-07-20 15:07:26 -0700144 size_t size = num * sizeof(Metadata::Type);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700145
Nicolas Catania48290382009-07-10 13:53:06 -0700146
147 if (p.dataAvail() < size)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700148 {
Steve Block29357bc2012-01-06 19:20:56 +0000149 ALOGE("Filter too short expected %d but got %d", size, p.dataAvail());
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700150 *status = NOT_ENOUGH_DATA;
151 return false;
152 }
153
nikoa64c8c72009-07-20 15:07:26 -0700154 const Metadata::Type *data =
155 static_cast<const Metadata::Type*>(p.readInplace(size));
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700156
Nicolas Catania48290382009-07-10 13:53:06 -0700157 if (NULL == data)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700158 {
Steve Block29357bc2012-01-06 19:20:56 +0000159 ALOGE("Filter had no data");
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700160 *status = BAD_VALUE;
161 return false;
162 }
163
164 // TODO: The stl impl of vector would be more efficient here
165 // because it degenerates into a memcpy on pod types. Try to
166 // replace later or use stl::set.
Nicolas Catania48290382009-07-10 13:53:06 -0700167 for (size_t i = 0; i < num; ++i)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700168 {
Nicolas Catania48290382009-07-10 13:53:06 -0700169 filter->add(*data);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700170 ++data;
171 }
172 *status = OK;
173 return true;
174}
175
Nicolas Catania48290382009-07-10 13:53:06 -0700176// @param filter Of metadata type.
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700177// @param val To be searched.
178// @return true if a match was found.
nikoa64c8c72009-07-20 15:07:26 -0700179bool findMetadata(const Metadata::Filter& filter, const int32_t val)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700180{
181 // Deal with empty and ANY right away
182 if (filter.isEmpty()) return false;
nikoa64c8c72009-07-20 15:07:26 -0700183 if (filter[0] == Metadata::kAny) return true;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700184
Nicolas Catania48290382009-07-10 13:53:06 -0700185 return filter.indexOf(val) >= 0;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700186}
187
188} // anonymous namespace
189
190
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700191namespace {
192using android::Parcel;
193using android::String16;
194
195// marshalling tag indicating flattened utf16 tags
196// keep in sync with frameworks/base/media/java/android/media/AudioAttributes.java
197const int32_t kAudioAttributesMarshallTagFlattenTags = 1;
198
199// Audio attributes format in a parcel:
200//
201// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
202// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
203// | usage |
204// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
205// | content_type |
206// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Hyejin Kim4f418f92014-09-05 15:50:03 +0900207// | source |
208// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700209// | flags |
210// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
211// | kAudioAttributesMarshallTagFlattenTags | // ignore tags if not found
212// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
213// | flattened tags in UTF16 |
214// | ... |
215// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
216//
217// @param p Parcel that contains audio attributes.
218// @param[out] attributes On exit points to an initialized audio_attributes_t structure
219// @param[out] status On exit contains the status code to be returned.
220void unmarshallAudioAttributes(const Parcel& parcel, audio_attributes_t *attributes)
221{
222 attributes->usage = (audio_usage_t) parcel.readInt32();
223 attributes->content_type = (audio_content_type_t) parcel.readInt32();
Hyejin Kim4f418f92014-09-05 15:50:03 +0900224 attributes->source = (audio_source_t) parcel.readInt32();
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700225 attributes->flags = (audio_flags_mask_t) parcel.readInt32();
226 const bool hasFlattenedTag = (parcel.readInt32() == kAudioAttributesMarshallTagFlattenTags);
227 if (hasFlattenedTag) {
228 // the tags are UTF16, convert to UTF8
229 String16 tags = parcel.readString16();
230 ssize_t realTagSize = utf16_to_utf8_length(tags.string(), tags.size());
231 if (realTagSize <= 0) {
232 strcpy(attributes->tags, "");
233 } else {
234 // copy the flattened string into the attributes as the destination for the conversion:
235 // copying array size -1, array for tags was calloc'd, no need to NULL-terminate it
236 size_t tagSize = realTagSize > AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1 ?
237 AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1 : realTagSize;
238 utf16_to_utf8(tags.string(), tagSize, attributes->tags);
239 }
240 } else {
241 ALOGE("unmarshallAudioAttributes() received unflattened tags, ignoring tag values");
242 strcpy(attributes->tags, "");
243 }
244}
245} // anonymous namespace
246
247
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800248namespace android {
249
Dave Burked681bbb2011-08-30 14:39:17 +0100250static bool checkPermission(const char* permissionString) {
251#ifndef HAVE_ANDROID_OS
252 return true;
253#endif
254 if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
255 bool ok = checkCallingPermission(String16(permissionString));
Steve Block29357bc2012-01-06 19:20:56 +0000256 if (!ok) ALOGE("Request requires %s", permissionString);
Dave Burked681bbb2011-08-30 14:39:17 +0100257 return ok;
258}
259
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800260// TODO: Find real cause of Audio/Video delay in PV framework and remove this workaround
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800261/* static */ int MediaPlayerService::AudioOutput::mMinBufferCount = 4;
262/* static */ bool MediaPlayerService::AudioOutput::mIsOnEmulator = false;
263
264void MediaPlayerService::instantiate() {
265 defaultServiceManager()->addService(
266 String16("media.player"), new MediaPlayerService());
267}
268
269MediaPlayerService::MediaPlayerService()
270{
Steve Block3856b092011-10-20 11:56:00 +0100271 ALOGV("MediaPlayerService created");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800272 mNextConnId = 1;
Gloria Wang9ee159b2011-02-24 14:51:45 -0800273
274 mBatteryAudio.refCount = 0;
275 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
276 mBatteryAudio.deviceOn[i] = 0;
277 mBatteryAudio.lastTime[i] = 0;
278 mBatteryAudio.totalTime[i] = 0;
279 }
280 // speaker is on by default
281 mBatteryAudio.deviceOn[SPEAKER] = 1;
John Grossman44a7e422012-06-21 17:29:24 -0700282
Chong Zhang0b30fd42014-07-23 14:46:05 -0700283 // reset battery stats
284 // if the mediaserver has crashed, battery stats could be left
285 // in bad state, reset the state upon service start.
286 const sp<IServiceManager> sm(defaultServiceManager());
287 if (sm != NULL) {
288 const String16 name("batterystats");
289 sp<IBatteryStats> batteryStats =
290 interface_cast<IBatteryStats>(sm->getService(name));
291 if (batteryStats != NULL) {
292 batteryStats->noteResetVideo();
293 batteryStats->noteResetAudio();
294 }
295 }
296
John Grossman44a7e422012-06-21 17:29:24 -0700297 MediaPlayerFactory::registerBuiltinFactories();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800298}
299
300MediaPlayerService::~MediaPlayerService()
301{
Steve Block3856b092011-10-20 11:56:00 +0100302 ALOGV("MediaPlayerService destroyed");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800303}
304
Glenn Kastenf37971f2012-02-03 11:06:53 -0800305sp<IMediaRecorder> MediaPlayerService::createMediaRecorder()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800306{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800307 pid_t pid = IPCThreadState::self()->getCallingPid();
Gloria Wangdac6a312009-10-29 15:46:37 -0700308 sp<MediaRecorderClient> recorder = new MediaRecorderClient(this, pid);
309 wp<MediaRecorderClient> w = recorder;
310 Mutex::Autolock lock(mLock);
311 mMediaRecorderClients.add(w);
Steve Block3856b092011-10-20 11:56:00 +0100312 ALOGV("Create new media recorder client from pid %d", pid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800313 return recorder;
314}
315
Gloria Wangdac6a312009-10-29 15:46:37 -0700316void MediaPlayerService::removeMediaRecorderClient(wp<MediaRecorderClient> client)
317{
318 Mutex::Autolock lock(mLock);
319 mMediaRecorderClients.remove(client);
Steve Block3856b092011-10-20 11:56:00 +0100320 ALOGV("Delete media recorder client");
Gloria Wangdac6a312009-10-29 15:46:37 -0700321}
322
Glenn Kastenf37971f2012-02-03 11:06:53 -0800323sp<IMediaMetadataRetriever> MediaPlayerService::createMetadataRetriever()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800324{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800325 pid_t pid = IPCThreadState::self()->getCallingPid();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800326 sp<MetadataRetrieverClient> retriever = new MetadataRetrieverClient(pid);
Steve Block3856b092011-10-20 11:56:00 +0100327 ALOGV("Create new media retriever from pid %d", pid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800328 return retriever;
329}
330
Glenn Kastenf37971f2012-02-03 11:06:53 -0800331sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client,
Dave Burked681bbb2011-08-30 14:39:17 +0100332 int audioSessionId)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800333{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800334 pid_t pid = IPCThreadState::self()->getCallingPid();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800335 int32_t connId = android_atomic_inc(&mNextConnId);
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700336
337 sp<Client> c = new Client(
338 this, pid, connId, client, audioSessionId,
339 IPCThreadState::self()->getCallingUid());
340
Steve Block3856b092011-10-20 11:56:00 +0100341 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
Dave Burked681bbb2011-08-30 14:39:17 +0100342 IPCThreadState::self()->getCallingUid());
343
344 wp<Client> w = c;
345 {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800346 Mutex::Autolock lock(mLock);
347 mClients.add(w);
348 }
Andreas Hubere2b10282010-11-23 11:41:34 -0800349 return c;
350}
351
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700352sp<IMediaCodecList> MediaPlayerService::getCodecList() const {
353 return MediaCodecList::getLocalInstance();
354}
355
Andreas Huber318ad9c2009-10-15 13:46:54 -0700356sp<IOMX> MediaPlayerService::getOMX() {
357 Mutex::Autolock autoLock(mLock);
358
359 if (mOMX.get() == NULL) {
360 mOMX = new OMX;
361 }
362
363 return mOMX;
Andreas Huber20111aa2009-07-14 16:56:47 -0700364}
365
Andreas Hubered3e3e02012-03-26 11:13:27 -0700366sp<ICrypto> MediaPlayerService::makeCrypto() {
Andreas Huber1bd139a2012-04-03 14:19:20 -0700367 return new Crypto;
Andreas Hubered3e3e02012-03-26 11:13:27 -0700368}
369
Jeff Tinkercc82dc62013-02-08 10:18:35 -0800370sp<IDrm> MediaPlayerService::makeDrm() {
371 return new Drm;
372}
373
Andreas Huber279dcd82013-01-30 10:41:25 -0800374sp<IHDCP> MediaPlayerService::makeHDCP(bool createEncryptionModule) {
375 return new HDCP(createEncryptionModule);
Andreas Huber59451f82012-09-18 10:36:32 -0700376}
377
Jeff Brown2013a542012-09-04 21:38:42 -0700378sp<IRemoteDisplay> MediaPlayerService::listenForRemoteDisplay(
379 const sp<IRemoteDisplayClient>& client, const String8& iface) {
Jeff Brownaba33d52012-09-07 17:38:58 -0700380 if (!checkPermission("android.permission.CONTROL_WIFI_DISPLAY")) {
381 return NULL;
382 }
383
Jeff Brownced24b32012-09-05 17:48:03 -0700384 return new RemoteDisplay(client, iface.string());
Jeff Brown2013a542012-09-04 21:38:42 -0700385}
386
Mark Salyzyn77342f72014-06-18 16:31:32 -0700387status_t MediaPlayerService::AudioCache::dump(int fd, const Vector<String16>& /*args*/) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800388{
389 const size_t SIZE = 256;
390 char buffer[SIZE];
391 String8 result;
392
393 result.append(" AudioCache\n");
394 if (mHeap != 0) {
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000395 snprintf(buffer, 255, " heap base(%p), size(%zu), flags(%d)\n",
Eric Laurent3d00aa62013-09-24 09:53:27 -0700396 mHeap->getBase(), mHeap->getSize(), mHeap->getFlags());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800397 result.append(buffer);
398 }
Scott Fan7d409692013-04-28 10:13:54 +0800399 snprintf(buffer, 255, " msec per frame(%f), channel count(%d), format(%d), frame count(%zd)\n",
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800400 mMsecsPerFrame, mChannelCount, mFormat, mFrameCount);
401 result.append(buffer);
402 snprintf(buffer, 255, " sample rate(%d), size(%d), error(%d), command complete(%s)\n",
403 mSampleRate, mSize, mError, mCommandComplete?"true":"false");
404 result.append(buffer);
405 ::write(fd, result.string(), result.size());
406 return NO_ERROR;
407}
408
409status_t MediaPlayerService::AudioOutput::dump(int fd, const Vector<String16>& args) const
410{
411 const size_t SIZE = 256;
412 char buffer[SIZE];
413 String8 result;
414
415 result.append(" AudioOutput\n");
416 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n",
417 mStreamType, mLeftVolume, mRightVolume);
418 result.append(buffer);
419 snprintf(buffer, 255, " msec per frame(%f), latency (%d)\n",
Eric Laurentdb354e52012-03-05 17:27:11 -0800420 mMsecsPerFrame, (mTrack != 0) ? mTrack->latency() : -1);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800421 result.append(buffer);
Eric Laurent2beeb502010-07-16 07:43:46 -0700422 snprintf(buffer, 255, " aux effect id(%d), send level (%f)\n",
423 mAuxEffectId, mSendLevel);
424 result.append(buffer);
425
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800426 ::write(fd, result.string(), result.size());
427 if (mTrack != 0) {
428 mTrack->dump(fd, args);
429 }
430 return NO_ERROR;
431}
432
433status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const
434{
435 const size_t SIZE = 256;
436 char buffer[SIZE];
437 String8 result;
438 result.append(" Client\n");
439 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
440 mPid, mConnId, mStatus, mLoop?"true": "false");
441 result.append(buffer);
442 write(fd, result.string(), result.size());
Andreas Hubera0b1d4b2011-06-07 15:52:25 -0700443 if (mPlayer != NULL) {
444 mPlayer->dump(fd, args);
445 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800446 if (mAudioOutput != 0) {
447 mAudioOutput->dump(fd, args);
448 }
449 write(fd, "\n", 1);
450 return NO_ERROR;
451}
452
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800453status_t MediaPlayerService::dump(int fd, const Vector<String16>& args)
454{
455 const size_t SIZE = 256;
456 char buffer[SIZE];
457 String8 result;
458 if (checkCallingPermission(String16("android.permission.DUMP")) == false) {
459 snprintf(buffer, SIZE, "Permission Denial: "
460 "can't dump MediaPlayerService from pid=%d, uid=%d\n",
461 IPCThreadState::self()->getCallingPid(),
462 IPCThreadState::self()->getCallingUid());
463 result.append(buffer);
464 } else {
465 Mutex::Autolock lock(mLock);
466 for (int i = 0, n = mClients.size(); i < n; ++i) {
467 sp<Client> c = mClients[i].promote();
468 if (c != 0) c->dump(fd, args);
469 }
James Dongb9141222010-07-08 11:16:11 -0700470 if (mMediaRecorderClients.size() == 0) {
471 result.append(" No media recorder client\n\n");
472 } else {
473 for (int i = 0, n = mMediaRecorderClients.size(); i < n; ++i) {
474 sp<MediaRecorderClient> c = mMediaRecorderClients[i].promote();
James Donge579e282011-10-18 22:29:20 -0700475 if (c != 0) {
476 snprintf(buffer, 255, " MediaRecorderClient pid(%d)\n", c->mPid);
477 result.append(buffer);
478 write(fd, result.string(), result.size());
479 result = "\n";
480 c->dump(fd, args);
481 }
James Dongb9141222010-07-08 11:16:11 -0700482 }
Gloria Wangdac6a312009-10-29 15:46:37 -0700483 }
484
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800485 result.append(" Files opened and/or mapped:\n");
Glenn Kasten0512ab52011-05-04 17:58:57 -0700486 snprintf(buffer, SIZE, "/proc/%d/maps", gettid());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800487 FILE *f = fopen(buffer, "r");
488 if (f) {
489 while (!feof(f)) {
490 fgets(buffer, SIZE, f);
Marco Nelissen73ac1ee2012-05-07 15:36:32 -0700491 if (strstr(buffer, " /storage/") ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800492 strstr(buffer, " /system/sounds/") ||
Dave Sparks02fa8342010-09-27 16:55:18 -0700493 strstr(buffer, " /data/") ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800494 strstr(buffer, " /system/media/")) {
495 result.append(" ");
496 result.append(buffer);
497 }
498 }
499 fclose(f);
500 } else {
501 result.append("couldn't open ");
502 result.append(buffer);
503 result.append("\n");
504 }
505
Glenn Kasten0512ab52011-05-04 17:58:57 -0700506 snprintf(buffer, SIZE, "/proc/%d/fd", gettid());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800507 DIR *d = opendir(buffer);
508 if (d) {
509 struct dirent *ent;
510 while((ent = readdir(d)) != NULL) {
511 if (strcmp(ent->d_name,".") && strcmp(ent->d_name,"..")) {
Glenn Kasten0512ab52011-05-04 17:58:57 -0700512 snprintf(buffer, SIZE, "/proc/%d/fd/%s", gettid(), ent->d_name);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800513 struct stat s;
514 if (lstat(buffer, &s) == 0) {
515 if ((s.st_mode & S_IFMT) == S_IFLNK) {
516 char linkto[256];
517 int len = readlink(buffer, linkto, sizeof(linkto));
518 if(len > 0) {
519 if(len > 255) {
520 linkto[252] = '.';
521 linkto[253] = '.';
522 linkto[254] = '.';
523 linkto[255] = 0;
524 } else {
525 linkto[len] = 0;
526 }
Marco Nelissen73ac1ee2012-05-07 15:36:32 -0700527 if (strstr(linkto, "/storage/") == linkto ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800528 strstr(linkto, "/system/sounds/") == linkto ||
Dave Sparks02fa8342010-09-27 16:55:18 -0700529 strstr(linkto, "/data/") == linkto ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800530 strstr(linkto, "/system/media/") == linkto) {
531 result.append(" ");
532 result.append(buffer);
533 result.append(" -> ");
534 result.append(linkto);
535 result.append("\n");
536 }
537 }
538 } else {
539 result.append(" unexpected type for ");
540 result.append(buffer);
541 result.append("\n");
542 }
543 }
544 }
545 }
546 closedir(d);
547 } else {
548 result.append("couldn't open ");
549 result.append(buffer);
550 result.append("\n");
551 }
552
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800553 bool dumpMem = false;
554 for (size_t i = 0; i < args.size(); i++) {
555 if (args[i] == String16("-m")) {
556 dumpMem = true;
557 }
558 }
559 if (dumpMem) {
James Dong8635b7b2011-03-14 17:01:38 -0700560 dumpMemoryAddresses(fd);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800561 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800562 }
563 write(fd, result.string(), result.size());
564 return NO_ERROR;
565}
566
567void MediaPlayerService::removeClient(wp<Client> client)
568{
569 Mutex::Autolock lock(mLock);
570 mClients.remove(client);
571}
572
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700573MediaPlayerService::Client::Client(
574 const sp<MediaPlayerService>& service, pid_t pid,
575 int32_t connId, const sp<IMediaPlayerClient>& client,
576 int audioSessionId, uid_t uid)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800577{
Steve Block3856b092011-10-20 11:56:00 +0100578 ALOGV("Client(%d) constructor", connId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800579 mPid = pid;
580 mConnId = connId;
581 mService = service;
582 mClient = client;
583 mLoop = false;
584 mStatus = NO_INIT;
Eric Laurenta514bdb2010-06-21 09:27:30 -0700585 mAudioSessionId = audioSessionId;
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700586 mUID = uid;
John Grossmanc795b642012-02-22 15:38:35 -0800587 mRetransmitEndpointValid = false;
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700588 mAudioAttributes = NULL;
Eric Laurenta514bdb2010-06-21 09:27:30 -0700589
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800590#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +0000591 ALOGD("create Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800592 mAntagonizer = new Antagonizer(notify, this);
593#endif
594}
595
596MediaPlayerService::Client::~Client()
597{
Steve Block3856b092011-10-20 11:56:00 +0100598 ALOGV("Client(%d) destructor pid = %d", mConnId, mPid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800599 mAudioOutput.clear();
600 wp<Client> client(this);
601 disconnect();
602 mService->removeClient(client);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700603 if (mAudioAttributes != NULL) {
604 free(mAudioAttributes);
605 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800606}
607
608void MediaPlayerService::Client::disconnect()
609{
Steve Block3856b092011-10-20 11:56:00 +0100610 ALOGV("disconnect(%d) from pid %d", mConnId, mPid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800611 // grab local reference and clear main reference to prevent future
612 // access to object
613 sp<MediaPlayerBase> p;
614 {
615 Mutex::Autolock l(mLock);
616 p = mPlayer;
beanzdcfefde2012-11-05 09:51:43 +0800617 mClient.clear();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800618 }
Andreas Huber20111aa2009-07-14 16:56:47 -0700619
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800620 mPlayer.clear();
621
622 // clear the notification to prevent callbacks to dead client
623 // and reset the player. We assume the player will serialize
624 // access to itself if necessary.
625 if (p != 0) {
626 p->setNotifyCallback(0, 0);
627#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +0000628 ALOGD("kill Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800629 mAntagonizer->kill();
630#endif
631 p->reset();
632 }
633
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700634 disconnectNativeWindow();
635
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800636 IPCThreadState::self()->flushCommands();
637}
638
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800639sp<MediaPlayerBase> MediaPlayerService::Client::createPlayer(player_type playerType)
640{
641 // determine if we have the right player type
642 sp<MediaPlayerBase> p = mPlayer;
643 if ((p != NULL) && (p->playerType() != playerType)) {
Steve Block3856b092011-10-20 11:56:00 +0100644 ALOGV("delete player");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800645 p.clear();
646 }
647 if (p == NULL) {
John Grossman44a7e422012-06-21 17:29:24 -0700648 p = MediaPlayerFactory::createPlayer(playerType, this, notify);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800649 }
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700650
Jason Simmonsdb29e522011-08-12 13:46:55 -0700651 if (p != NULL) {
652 p->setUID(mUID);
653 }
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700654
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800655 return p;
656}
657
John Grossmanc795b642012-02-22 15:38:35 -0800658sp<MediaPlayerBase> MediaPlayerService::Client::setDataSource_pre(
659 player_type playerType)
660{
661 ALOGV("player type = %d", playerType);
662
663 // create the right type of player
664 sp<MediaPlayerBase> p = createPlayer(playerType);
665 if (p == NULL) {
666 return p;
667 }
668
669 if (!p->hardwareOutput()) {
Marco Nelissend457c972014-02-11 08:47:07 -0800670 mAudioOutput = new AudioOutput(mAudioSessionId, IPCThreadState::self()->getCallingUid(),
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700671 mPid, mAudioAttributes);
John Grossmanc795b642012-02-22 15:38:35 -0800672 static_cast<MediaPlayerInterface*>(p.get())->setAudioSink(mAudioOutput);
673 }
674
675 return p;
676}
677
678void MediaPlayerService::Client::setDataSource_post(
679 const sp<MediaPlayerBase>& p,
680 status_t status)
681{
682 ALOGV(" setDataSource");
683 mStatus = status;
684 if (mStatus != OK) {
685 ALOGE(" error: %d", mStatus);
686 return;
687 }
688
689 // Set the re-transmission endpoint if one was chosen.
690 if (mRetransmitEndpointValid) {
691 mStatus = p->setRetransmitEndpoint(&mRetransmitEndpoint);
692 if (mStatus != NO_ERROR) {
693 ALOGE("setRetransmitEndpoint error: %d", mStatus);
694 }
695 }
696
697 if (mStatus == OK) {
698 mPlayer = p;
699 }
700}
701
Andreas Huber2db84552010-01-28 11:19:57 -0800702status_t MediaPlayerService::Client::setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800703 const sp<IMediaHTTPService> &httpService,
704 const char *url,
705 const KeyedVector<String8, String8> *headers)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800706{
Steve Block3856b092011-10-20 11:56:00 +0100707 ALOGV("setDataSource(%s)", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800708 if (url == NULL)
709 return UNKNOWN_ERROR;
710
Dave Burked681bbb2011-08-30 14:39:17 +0100711 if ((strncmp(url, "http://", 7) == 0) ||
712 (strncmp(url, "https://", 8) == 0) ||
713 (strncmp(url, "rtsp://", 7) == 0)) {
714 if (!checkPermission("android.permission.INTERNET")) {
715 return PERMISSION_DENIED;
716 }
717 }
718
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800719 if (strncmp(url, "content://", 10) == 0) {
720 // get a filedescriptor for the content Uri and
721 // pass it to the setDataSource(fd) method
722
723 String16 url16(url);
724 int fd = android::openContentProviderFile(url16);
725 if (fd < 0)
726 {
Steve Block29357bc2012-01-06 19:20:56 +0000727 ALOGE("Couldn't open fd for %s", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800728 return UNKNOWN_ERROR;
729 }
730 setDataSource(fd, 0, 0x7fffffffffLL); // this sets mStatus
731 close(fd);
732 return mStatus;
733 } else {
John Grossman44a7e422012-06-21 17:29:24 -0700734 player_type playerType = MediaPlayerFactory::getPlayerType(this, url);
John Grossmanc795b642012-02-22 15:38:35 -0800735 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
736 if (p == NULL) {
737 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800738 }
739
Andreas Huber1b86fe02014-01-29 11:13:26 -0800740 setDataSource_post(p, p->setDataSource(httpService, url, headers));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800741 return mStatus;
742 }
743}
744
745status_t MediaPlayerService::Client::setDataSource(int fd, int64_t offset, int64_t length)
746{
Steve Block3856b092011-10-20 11:56:00 +0100747 ALOGV("setDataSource fd=%d, offset=%lld, length=%lld", fd, offset, length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800748 struct stat sb;
749 int ret = fstat(fd, &sb);
750 if (ret != 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000751 ALOGE("fstat(%d) failed: %d, %s", fd, ret, strerror(errno));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800752 return UNKNOWN_ERROR;
753 }
754
Steve Block3856b092011-10-20 11:56:00 +0100755 ALOGV("st_dev = %llu", sb.st_dev);
756 ALOGV("st_mode = %u", sb.st_mode);
Mark Salyzyn77342f72014-06-18 16:31:32 -0700757 ALOGV("st_uid = %lu", static_cast<unsigned long>(sb.st_uid));
758 ALOGV("st_gid = %lu", static_cast<unsigned long>(sb.st_gid));
Steve Block3856b092011-10-20 11:56:00 +0100759 ALOGV("st_size = %llu", sb.st_size);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800760
761 if (offset >= sb.st_size) {
Steve Block29357bc2012-01-06 19:20:56 +0000762 ALOGE("offset error");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800763 ::close(fd);
764 return UNKNOWN_ERROR;
765 }
766 if (offset + length > sb.st_size) {
767 length = sb.st_size - offset;
Steve Block3856b092011-10-20 11:56:00 +0100768 ALOGV("calculated length = %lld", length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800769 }
770
John Grossman44a7e422012-06-21 17:29:24 -0700771 player_type playerType = MediaPlayerFactory::getPlayerType(this,
772 fd,
773 offset,
774 length);
John Grossmanc795b642012-02-22 15:38:35 -0800775 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
776 if (p == NULL) {
777 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800778 }
779
780 // now set data source
John Grossmanc795b642012-02-22 15:38:35 -0800781 setDataSource_post(p, p->setDataSource(fd, offset, length));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800782 return mStatus;
783}
784
Andreas Hubere2b10282010-11-23 11:41:34 -0800785status_t MediaPlayerService::Client::setDataSource(
786 const sp<IStreamSource> &source) {
787 // create the right type of player
John Grossman44a7e422012-06-21 17:29:24 -0700788 player_type playerType = MediaPlayerFactory::getPlayerType(this, source);
John Grossmanc795b642012-02-22 15:38:35 -0800789 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
Andreas Hubere2b10282010-11-23 11:41:34 -0800790 if (p == NULL) {
791 return NO_INIT;
792 }
793
Andreas Hubere2b10282010-11-23 11:41:34 -0800794 // now set data source
John Grossmanc795b642012-02-22 15:38:35 -0800795 setDataSource_post(p, p->setDataSource(source));
Andreas Hubere2b10282010-11-23 11:41:34 -0800796 return mStatus;
797}
798
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700799void MediaPlayerService::Client::disconnectNativeWindow() {
800 if (mConnectedWindow != NULL) {
801 status_t err = native_window_api_disconnect(mConnectedWindow.get(),
802 NATIVE_WINDOW_API_MEDIA);
803
804 if (err != OK) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000805 ALOGW("native_window_api_disconnect returned an error: %s (%d)",
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700806 strerror(-err), err);
807 }
808 }
809 mConnectedWindow.clear();
810}
811
Glenn Kasten11731182011-02-08 17:26:17 -0800812status_t MediaPlayerService::Client::setVideoSurfaceTexture(
Andy McFadden484566c2012-12-18 09:46:54 -0800813 const sp<IGraphicBufferProducer>& bufferProducer)
Glenn Kasten11731182011-02-08 17:26:17 -0800814{
Andy McFadden484566c2012-12-18 09:46:54 -0800815 ALOGV("[%d] setVideoSurfaceTexture(%p)", mConnId, bufferProducer.get());
Glenn Kasten11731182011-02-08 17:26:17 -0800816 sp<MediaPlayerBase> p = getPlayer();
817 if (p == 0) return UNKNOWN_ERROR;
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700818
Marco Nelissenf8880202014-11-14 07:58:25 -0800819 sp<IBinder> binder(IInterface::asBinder(bufferProducer));
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700820 if (mConnectedWindowBinder == binder) {
821 return OK;
822 }
823
824 sp<ANativeWindow> anw;
Andy McFadden484566c2012-12-18 09:46:54 -0800825 if (bufferProducer != NULL) {
Marco Nelissenee08f7e2013-09-16 13:30:01 -0700826 anw = new Surface(bufferProducer, true /* controlledByApp */);
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700827 status_t err = native_window_api_connect(anw.get(),
828 NATIVE_WINDOW_API_MEDIA);
829
830 if (err != OK) {
Steve Block29357bc2012-01-06 19:20:56 +0000831 ALOGE("setVideoSurfaceTexture failed: %d", err);
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700832 // Note that we must do the reset before disconnecting from the ANW.
833 // Otherwise queue/dequeue calls could be made on the disconnected
834 // ANW, which may result in errors.
835 reset();
836
837 disconnectNativeWindow();
838
839 return err;
840 }
841 }
842
Andy McFadden484566c2012-12-18 09:46:54 -0800843 // Note that we must set the player's new GraphicBufferProducer before
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700844 // disconnecting the old one. Otherwise queue/dequeue calls could be made
845 // on the disconnected ANW, which may result in errors.
Andy McFadden484566c2012-12-18 09:46:54 -0800846 status_t err = p->setVideoSurfaceTexture(bufferProducer);
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700847
848 disconnectNativeWindow();
849
850 mConnectedWindow = anw;
851
852 if (err == OK) {
853 mConnectedWindowBinder = binder;
854 } else {
855 disconnectNativeWindow();
856 }
857
858 return err;
Glenn Kasten11731182011-02-08 17:26:17 -0800859}
860
Nicolas Catania1d187f12009-05-12 23:25:55 -0700861status_t MediaPlayerService::Client::invoke(const Parcel& request,
862 Parcel *reply)
863{
864 sp<MediaPlayerBase> p = getPlayer();
865 if (p == NULL) return UNKNOWN_ERROR;
866 return p->invoke(request, reply);
867}
868
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700869// This call doesn't need to access the native player.
870status_t MediaPlayerService::Client::setMetadataFilter(const Parcel& filter)
871{
872 status_t status;
nikoa64c8c72009-07-20 15:07:26 -0700873 media::Metadata::Filter allow, drop;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700874
Nicolas Catania48290382009-07-10 13:53:06 -0700875 if (unmarshallFilter(filter, &allow, &status) &&
876 unmarshallFilter(filter, &drop, &status)) {
877 Mutex::Autolock lock(mLock);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700878
879 mMetadataAllow = allow;
880 mMetadataDrop = drop;
881 }
882 return status;
883}
884
Nicolas Catania48290382009-07-10 13:53:06 -0700885status_t MediaPlayerService::Client::getMetadata(
Mark Salyzyn77342f72014-06-18 16:31:32 -0700886 bool update_only, bool /*apply_filter*/, Parcel *reply)
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700887{
nikoa64c8c72009-07-20 15:07:26 -0700888 sp<MediaPlayerBase> player = getPlayer();
889 if (player == 0) return UNKNOWN_ERROR;
Nicolas Catania48290382009-07-10 13:53:06 -0700890
nikod608a812009-07-16 16:39:53 -0700891 status_t status;
892 // Placeholder for the return code, updated by the caller.
893 reply->writeInt32(-1);
894
nikoa64c8c72009-07-20 15:07:26 -0700895 media::Metadata::Filter ids;
Nicolas Catania48290382009-07-10 13:53:06 -0700896
897 // We don't block notifications while we fetch the data. We clear
898 // mMetadataUpdated first so we don't lose notifications happening
899 // during the rest of this call.
900 {
901 Mutex::Autolock lock(mLock);
902 if (update_only) {
nikod608a812009-07-16 16:39:53 -0700903 ids = mMetadataUpdated;
Nicolas Catania48290382009-07-10 13:53:06 -0700904 }
905 mMetadataUpdated.clear();
906 }
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700907
nikoa64c8c72009-07-20 15:07:26 -0700908 media::Metadata metadata(reply);
Nicolas Catania48290382009-07-10 13:53:06 -0700909
nikoa64c8c72009-07-20 15:07:26 -0700910 metadata.appendHeader();
911 status = player->getMetadata(ids, reply);
nikod608a812009-07-16 16:39:53 -0700912
913 if (status != OK) {
nikoa64c8c72009-07-20 15:07:26 -0700914 metadata.resetParcel();
Steve Block29357bc2012-01-06 19:20:56 +0000915 ALOGE("getMetadata failed %d", status);
nikod608a812009-07-16 16:39:53 -0700916 return status;
917 }
918
919 // FIXME: Implement filtering on the result. Not critical since
920 // filtering takes place on the update notifications already. This
921 // would be when all the metadata are fetch and a filter is set.
922
nikod608a812009-07-16 16:39:53 -0700923 // Everything is fine, update the metadata length.
nikoa64c8c72009-07-20 15:07:26 -0700924 metadata.updateLength();
nikod608a812009-07-16 16:39:53 -0700925 return OK;
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700926}
927
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800928status_t MediaPlayerService::Client::prepareAsync()
929{
Steve Block3856b092011-10-20 11:56:00 +0100930 ALOGV("[%d] prepareAsync", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800931 sp<MediaPlayerBase> p = getPlayer();
932 if (p == 0) return UNKNOWN_ERROR;
933 status_t ret = p->prepareAsync();
934#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +0000935 ALOGD("start Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800936 if (ret == NO_ERROR) mAntagonizer->start();
937#endif
938 return ret;
939}
940
941status_t MediaPlayerService::Client::start()
942{
Steve Block3856b092011-10-20 11:56:00 +0100943 ALOGV("[%d] start", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800944 sp<MediaPlayerBase> p = getPlayer();
945 if (p == 0) return UNKNOWN_ERROR;
946 p->setLooping(mLoop);
947 return p->start();
948}
949
950status_t MediaPlayerService::Client::stop()
951{
Steve Block3856b092011-10-20 11:56:00 +0100952 ALOGV("[%d] stop", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800953 sp<MediaPlayerBase> p = getPlayer();
954 if (p == 0) return UNKNOWN_ERROR;
955 return p->stop();
956}
957
958status_t MediaPlayerService::Client::pause()
959{
Steve Block3856b092011-10-20 11:56:00 +0100960 ALOGV("[%d] pause", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800961 sp<MediaPlayerBase> p = getPlayer();
962 if (p == 0) return UNKNOWN_ERROR;
963 return p->pause();
964}
965
966status_t MediaPlayerService::Client::isPlaying(bool* state)
967{
968 *state = false;
969 sp<MediaPlayerBase> p = getPlayer();
970 if (p == 0) return UNKNOWN_ERROR;
971 *state = p->isPlaying();
Steve Block3856b092011-10-20 11:56:00 +0100972 ALOGV("[%d] isPlaying: %d", mConnId, *state);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800973 return NO_ERROR;
974}
975
976status_t MediaPlayerService::Client::getCurrentPosition(int *msec)
977{
Steve Block3856b092011-10-20 11:56:00 +0100978 ALOGV("getCurrentPosition");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800979 sp<MediaPlayerBase> p = getPlayer();
980 if (p == 0) return UNKNOWN_ERROR;
981 status_t ret = p->getCurrentPosition(msec);
982 if (ret == NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +0100983 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800984 } else {
Steve Block29357bc2012-01-06 19:20:56 +0000985 ALOGE("getCurrentPosition returned %d", ret);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800986 }
987 return ret;
988}
989
990status_t MediaPlayerService::Client::getDuration(int *msec)
991{
Steve Block3856b092011-10-20 11:56:00 +0100992 ALOGV("getDuration");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800993 sp<MediaPlayerBase> p = getPlayer();
994 if (p == 0) return UNKNOWN_ERROR;
995 status_t ret = p->getDuration(msec);
996 if (ret == NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +0100997 ALOGV("[%d] getDuration = %d", mConnId, *msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800998 } else {
Steve Block29357bc2012-01-06 19:20:56 +0000999 ALOGE("getDuration returned %d", ret);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001000 }
1001 return ret;
1002}
1003
Marco Nelissen6b74d672012-02-28 16:07:44 -08001004status_t MediaPlayerService::Client::setNextPlayer(const sp<IMediaPlayer>& player) {
1005 ALOGV("setNextPlayer");
1006 Mutex::Autolock l(mLock);
1007 sp<Client> c = static_cast<Client*>(player.get());
1008 mNextClient = c;
John Grossman5f7e55e2012-08-24 14:47:25 -07001009
1010 if (c != NULL) {
1011 if (mAudioOutput != NULL) {
1012 mAudioOutput->setNextOutput(c->mAudioOutput);
1013 } else if ((mPlayer != NULL) && !mPlayer->hardwareOutput()) {
1014 ALOGE("no current audio output");
1015 }
1016
1017 if ((mPlayer != NULL) && (mNextClient->getPlayer() != NULL)) {
1018 mPlayer->setNextPlayer(mNextClient->getPlayer());
1019 }
Marco Nelissen6b74d672012-02-28 16:07:44 -08001020 }
John Grossman5f7e55e2012-08-24 14:47:25 -07001021
Marco Nelissen6b74d672012-02-28 16:07:44 -08001022 return OK;
1023}
1024
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001025status_t MediaPlayerService::Client::seekTo(int msec)
1026{
Steve Block3856b092011-10-20 11:56:00 +01001027 ALOGV("[%d] seekTo(%d)", mConnId, msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001028 sp<MediaPlayerBase> p = getPlayer();
1029 if (p == 0) return UNKNOWN_ERROR;
1030 return p->seekTo(msec);
1031}
1032
1033status_t MediaPlayerService::Client::reset()
1034{
Steve Block3856b092011-10-20 11:56:00 +01001035 ALOGV("[%d] reset", mConnId);
John Grossmanc795b642012-02-22 15:38:35 -08001036 mRetransmitEndpointValid = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001037 sp<MediaPlayerBase> p = getPlayer();
1038 if (p == 0) return UNKNOWN_ERROR;
1039 return p->reset();
1040}
1041
Glenn Kastenfff6d712012-01-12 16:38:12 -08001042status_t MediaPlayerService::Client::setAudioStreamType(audio_stream_type_t type)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001043{
Steve Block3856b092011-10-20 11:56:00 +01001044 ALOGV("[%d] setAudioStreamType(%d)", mConnId, type);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001045 // TODO: for hardware output, call player instead
1046 Mutex::Autolock l(mLock);
1047 if (mAudioOutput != 0) mAudioOutput->setAudioStreamType(type);
1048 return NO_ERROR;
1049}
1050
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001051status_t MediaPlayerService::Client::setAudioAttributes_l(const Parcel &parcel)
1052{
1053 if (mAudioAttributes != NULL) { free(mAudioAttributes); }
1054 mAudioAttributes = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
1055 unmarshallAudioAttributes(parcel, mAudioAttributes);
1056
1057 ALOGV("setAudioAttributes_l() usage=%d content=%d flags=0x%x tags=%s",
1058 mAudioAttributes->usage, mAudioAttributes->content_type, mAudioAttributes->flags,
1059 mAudioAttributes->tags);
1060
1061 if (mAudioOutput != 0) {
1062 mAudioOutput->setAudioAttributes(mAudioAttributes);
1063 }
1064 return NO_ERROR;
1065}
1066
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001067status_t MediaPlayerService::Client::setLooping(int loop)
1068{
Steve Block3856b092011-10-20 11:56:00 +01001069 ALOGV("[%d] setLooping(%d)", mConnId, loop);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001070 mLoop = loop;
1071 sp<MediaPlayerBase> p = getPlayer();
1072 if (p != 0) return p->setLooping(loop);
1073 return NO_ERROR;
1074}
1075
1076status_t MediaPlayerService::Client::setVolume(float leftVolume, float rightVolume)
1077{
Steve Block3856b092011-10-20 11:56:00 +01001078 ALOGV("[%d] setVolume(%f, %f)", mConnId, leftVolume, rightVolume);
John Grossman761defc2012-02-09 15:09:05 -08001079
1080 // for hardware output, call player instead
1081 sp<MediaPlayerBase> p = getPlayer();
1082 {
1083 Mutex::Autolock l(mLock);
1084 if (p != 0 && p->hardwareOutput()) {
1085 MediaPlayerHWInterface* hwp =
1086 reinterpret_cast<MediaPlayerHWInterface*>(p.get());
1087 return hwp->setVolume(leftVolume, rightVolume);
1088 } else {
1089 if (mAudioOutput != 0) mAudioOutput->setVolume(leftVolume, rightVolume);
1090 return NO_ERROR;
1091 }
1092 }
1093
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001094 return NO_ERROR;
1095}
1096
Eric Laurent2beeb502010-07-16 07:43:46 -07001097status_t MediaPlayerService::Client::setAuxEffectSendLevel(float level)
1098{
Steve Block3856b092011-10-20 11:56:00 +01001099 ALOGV("[%d] setAuxEffectSendLevel(%f)", mConnId, level);
Eric Laurent2beeb502010-07-16 07:43:46 -07001100 Mutex::Autolock l(mLock);
1101 if (mAudioOutput != 0) return mAudioOutput->setAuxEffectSendLevel(level);
1102 return NO_ERROR;
1103}
1104
1105status_t MediaPlayerService::Client::attachAuxEffect(int effectId)
1106{
Steve Block3856b092011-10-20 11:56:00 +01001107 ALOGV("[%d] attachAuxEffect(%d)", mConnId, effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -07001108 Mutex::Autolock l(mLock);
1109 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId);
1110 return NO_ERROR;
1111}
Nicolas Catania48290382009-07-10 13:53:06 -07001112
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001113status_t MediaPlayerService::Client::setParameter(int key, const Parcel &request) {
Steve Block3856b092011-10-20 11:56:00 +01001114 ALOGV("[%d] setParameter(%d)", mConnId, key);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001115 switch (key) {
1116 case KEY_PARAMETER_AUDIO_ATTRIBUTES:
1117 {
1118 Mutex::Autolock l(mLock);
1119 return setAudioAttributes_l(request);
1120 }
1121 default:
1122 sp<MediaPlayerBase> p = getPlayer();
1123 if (p == 0) { return UNKNOWN_ERROR; }
1124 return p->setParameter(key, request);
1125 }
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001126}
1127
1128status_t MediaPlayerService::Client::getParameter(int key, Parcel *reply) {
Steve Block3856b092011-10-20 11:56:00 +01001129 ALOGV("[%d] getParameter(%d)", mConnId, key);
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001130 sp<MediaPlayerBase> p = getPlayer();
1131 if (p == 0) return UNKNOWN_ERROR;
1132 return p->getParameter(key, reply);
1133}
1134
John Grossmanc795b642012-02-22 15:38:35 -08001135status_t MediaPlayerService::Client::setRetransmitEndpoint(
1136 const struct sockaddr_in* endpoint) {
1137
1138 if (NULL != endpoint) {
1139 uint32_t a = ntohl(endpoint->sin_addr.s_addr);
1140 uint16_t p = ntohs(endpoint->sin_port);
1141 ALOGV("[%d] setRetransmitEndpoint(%u.%u.%u.%u:%hu)", mConnId,
1142 (a >> 24), (a >> 16) & 0xFF, (a >> 8) & 0xFF, (a & 0xFF), p);
1143 } else {
1144 ALOGV("[%d] setRetransmitEndpoint = <none>", mConnId);
1145 }
1146
1147 sp<MediaPlayerBase> p = getPlayer();
1148
1149 // Right now, the only valid time to set a retransmit endpoint is before
1150 // player selection has been made (since the presence or absence of a
1151 // retransmit endpoint is going to determine which player is selected during
1152 // setDataSource).
1153 if (p != 0) return INVALID_OPERATION;
1154
1155 if (NULL != endpoint) {
1156 mRetransmitEndpoint = *endpoint;
1157 mRetransmitEndpointValid = true;
1158 } else {
1159 mRetransmitEndpointValid = false;
1160 }
1161
1162 return NO_ERROR;
1163}
1164
John Grossman44a7e422012-06-21 17:29:24 -07001165status_t MediaPlayerService::Client::getRetransmitEndpoint(
1166 struct sockaddr_in* endpoint)
1167{
1168 if (NULL == endpoint)
1169 return BAD_VALUE;
1170
1171 sp<MediaPlayerBase> p = getPlayer();
1172
1173 if (p != NULL)
1174 return p->getRetransmitEndpoint(endpoint);
1175
1176 if (!mRetransmitEndpointValid)
1177 return NO_INIT;
1178
1179 *endpoint = mRetransmitEndpoint;
1180
1181 return NO_ERROR;
1182}
1183
Gloria Wangb483c472011-04-11 17:23:27 -07001184void MediaPlayerService::Client::notify(
1185 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001186{
1187 Client* client = static_cast<Client*>(cookie);
James Dongb8a98252012-08-26 16:13:03 -07001188 if (client == NULL) {
1189 return;
1190 }
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001191
James Dongb8a98252012-08-26 16:13:03 -07001192 sp<IMediaPlayerClient> c;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001193 {
1194 Mutex::Autolock l(client->mLock);
James Dongb8a98252012-08-26 16:13:03 -07001195 c = client->mClient;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001196 if (msg == MEDIA_PLAYBACK_COMPLETE && client->mNextClient != NULL) {
John Grossmancb0b7552012-08-23 17:47:31 -07001197 if (client->mAudioOutput != NULL)
1198 client->mAudioOutput->switchToNextOutput();
Marco Nelissen6b74d672012-02-28 16:07:44 -08001199 client->mNextClient->start();
1200 client->mNextClient->mClient->notify(MEDIA_INFO, MEDIA_INFO_STARTED_AS_NEXT, 0, obj);
1201 }
1202 }
1203
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001204 if (MEDIA_INFO == msg &&
Nicolas Catania48290382009-07-10 13:53:06 -07001205 MEDIA_INFO_METADATA_UPDATE == ext1) {
nikoa64c8c72009-07-20 15:07:26 -07001206 const media::Metadata::Type metadata_type = ext2;
Nicolas Catania48290382009-07-10 13:53:06 -07001207
1208 if(client->shouldDropMetadata(metadata_type)) {
1209 return;
1210 }
1211
1212 // Update the list of metadata that have changed. getMetadata
1213 // also access mMetadataUpdated and clears it.
1214 client->addNewMetadataUpdate(metadata_type);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001215 }
James Dongb8a98252012-08-26 16:13:03 -07001216
1217 if (c != NULL) {
1218 ALOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1219 c->notify(msg, ext1, ext2, obj);
1220 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001221}
1222
Nicolas Catania48290382009-07-10 13:53:06 -07001223
nikoa64c8c72009-07-20 15:07:26 -07001224bool MediaPlayerService::Client::shouldDropMetadata(media::Metadata::Type code) const
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001225{
Nicolas Catania48290382009-07-10 13:53:06 -07001226 Mutex::Autolock lock(mLock);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001227
Nicolas Catania48290382009-07-10 13:53:06 -07001228 if (findMetadata(mMetadataDrop, code)) {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001229 return true;
1230 }
1231
Nicolas Catania48290382009-07-10 13:53:06 -07001232 if (mMetadataAllow.isEmpty() || findMetadata(mMetadataAllow, code)) {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001233 return false;
Nicolas Catania48290382009-07-10 13:53:06 -07001234 } else {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001235 return true;
1236 }
1237}
1238
Nicolas Catania48290382009-07-10 13:53:06 -07001239
nikoa64c8c72009-07-20 15:07:26 -07001240void MediaPlayerService::Client::addNewMetadataUpdate(media::Metadata::Type metadata_type) {
Nicolas Catania48290382009-07-10 13:53:06 -07001241 Mutex::Autolock lock(mLock);
1242 if (mMetadataUpdated.indexOf(metadata_type) < 0) {
1243 mMetadataUpdated.add(metadata_type);
1244 }
1245}
1246
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001247#if CALLBACK_ANTAGONIZER
1248const int Antagonizer::interval = 10000; // 10 msecs
1249
1250Antagonizer::Antagonizer(notify_callback_f cb, void* client) :
1251 mExit(false), mActive(false), mClient(client), mCb(cb)
1252{
1253 createThread(callbackThread, this);
1254}
1255
1256void Antagonizer::kill()
1257{
1258 Mutex::Autolock _l(mLock);
1259 mActive = false;
1260 mExit = true;
1261 mCondition.wait(mLock);
1262}
1263
1264int Antagonizer::callbackThread(void* user)
1265{
Steve Blockb8a80522011-12-20 16:23:08 +00001266 ALOGD("Antagonizer started");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001267 Antagonizer* p = reinterpret_cast<Antagonizer*>(user);
1268 while (!p->mExit) {
1269 if (p->mActive) {
Steve Block3856b092011-10-20 11:56:00 +01001270 ALOGV("send event");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001271 p->mCb(p->mClient, 0, 0, 0);
1272 }
1273 usleep(interval);
1274 }
1275 Mutex::Autolock _l(p->mLock);
1276 p->mCondition.signal();
Steve Blockb8a80522011-12-20 16:23:08 +00001277 ALOGD("Antagonizer stopped");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001278 return 0;
1279}
1280#endif
1281
Andreas Huber1b86fe02014-01-29 11:13:26 -08001282status_t MediaPlayerService::decode(
1283 const sp<IMediaHTTPService> &httpService,
1284 const char* url,
1285 uint32_t *pSampleRate,
1286 int* pNumChannels,
1287 audio_format_t* pFormat,
1288 const sp<IMemoryHeap>& heap,
1289 size_t *pSize)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001290{
Steve Block3856b092011-10-20 11:56:00 +01001291 ALOGV("decode(%s)", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001292 sp<MediaPlayerBase> player;
Eric Laurent3d00aa62013-09-24 09:53:27 -07001293 status_t status = BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001294
1295 // Protect our precious, precious DRMd ringtones by only allowing
1296 // decoding of http, but not filesystem paths or content Uris.
1297 // If the application wants to decode those, it should open a
1298 // filedescriptor for them and use that.
1299 if (url != NULL && strncmp(url, "http://", 7) != 0) {
Steve Blockb8a80522011-12-20 16:23:08 +00001300 ALOGD("Can't decode %s by path, use filedescriptor instead", url);
Eric Laurent3d00aa62013-09-24 09:53:27 -07001301 return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001302 }
1303
John Grossman44a7e422012-06-21 17:29:24 -07001304 player_type playerType =
1305 MediaPlayerFactory::getPlayerType(NULL /* client */, url);
Steve Block3856b092011-10-20 11:56:00 +01001306 ALOGV("player type = %d", playerType);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001307
1308 // create the right type of player
Eric Laurent3d00aa62013-09-24 09:53:27 -07001309 sp<AudioCache> cache = new AudioCache(heap);
John Grossman44a7e422012-06-21 17:29:24 -07001310 player = MediaPlayerFactory::createPlayer(playerType, cache.get(), cache->notify);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001311 if (player == NULL) goto Exit;
1312 if (player->hardwareOutput()) goto Exit;
1313
1314 static_cast<MediaPlayerInterface*>(player.get())->setAudioSink(cache);
1315
1316 // set data source
Andreas Huber1b86fe02014-01-29 11:13:26 -08001317 if (player->setDataSource(httpService, url) != NO_ERROR) goto Exit;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001318
Steve Block3856b092011-10-20 11:56:00 +01001319 ALOGV("prepare");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001320 player->prepareAsync();
1321
Steve Block3856b092011-10-20 11:56:00 +01001322 ALOGV("wait for prepare");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001323 if (cache->wait() != NO_ERROR) goto Exit;
1324
Steve Block3856b092011-10-20 11:56:00 +01001325 ALOGV("start");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001326 player->start();
1327
Steve Block3856b092011-10-20 11:56:00 +01001328 ALOGV("wait for playback complete");
Eric Laurent9cb839a2011-09-27 09:48:56 -07001329 cache->wait();
1330 // in case of error, return what was successfully decoded.
1331 if (cache->size() == 0) {
1332 goto Exit;
1333 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001334
Eric Laurent3d00aa62013-09-24 09:53:27 -07001335 *pSize = cache->size();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001336 *pSampleRate = cache->sampleRate();
1337 *pNumChannels = cache->channelCount();
Glenn Kastene1c39622012-01-04 09:36:37 -08001338 *pFormat = cache->format();
Eric Laurent3d00aa62013-09-24 09:53:27 -07001339 ALOGV("return size %d sampleRate=%u, channelCount = %d, format = %d",
1340 *pSize, *pSampleRate, *pNumChannels, *pFormat);
1341 status = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001342
1343Exit:
1344 if (player != 0) player->reset();
Eric Laurent3d00aa62013-09-24 09:53:27 -07001345 return status;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001346}
1347
Eric Laurent3d00aa62013-09-24 09:53:27 -07001348status_t MediaPlayerService::decode(int fd, int64_t offset, int64_t length,
1349 uint32_t *pSampleRate, int* pNumChannels,
1350 audio_format_t* pFormat,
1351 const sp<IMemoryHeap>& heap, size_t *pSize)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001352{
Steve Block3856b092011-10-20 11:56:00 +01001353 ALOGV("decode(%d, %lld, %lld)", fd, offset, length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001354 sp<MediaPlayerBase> player;
Eric Laurent3d00aa62013-09-24 09:53:27 -07001355 status_t status = BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001356
John Grossman44a7e422012-06-21 17:29:24 -07001357 player_type playerType = MediaPlayerFactory::getPlayerType(NULL /* client */,
1358 fd,
1359 offset,
1360 length);
Steve Block3856b092011-10-20 11:56:00 +01001361 ALOGV("player type = %d", playerType);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001362
1363 // create the right type of player
Eric Laurent3d00aa62013-09-24 09:53:27 -07001364 sp<AudioCache> cache = new AudioCache(heap);
John Grossman44a7e422012-06-21 17:29:24 -07001365 player = MediaPlayerFactory::createPlayer(playerType, cache.get(), cache->notify);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001366 if (player == NULL) goto Exit;
1367 if (player->hardwareOutput()) goto Exit;
1368
1369 static_cast<MediaPlayerInterface*>(player.get())->setAudioSink(cache);
1370
1371 // set data source
1372 if (player->setDataSource(fd, offset, length) != NO_ERROR) goto Exit;
1373
Steve Block3856b092011-10-20 11:56:00 +01001374 ALOGV("prepare");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001375 player->prepareAsync();
1376
Steve Block3856b092011-10-20 11:56:00 +01001377 ALOGV("wait for prepare");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001378 if (cache->wait() != NO_ERROR) goto Exit;
1379
Steve Block3856b092011-10-20 11:56:00 +01001380 ALOGV("start");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001381 player->start();
1382
Steve Block3856b092011-10-20 11:56:00 +01001383 ALOGV("wait for playback complete");
Eric Laurent9cb839a2011-09-27 09:48:56 -07001384 cache->wait();
1385 // in case of error, return what was successfully decoded.
1386 if (cache->size() == 0) {
1387 goto Exit;
1388 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001389
Eric Laurent3d00aa62013-09-24 09:53:27 -07001390 *pSize = cache->size();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001391 *pSampleRate = cache->sampleRate();
1392 *pNumChannels = cache->channelCount();
1393 *pFormat = cache->format();
Eric Laurent3d00aa62013-09-24 09:53:27 -07001394 ALOGV("return size %d, sampleRate=%u, channelCount = %d, format = %d",
1395 *pSize, *pSampleRate, *pNumChannels, *pFormat);
1396 status = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001397
1398Exit:
1399 if (player != 0) player->reset();
Eric Laurent3d00aa62013-09-24 09:53:27 -07001400 return status;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001401}
1402
Marco Nelissen10dbb8e2009-09-20 10:42:13 -07001403
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001404#undef LOG_TAG
1405#define LOG_TAG "AudioSink"
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001406MediaPlayerService::AudioOutput::AudioOutput(int sessionId, int uid, int pid,
1407 const audio_attributes_t* attr)
Andreas Huber20111aa2009-07-14 16:56:47 -07001408 : mCallback(NULL),
Eric Laurenta514bdb2010-06-21 09:27:30 -07001409 mCallbackCookie(NULL),
Marco Nelissen6b74d672012-02-28 16:07:44 -08001410 mCallbackData(NULL),
Marco Nelissen4110c102012-03-29 09:31:28 -07001411 mBytesWritten(0),
Eric Laurent1948eb32012-04-13 16:50:19 -07001412 mSessionId(sessionId),
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001413 mUid(uid),
Marco Nelissend457c972014-02-11 08:47:07 -08001414 mPid(pid),
Eric Laurent1948eb32012-04-13 16:50:19 -07001415 mFlags(AUDIO_OUTPUT_FLAG_NONE) {
Steve Block3856b092011-10-20 11:56:00 +01001416 ALOGV("AudioOutput(%d)", sessionId);
Dima Zavinfce7a472011-04-19 22:30:36 -07001417 mStreamType = AUDIO_STREAM_MUSIC;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001418 mLeftVolume = 1.0;
1419 mRightVolume = 1.0;
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001420 mPlaybackRatePermille = 1000;
1421 mSampleRateHz = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001422 mMsecsPerFrame = 0;
Eric Laurent2beeb502010-07-16 07:43:46 -07001423 mAuxEffectId = 0;
1424 mSendLevel = 0.0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001425 setMinBufferCount();
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001426 mAttributes = attr;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001427}
1428
1429MediaPlayerService::AudioOutput::~AudioOutput()
1430{
1431 close();
Marco Nelissen6b74d672012-02-28 16:07:44 -08001432 delete mCallbackData;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001433}
1434
1435void MediaPlayerService::AudioOutput::setMinBufferCount()
1436{
1437 char value[PROPERTY_VALUE_MAX];
1438 if (property_get("ro.kernel.qemu", value, 0)) {
1439 mIsOnEmulator = true;
1440 mMinBufferCount = 12; // to prevent systematic buffer underrun for emulator
1441 }
1442}
1443
1444bool MediaPlayerService::AudioOutput::isOnEmulator()
1445{
1446 setMinBufferCount();
1447 return mIsOnEmulator;
1448}
1449
1450int MediaPlayerService::AudioOutput::getMinBufferCount()
1451{
1452 setMinBufferCount();
1453 return mMinBufferCount;
1454}
1455
1456ssize_t MediaPlayerService::AudioOutput::bufferSize() const
1457{
1458 if (mTrack == 0) return NO_INIT;
1459 return mTrack->frameCount() * frameSize();
1460}
1461
1462ssize_t MediaPlayerService::AudioOutput::frameCount() const
1463{
1464 if (mTrack == 0) return NO_INIT;
1465 return mTrack->frameCount();
1466}
1467
1468ssize_t MediaPlayerService::AudioOutput::channelCount() const
1469{
1470 if (mTrack == 0) return NO_INIT;
1471 return mTrack->channelCount();
1472}
1473
1474ssize_t MediaPlayerService::AudioOutput::frameSize() const
1475{
1476 if (mTrack == 0) return NO_INIT;
1477 return mTrack->frameSize();
1478}
1479
1480uint32_t MediaPlayerService::AudioOutput::latency () const
1481{
Eric Laurentdb354e52012-03-05 17:27:11 -08001482 if (mTrack == 0) return 0;
1483 return mTrack->latency();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001484}
1485
1486float MediaPlayerService::AudioOutput::msecsPerFrame() const
1487{
1488 return mMsecsPerFrame;
1489}
1490
Marco Nelissen4110c102012-03-29 09:31:28 -07001491status_t MediaPlayerService::AudioOutput::getPosition(uint32_t *position) const
Eric Laurent342e9cf2010-01-19 17:37:09 -08001492{
1493 if (mTrack == 0) return NO_INIT;
1494 return mTrack->getPosition(position);
1495}
1496
Lajos Molnar06ad1522014-08-28 07:27:44 -07001497status_t MediaPlayerService::AudioOutput::getTimestamp(AudioTimestamp &ts) const
1498{
1499 if (mTrack == 0) return NO_INIT;
1500 return mTrack->getTimestamp(ts);
1501}
1502
Marco Nelissen4110c102012-03-29 09:31:28 -07001503status_t MediaPlayerService::AudioOutput::getFramesWritten(uint32_t *frameswritten) const
1504{
1505 if (mTrack == 0) return NO_INIT;
1506 *frameswritten = mBytesWritten / frameSize();
1507 return OK;
1508}
1509
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001510status_t MediaPlayerService::AudioOutput::setParameters(const String8& keyValuePairs)
1511{
1512 if (mTrack == 0) return NO_INIT;
1513 return mTrack->setParameters(keyValuePairs);
1514}
1515
1516String8 MediaPlayerService::AudioOutput::getParameters(const String8& keys)
1517{
1518 if (mTrack == 0) return String8::empty();
1519 return mTrack->getParameters(keys);
1520}
1521
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001522void MediaPlayerService::AudioOutput::setAudioAttributes(const audio_attributes_t * attributes) {
1523 mAttributes = attributes;
1524}
1525
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001526void MediaPlayerService::AudioOutput::deleteRecycledTrack()
1527{
1528 ALOGV("deleteRecycledTrack");
1529
1530 if (mRecycledTrack != 0) {
1531
1532 if (mCallbackData != NULL) {
1533 mCallbackData->setOutput(NULL);
1534 mCallbackData->endTrackSwitch();
1535 }
1536
1537 if ((mRecycledTrack->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) {
1538 mRecycledTrack->flush();
1539 }
1540 // An offloaded track isn't flushed because the STREAM_END is reported
1541 // slightly prematurely to allow time for the gapless track switch
1542 // but this means that if we decide not to recycle the track there
1543 // could be a small amount of residual data still playing. We leave
1544 // AudioFlinger to drain the track.
1545
1546 mRecycledTrack.clear();
1547 delete mCallbackData;
1548 mCallbackData = NULL;
1549 close();
1550 }
1551}
1552
Andreas Huber20111aa2009-07-14 16:56:47 -07001553status_t MediaPlayerService::AudioOutput::open(
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001554 uint32_t sampleRate, int channelCount, audio_channel_mask_t channelMask,
1555 audio_format_t format, int bufferCount,
Eric Laurent1948eb32012-04-13 16:50:19 -07001556 AudioCallback cb, void *cookie,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001557 audio_output_flags_t flags,
1558 const audio_offload_info_t *offloadInfo)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001559{
Andreas Huber20111aa2009-07-14 16:56:47 -07001560 mCallback = cb;
1561 mCallbackCookie = cookie;
1562
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001563 // Check argument "bufferCount" against the mininum buffer count
1564 if (bufferCount < mMinBufferCount) {
Steve Blockb8a80522011-12-20 16:23:08 +00001565 ALOGD("bufferCount (%d) is too small and increased to %d", bufferCount, mMinBufferCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001566 bufferCount = mMinBufferCount;
1567
1568 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001569 ALOGV("open(%u, %d, 0x%x, 0x%x, %d, %d 0x%x)", sampleRate, channelCount, channelMask,
1570 format, bufferCount, mSessionId, flags);
Glenn Kasten1127d652012-11-14 08:44:39 -08001571 uint32_t afSampleRate;
Glenn Kasten7da35f22012-11-14 12:54:39 -08001572 size_t afFrameCount;
Glenn Kastenbce50bf2014-02-27 15:29:51 -08001573 size_t frameCount;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001574
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001575 // offloading is only supported in callback mode for now.
1576 // offloadInfo must be present if offload flag is set
1577 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) &&
1578 ((cb == NULL) || (offloadInfo == NULL))) {
1579 return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001580 }
1581
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001582 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
1583 frameCount = 0; // AudioTrack will get frame count from AudioFlinger
1584 } else {
1585 uint32_t afSampleRate;
1586 size_t afFrameCount;
1587
1588 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) != NO_ERROR) {
1589 return NO_INIT;
1590 }
1591 if (AudioSystem::getOutputSamplingRate(&afSampleRate, mStreamType) != NO_ERROR) {
1592 return NO_INIT;
1593 }
1594
1595 frameCount = (sampleRate*afFrameCount*bufferCount)/afSampleRate;
1596 }
Andreas Huber20111aa2009-07-14 16:56:47 -07001597
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001598 if (channelMask == CHANNEL_MASK_USE_CHANNEL_ORDER) {
Glenn Kastenab334fd2012-03-14 12:56:06 -07001599 channelMask = audio_channel_out_mask_from_count(channelCount);
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001600 if (0 == channelMask) {
1601 ALOGE("open() error, can\'t derive mask for %d audio channels", channelCount);
1602 return NO_INIT;
1603 }
1604 }
Eric Laurent1948eb32012-04-13 16:50:19 -07001605
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001606 // Check whether we can recycle the track
1607 bool reuse = false;
1608 bool bothOffloaded = false;
Marco Nelissen67295b52012-06-11 14:52:53 -07001609
Glenn Kasten2799d742013-05-30 14:33:29 -07001610 if (mRecycledTrack != 0) {
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001611 // check whether we are switching between two offloaded tracks
1612 bothOffloaded = (flags & mRecycledTrack->getFlags()
1613 & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0;
Marco Nelissen67295b52012-06-11 14:52:53 -07001614
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001615 // check if the existing track can be reused as-is, or if a new track needs to be created.
1616 reuse = true;
1617
Marco Nelissen67295b52012-06-11 14:52:53 -07001618 if ((mCallbackData == NULL && mCallback != NULL) ||
1619 (mCallbackData != NULL && mCallback == NULL)) {
1620 // recycled track uses callbacks but the caller wants to use writes, or vice versa
1621 ALOGV("can't chain callback and write");
1622 reuse = false;
1623 } else if ((mRecycledTrack->getSampleRate() != sampleRate) ||
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001624 (mRecycledTrack->channelCount() != (uint32_t)channelCount) ) {
1625 ALOGV("samplerate, channelcount differ: %u/%u Hz, %u/%d ch",
Marco Nelissen67295b52012-06-11 14:52:53 -07001626 mRecycledTrack->getSampleRate(), sampleRate,
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001627 mRecycledTrack->channelCount(), channelCount);
Marco Nelissen67295b52012-06-11 14:52:53 -07001628 reuse = false;
1629 } else if (flags != mFlags) {
1630 ALOGV("output flags differ %08x/%08x", flags, mFlags);
1631 reuse = false;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001632 } else if (mRecycledTrack->format() != format) {
1633 reuse = false;
Marco Nelissen67295b52012-06-11 14:52:53 -07001634 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001635 } else {
1636 ALOGV("no track available to recycle");
1637 }
1638
1639 ALOGV_IF(bothOffloaded, "both tracks offloaded");
1640
1641 // If we can't recycle and both tracks are offloaded
1642 // we must close the previous output before opening a new one
1643 if (bothOffloaded && !reuse) {
1644 ALOGV("both offloaded and not recycling");
1645 deleteRecycledTrack();
1646 }
1647
1648 sp<AudioTrack> t;
1649 CallbackData *newcbd = NULL;
1650
1651 // We don't attempt to create a new track if we are recycling an
1652 // offloaded track. But, if we are recycling a non-offloaded or we
1653 // are switching where one is offloaded and one isn't then we create
1654 // the new track in advance so that we can read additional stream info
1655
1656 if (!(reuse && bothOffloaded)) {
1657 ALOGV("creating new AudioTrack");
1658
1659 if (mCallback != NULL) {
1660 newcbd = new CallbackData(this);
1661 t = new AudioTrack(
1662 mStreamType,
1663 sampleRate,
1664 format,
1665 channelMask,
1666 frameCount,
1667 flags,
1668 CallbackWrapper,
1669 newcbd,
1670 0, // notification frames
1671 mSessionId,
1672 AudioTrack::TRANSFER_CALLBACK,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001673 offloadInfo,
Marco Nelissend457c972014-02-11 08:47:07 -08001674 mUid,
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001675 mPid,
1676 mAttributes);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001677 } else {
1678 t = new AudioTrack(
1679 mStreamType,
1680 sampleRate,
1681 format,
1682 channelMask,
1683 frameCount,
1684 flags,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001685 NULL, // callback
1686 NULL, // user data
1687 0, // notification frames
1688 mSessionId,
1689 AudioTrack::TRANSFER_DEFAULT,
1690 NULL, // offload info
Marco Nelissend457c972014-02-11 08:47:07 -08001691 mUid,
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001692 mPid,
1693 mAttributes);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001694 }
1695
1696 if ((t == 0) || (t->initCheck() != NO_ERROR)) {
1697 ALOGE("Unable to create audio track");
1698 delete newcbd;
1699 return NO_INIT;
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001700 } else {
1701 // successful AudioTrack initialization implies a legacy stream type was generated
1702 // from the audio attributes
1703 mStreamType = t->streamType();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001704 }
1705 }
1706
1707 if (reuse) {
1708 CHECK(mRecycledTrack != NULL);
1709
1710 if (!bothOffloaded) {
1711 if (mRecycledTrack->frameCount() != t->frameCount()) {
1712 ALOGV("framecount differs: %u/%u frames",
1713 mRecycledTrack->frameCount(), t->frameCount());
1714 reuse = false;
1715 }
1716 }
1717
Marco Nelissen67295b52012-06-11 14:52:53 -07001718 if (reuse) {
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001719 ALOGV("chaining to next output and recycling track");
Marco Nelissen67295b52012-06-11 14:52:53 -07001720 close();
1721 mTrack = mRecycledTrack;
Glenn Kasten2799d742013-05-30 14:33:29 -07001722 mRecycledTrack.clear();
Marco Nelissen67295b52012-06-11 14:52:53 -07001723 if (mCallbackData != NULL) {
1724 mCallbackData->setOutput(this);
1725 }
Marco Nelissen67295b52012-06-11 14:52:53 -07001726 delete newcbd;
1727 return OK;
1728 }
Marco Nelissen67295b52012-06-11 14:52:53 -07001729 }
1730
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001731 // we're not going to reuse the track, unblock and flush it
1732 // this was done earlier if both tracks are offloaded
1733 if (!bothOffloaded) {
1734 deleteRecycledTrack();
1735 }
1736
1737 CHECK((t != NULL) && ((mCallback == NULL) || (newcbd != NULL)));
1738
Marco Nelissen67295b52012-06-11 14:52:53 -07001739 mCallbackData = newcbd;
Steve Block3856b092011-10-20 11:56:00 +01001740 ALOGV("setVolume");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001741 t->setVolume(mLeftVolume, mRightVolume);
Eric Laurent2beeb502010-07-16 07:43:46 -07001742
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001743 mSampleRateHz = sampleRate;
Eric Laurent1948eb32012-04-13 16:50:19 -07001744 mFlags = flags;
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001745 mMsecsPerFrame = mPlaybackRatePermille / (float) sampleRate;
Marco Nelissen99448602012-04-02 12:16:49 -07001746 uint32_t pos;
1747 if (t->getPosition(&pos) == OK) {
1748 mBytesWritten = uint64_t(pos) * t->frameSize();
1749 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001750 mTrack = t;
Eric Laurent2beeb502010-07-16 07:43:46 -07001751
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001752 status_t res = NO_ERROR;
1753 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) {
1754 res = t->setSampleRate(mPlaybackRatePermille * mSampleRateHz / 1000);
1755 if (res == NO_ERROR) {
1756 t->setAuxEffectSendLevel(mSendLevel);
1757 res = t->attachAuxEffect(mAuxEffectId);
1758 }
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001759 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001760 ALOGV("open() DONE status %d", res);
1761 return res;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001762}
1763
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001764status_t MediaPlayerService::AudioOutput::start()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001765{
Steve Block3856b092011-10-20 11:56:00 +01001766 ALOGV("start");
Marco Nelissen6b74d672012-02-28 16:07:44 -08001767 if (mCallbackData != NULL) {
1768 mCallbackData->endTrackSwitch();
1769 }
Glenn Kasten2799d742013-05-30 14:33:29 -07001770 if (mTrack != 0) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001771 mTrack->setVolume(mLeftVolume, mRightVolume);
Eric Laurent2beeb502010-07-16 07:43:46 -07001772 mTrack->setAuxEffectSendLevel(mSendLevel);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001773 return mTrack->start();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001774 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001775 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001776}
1777
Marco Nelissen6b74d672012-02-28 16:07:44 -08001778void MediaPlayerService::AudioOutput::setNextOutput(const sp<AudioOutput>& nextOutput) {
1779 mNextOutput = nextOutput;
1780}
Marco Nelissen7ee8ac92010-01-12 09:23:54 -08001781
1782
Marco Nelissen6b74d672012-02-28 16:07:44 -08001783void MediaPlayerService::AudioOutput::switchToNextOutput() {
1784 ALOGV("switchToNextOutput");
1785 if (mNextOutput != NULL) {
1786 if (mCallbackData != NULL) {
1787 mCallbackData->beginTrackSwitch();
1788 }
1789 delete mNextOutput->mCallbackData;
1790 mNextOutput->mCallbackData = mCallbackData;
1791 mCallbackData = NULL;
1792 mNextOutput->mRecycledTrack = mTrack;
Glenn Kasten2799d742013-05-30 14:33:29 -07001793 mTrack.clear();
Marco Nelissen6b74d672012-02-28 16:07:44 -08001794 mNextOutput->mSampleRateHz = mSampleRateHz;
1795 mNextOutput->mMsecsPerFrame = mMsecsPerFrame;
Marco Nelissen4110c102012-03-29 09:31:28 -07001796 mNextOutput->mBytesWritten = mBytesWritten;
Marco Nelissend791e092012-06-11 17:00:59 -07001797 mNextOutput->mFlags = mFlags;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001798 }
1799}
1800
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001801ssize_t MediaPlayerService::AudioOutput::write(const void* buffer, size_t size)
1802{
Glenn Kastenadad3d72014-02-21 14:51:43 -08001803 LOG_ALWAYS_FATAL_IF(mCallback != NULL, "Don't call write if supplying a callback.");
Andreas Huber20111aa2009-07-14 16:56:47 -07001804
Steve Block3856b092011-10-20 11:56:00 +01001805 //ALOGV("write(%p, %u)", buffer, size);
Glenn Kasten2799d742013-05-30 14:33:29 -07001806 if (mTrack != 0) {
Marco Nelissen10dbb8e2009-09-20 10:42:13 -07001807 ssize_t ret = mTrack->write(buffer, size);
Andy Hunga31335a2014-08-20 17:37:59 -07001808 if (ret >= 0) {
1809 mBytesWritten += ret;
1810 }
Marco Nelissen10dbb8e2009-09-20 10:42:13 -07001811 return ret;
1812 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001813 return NO_INIT;
1814}
1815
1816void MediaPlayerService::AudioOutput::stop()
1817{
Steve Block3856b092011-10-20 11:56:00 +01001818 ALOGV("stop");
Glenn Kasten2799d742013-05-30 14:33:29 -07001819 if (mTrack != 0) mTrack->stop();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001820}
1821
1822void MediaPlayerService::AudioOutput::flush()
1823{
Steve Block3856b092011-10-20 11:56:00 +01001824 ALOGV("flush");
Glenn Kasten2799d742013-05-30 14:33:29 -07001825 if (mTrack != 0) mTrack->flush();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001826}
1827
1828void MediaPlayerService::AudioOutput::pause()
1829{
Steve Block3856b092011-10-20 11:56:00 +01001830 ALOGV("pause");
Glenn Kasten2799d742013-05-30 14:33:29 -07001831 if (mTrack != 0) mTrack->pause();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001832}
1833
1834void MediaPlayerService::AudioOutput::close()
1835{
Steve Block3856b092011-10-20 11:56:00 +01001836 ALOGV("close");
Glenn Kasten2799d742013-05-30 14:33:29 -07001837 mTrack.clear();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001838}
1839
1840void MediaPlayerService::AudioOutput::setVolume(float left, float right)
1841{
Steve Block3856b092011-10-20 11:56:00 +01001842 ALOGV("setVolume(%f, %f)", left, right);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001843 mLeftVolume = left;
1844 mRightVolume = right;
Glenn Kasten2799d742013-05-30 14:33:29 -07001845 if (mTrack != 0) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001846 mTrack->setVolume(left, right);
1847 }
1848}
1849
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001850status_t MediaPlayerService::AudioOutput::setPlaybackRatePermille(int32_t ratePermille)
1851{
1852 ALOGV("setPlaybackRatePermille(%d)", ratePermille);
1853 status_t res = NO_ERROR;
Glenn Kasten2799d742013-05-30 14:33:29 -07001854 if (mTrack != 0) {
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08001855 res = mTrack->setSampleRate(ratePermille * mSampleRateHz / 1000);
1856 } else {
1857 res = NO_INIT;
1858 }
1859 mPlaybackRatePermille = ratePermille;
1860 if (mSampleRateHz != 0) {
1861 mMsecsPerFrame = mPlaybackRatePermille / (float) mSampleRateHz;
1862 }
1863 return res;
1864}
1865
Eric Laurent2beeb502010-07-16 07:43:46 -07001866status_t MediaPlayerService::AudioOutput::setAuxEffectSendLevel(float level)
1867{
Steve Block3856b092011-10-20 11:56:00 +01001868 ALOGV("setAuxEffectSendLevel(%f)", level);
Eric Laurent2beeb502010-07-16 07:43:46 -07001869 mSendLevel = level;
Glenn Kasten2799d742013-05-30 14:33:29 -07001870 if (mTrack != 0) {
Eric Laurent2beeb502010-07-16 07:43:46 -07001871 return mTrack->setAuxEffectSendLevel(level);
1872 }
1873 return NO_ERROR;
1874}
1875
1876status_t MediaPlayerService::AudioOutput::attachAuxEffect(int effectId)
1877{
Steve Block3856b092011-10-20 11:56:00 +01001878 ALOGV("attachAuxEffect(%d)", effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -07001879 mAuxEffectId = effectId;
Glenn Kasten2799d742013-05-30 14:33:29 -07001880 if (mTrack != 0) {
Eric Laurent2beeb502010-07-16 07:43:46 -07001881 return mTrack->attachAuxEffect(effectId);
1882 }
1883 return NO_ERROR;
1884}
1885
Andreas Huber20111aa2009-07-14 16:56:47 -07001886// static
1887void MediaPlayerService::AudioOutput::CallbackWrapper(
Glenn Kastend217a8c2011-06-01 15:20:35 -07001888 int event, void *cookie, void *info) {
Steve Block3856b092011-10-20 11:56:00 +01001889 //ALOGV("callbackwrapper");
Marco Nelissen6b74d672012-02-28 16:07:44 -08001890 CallbackData *data = (CallbackData*)cookie;
1891 data->lock();
1892 AudioOutput *me = data->getOutput();
Andreas Huber20111aa2009-07-14 16:56:47 -07001893 AudioTrack::Buffer *buffer = (AudioTrack::Buffer *)info;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001894 if (me == NULL) {
1895 // no output set, likely because the track was scheduled to be reused
1896 // by another player, but the format turned out to be incompatible.
1897 data->unlock();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001898 if (buffer != NULL) {
1899 buffer->size = 0;
1900 }
Marco Nelissen6b74d672012-02-28 16:07:44 -08001901 return;
1902 }
Andreas Huber20111aa2009-07-14 16:56:47 -07001903
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001904 switch(event) {
1905 case AudioTrack::EVENT_MORE_DATA: {
1906 size_t actualSize = (*me->mCallback)(
1907 me, buffer->raw, buffer->size, me->mCallbackCookie,
1908 CB_EVENT_FILL_BUFFER);
Andreas Huber7d5b8a72010-02-09 16:59:18 -08001909
aarti jadhav-gaikwadf2575572014-08-13 15:04:39 +05301910 if ((me->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0 &&
1911 actualSize == 0 && buffer->size > 0 && me->mNextOutput == NULL) {
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001912 // We've reached EOS but the audio track is not stopped yet,
1913 // keep playing silence.
Andreas Huber2e8ffaf2010-02-18 16:45:13 -08001914
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001915 memset(buffer->raw, 0, buffer->size);
1916 actualSize = buffer->size;
1917 }
1918
1919 buffer->size = actualSize;
1920 } break;
1921
1922
1923 case AudioTrack::EVENT_STREAM_END:
1924 ALOGV("callbackwrapper: deliver EVENT_STREAM_END");
1925 (*me->mCallback)(me, NULL /* buffer */, 0 /* size */,
1926 me->mCallbackCookie, CB_EVENT_STREAM_END);
1927 break;
1928
1929 case AudioTrack::EVENT_NEW_IAUDIOTRACK :
1930 ALOGV("callbackwrapper: deliver EVENT_TEAR_DOWN");
1931 (*me->mCallback)(me, NULL /* buffer */, 0 /* size */,
1932 me->mCallbackCookie, CB_EVENT_TEAR_DOWN);
1933 break;
1934
1935 default:
1936 ALOGE("received unknown event type: %d inside CallbackWrapper !", event);
Andreas Huber51c1e0e2011-04-04 11:43:40 -07001937 }
1938
Marco Nelissen6b74d672012-02-28 16:07:44 -08001939 data->unlock();
Andreas Huber20111aa2009-07-14 16:56:47 -07001940}
1941
Marco Nelissen4110c102012-03-29 09:31:28 -07001942int MediaPlayerService::AudioOutput::getSessionId() const
Eric Laurent8c563ed2010-10-07 18:23:03 -07001943{
1944 return mSessionId;
1945}
1946
Eric Laurent6f59db12013-07-26 17:16:50 -07001947uint32_t MediaPlayerService::AudioOutput::getSampleRate() const
1948{
1949 if (mTrack == 0) return 0;
1950 return mTrack->getSampleRate();
1951}
1952
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001953#undef LOG_TAG
1954#define LOG_TAG "AudioCache"
Eric Laurent3d00aa62013-09-24 09:53:27 -07001955MediaPlayerService::AudioCache::AudioCache(const sp<IMemoryHeap>& heap) :
1956 mHeap(heap), mChannelCount(0), mFrameCount(1024), mSampleRate(0), mSize(0),
Andy Hunga31335a2014-08-20 17:37:59 -07001957 mFrameSize(1), mError(NO_ERROR), mCommandComplete(false)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001958{
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001959}
1960
1961uint32_t MediaPlayerService::AudioCache::latency () const
1962{
1963 return 0;
1964}
1965
1966float MediaPlayerService::AudioCache::msecsPerFrame() const
1967{
1968 return mMsecsPerFrame;
1969}
1970
Marco Nelissen4110c102012-03-29 09:31:28 -07001971status_t MediaPlayerService::AudioCache::getPosition(uint32_t *position) const
Eric Laurent342e9cf2010-01-19 17:37:09 -08001972{
1973 if (position == 0) return BAD_VALUE;
Andy Hunga31335a2014-08-20 17:37:59 -07001974 *position = mSize / mFrameSize;
Eric Laurent342e9cf2010-01-19 17:37:09 -08001975 return NO_ERROR;
1976}
1977
Lajos Molnar06ad1522014-08-28 07:27:44 -07001978status_t MediaPlayerService::AudioCache::getTimestamp(AudioTimestamp &ts) const
1979{
1980 ts.mPosition = mSize / mFrameSize;
1981 nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC);
1982 ts.mTime.tv_sec = now / 1000000000LL;
1983 ts.mTime.tv_nsec = now - (1000000000LL * ts.mTime.tv_sec);
1984 return NO_ERROR;
1985}
1986
Marco Nelissen4110c102012-03-29 09:31:28 -07001987status_t MediaPlayerService::AudioCache::getFramesWritten(uint32_t *written) const
1988{
1989 if (written == 0) return BAD_VALUE;
Andy Hunga31335a2014-08-20 17:37:59 -07001990 *written = mSize / mFrameSize;
Marco Nelissen4110c102012-03-29 09:31:28 -07001991 return NO_ERROR;
1992}
1993
Andreas Huber7d5b8a72010-02-09 16:59:18 -08001994////////////////////////////////////////////////////////////////////////////////
1995
1996struct CallbackThread : public Thread {
1997 CallbackThread(const wp<MediaPlayerBase::AudioSink> &sink,
1998 MediaPlayerBase::AudioSink::AudioCallback cb,
1999 void *cookie);
2000
2001protected:
2002 virtual ~CallbackThread();
2003
2004 virtual bool threadLoop();
2005
2006private:
2007 wp<MediaPlayerBase::AudioSink> mSink;
2008 MediaPlayerBase::AudioSink::AudioCallback mCallback;
2009 void *mCookie;
2010 void *mBuffer;
2011 size_t mBufferSize;
2012
2013 CallbackThread(const CallbackThread &);
2014 CallbackThread &operator=(const CallbackThread &);
2015};
2016
2017CallbackThread::CallbackThread(
2018 const wp<MediaPlayerBase::AudioSink> &sink,
2019 MediaPlayerBase::AudioSink::AudioCallback cb,
2020 void *cookie)
2021 : mSink(sink),
2022 mCallback(cb),
2023 mCookie(cookie),
2024 mBuffer(NULL),
2025 mBufferSize(0) {
2026}
2027
2028CallbackThread::~CallbackThread() {
2029 if (mBuffer) {
2030 free(mBuffer);
2031 mBuffer = NULL;
2032 }
2033}
2034
2035bool CallbackThread::threadLoop() {
2036 sp<MediaPlayerBase::AudioSink> sink = mSink.promote();
2037 if (sink == NULL) {
2038 return false;
2039 }
2040
2041 if (mBuffer == NULL) {
2042 mBufferSize = sink->bufferSize();
2043 mBuffer = malloc(mBufferSize);
2044 }
2045
2046 size_t actualSize =
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00002047 (*mCallback)(sink.get(), mBuffer, mBufferSize, mCookie,
2048 MediaPlayerBase::AudioSink::CB_EVENT_FILL_BUFFER);
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002049
2050 if (actualSize > 0) {
2051 sink->write(mBuffer, actualSize);
Andy Hunga31335a2014-08-20 17:37:59 -07002052 // Could return false on sink->write() error or short count.
2053 // Not necessarily appropriate but would work for AudioCache behavior.
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002054 }
2055
2056 return true;
2057}
2058
2059////////////////////////////////////////////////////////////////////////////////
2060
Andreas Huber20111aa2009-07-14 16:56:47 -07002061status_t MediaPlayerService::AudioCache::open(
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08002062 uint32_t sampleRate, int channelCount, audio_channel_mask_t channelMask,
2063 audio_format_t format, int bufferCount,
Mark Salyzyn77342f72014-06-18 16:31:32 -07002064 AudioCallback cb, void *cookie, audio_output_flags_t /*flags*/,
2065 const audio_offload_info_t* /*offloadInfo*/)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002066{
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08002067 ALOGV("open(%u, %d, 0x%x, %d, %d)", sampleRate, channelCount, channelMask, format, bufferCount);
Dave Sparks8eb80112009-12-09 20:20:26 -08002068 if (mHeap->getHeapID() < 0) {
2069 return NO_INIT;
2070 }
Andreas Huber20111aa2009-07-14 16:56:47 -07002071
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002072 mSampleRate = sampleRate;
2073 mChannelCount = (uint16_t)channelCount;
Glenn Kastene1c39622012-01-04 09:36:37 -08002074 mFormat = format;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002075 mMsecsPerFrame = 1.e3 / (float) sampleRate;
Andy Hunga31335a2014-08-20 17:37:59 -07002076 mFrameSize = audio_is_linear_pcm(mFormat)
2077 ? mChannelCount * audio_bytes_per_sample(mFormat) : 1;
2078 mFrameCount = mHeap->getSize() / mFrameSize;
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002079
2080 if (cb != NULL) {
2081 mCallbackThread = new CallbackThread(this, cb, cookie);
2082 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002083 return NO_ERROR;
2084}
2085
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002086status_t MediaPlayerService::AudioCache::start() {
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002087 if (mCallbackThread != NULL) {
2088 mCallbackThread->run("AudioCache callback");
2089 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002090 return NO_ERROR;
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002091}
2092
2093void MediaPlayerService::AudioCache::stop() {
2094 if (mCallbackThread != NULL) {
2095 mCallbackThread->requestExitAndWait();
2096 }
2097}
2098
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002099ssize_t MediaPlayerService::AudioCache::write(const void* buffer, size_t size)
2100{
Steve Block3856b092011-10-20 11:56:00 +01002101 ALOGV("write(%p, %u)", buffer, size);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002102 if ((buffer == 0) || (size == 0)) return size;
2103
2104 uint8_t* p = static_cast<uint8_t*>(mHeap->getBase());
2105 if (p == NULL) return NO_INIT;
2106 p += mSize;
Steve Block3856b092011-10-20 11:56:00 +01002107 ALOGV("memcpy(%p, %p, %u)", p, buffer, size);
Andy Hunga31335a2014-08-20 17:37:59 -07002108
2109 bool overflow = mSize + size > mHeap->getSize();
2110 if (overflow) {
Steve Block29357bc2012-01-06 19:20:56 +00002111 ALOGE("Heap size overflow! req size: %d, max size: %d", (mSize + size), mHeap->getSize());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002112 size = mHeap->getSize() - mSize;
2113 }
Andy Hunga31335a2014-08-20 17:37:59 -07002114 size -= size % mFrameSize; // consume only integral amounts of frame size
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002115 memcpy(p, buffer, size);
2116 mSize += size;
Andy Hunga31335a2014-08-20 17:37:59 -07002117
2118 if (overflow) {
2119 // Signal heap filled here (last frame may be truncated).
2120 // After this point, no more data should be written as the
2121 // heap is filled and the AudioCache should be effectively
2122 // immutable with respect to future writes.
2123 //
2124 // It is thus safe for another thread to read the AudioCache.
2125 mCommandComplete = true;
2126 mSignal.signal();
2127 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002128 return size;
2129}
2130
2131// call with lock held
2132status_t MediaPlayerService::AudioCache::wait()
2133{
2134 Mutex::Autolock lock(mLock);
Dave Sparks4bbc0ba2010-03-01 19:29:58 -08002135 while (!mCommandComplete) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002136 mSignal.wait(mLock);
2137 }
2138 mCommandComplete = false;
2139
2140 if (mError == NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +01002141 ALOGV("wait - success");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002142 } else {
Steve Block3856b092011-10-20 11:56:00 +01002143 ALOGV("wait - error");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002144 }
2145 return mError;
2146}
2147
Gloria Wangb483c472011-04-11 17:23:27 -07002148void MediaPlayerService::AudioCache::notify(
Mark Salyzyn77342f72014-06-18 16:31:32 -07002149 void* cookie, int msg, int ext1, int ext2, const Parcel* /*obj*/)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002150{
Steve Block3856b092011-10-20 11:56:00 +01002151 ALOGV("notify(%p, %d, %d, %d)", cookie, msg, ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002152 AudioCache* p = static_cast<AudioCache*>(cookie);
2153
2154 // ignore buffering messages
Dave Sparks8eb80112009-12-09 20:20:26 -08002155 switch (msg)
2156 {
2157 case MEDIA_ERROR:
Steve Block29357bc2012-01-06 19:20:56 +00002158 ALOGE("Error %d, %d occurred", ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002159 p->mError = ext1;
Dave Sparks8eb80112009-12-09 20:20:26 -08002160 break;
2161 case MEDIA_PREPARED:
Steve Block3856b092011-10-20 11:56:00 +01002162 ALOGV("prepared");
Dave Sparks8eb80112009-12-09 20:20:26 -08002163 break;
2164 case MEDIA_PLAYBACK_COMPLETE:
Steve Block3856b092011-10-20 11:56:00 +01002165 ALOGV("playback complete");
Dave Sparks8eb80112009-12-09 20:20:26 -08002166 break;
2167 default:
Steve Block3856b092011-10-20 11:56:00 +01002168 ALOGV("ignored");
Dave Sparks8eb80112009-12-09 20:20:26 -08002169 return;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002170 }
2171
2172 // wake up thread
Dave Sparksfe4c6f02010-03-02 12:56:37 -08002173 Mutex::Autolock lock(p->mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002174 p->mCommandComplete = true;
2175 p->mSignal.signal();
2176}
2177
Marco Nelissen4110c102012-03-29 09:31:28 -07002178int MediaPlayerService::AudioCache::getSessionId() const
Eric Laurent8c563ed2010-10-07 18:23:03 -07002179{
2180 return 0;
2181}
2182
Eric Laurent6f59db12013-07-26 17:16:50 -07002183uint32_t MediaPlayerService::AudioCache::getSampleRate() const
2184{
2185 if (mMsecsPerFrame == 0) {
2186 return 0;
2187 }
2188 return (uint32_t)(1.e3 / mMsecsPerFrame);
2189}
2190
Gloria Wang7cf180c2011-02-19 18:37:57 -08002191void MediaPlayerService::addBatteryData(uint32_t params)
2192{
2193 Mutex::Autolock lock(mLock);
Gloria Wang9ee159b2011-02-24 14:51:45 -08002194
2195 int32_t time = systemTime() / 1000000L;
2196
2197 // change audio output devices. This notification comes from AudioFlinger
2198 if ((params & kBatteryDataSpeakerOn)
2199 || (params & kBatteryDataOtherAudioDeviceOn)) {
2200
2201 int deviceOn[NUM_AUDIO_DEVICES];
2202 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2203 deviceOn[i] = 0;
2204 }
2205
2206 if ((params & kBatteryDataSpeakerOn)
2207 && (params & kBatteryDataOtherAudioDeviceOn)) {
2208 deviceOn[SPEAKER_AND_OTHER] = 1;
2209 } else if (params & kBatteryDataSpeakerOn) {
2210 deviceOn[SPEAKER] = 1;
2211 } else {
2212 deviceOn[OTHER_AUDIO_DEVICE] = 1;
2213 }
2214
2215 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2216 if (mBatteryAudio.deviceOn[i] != deviceOn[i]){
2217
2218 if (mBatteryAudio.refCount > 0) { // if playing audio
2219 if (!deviceOn[i]) {
2220 mBatteryAudio.lastTime[i] += time;
2221 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2222 mBatteryAudio.lastTime[i] = 0;
2223 } else {
2224 mBatteryAudio.lastTime[i] = 0 - time;
2225 }
2226 }
2227
2228 mBatteryAudio.deviceOn[i] = deviceOn[i];
2229 }
2230 }
2231 return;
2232 }
2233
2234 // an sudio stream is started
2235 if (params & kBatteryDataAudioFlingerStart) {
2236 // record the start time only if currently no other audio
2237 // is being played
2238 if (mBatteryAudio.refCount == 0) {
2239 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2240 if (mBatteryAudio.deviceOn[i]) {
2241 mBatteryAudio.lastTime[i] -= time;
2242 }
2243 }
2244 }
2245
2246 mBatteryAudio.refCount ++;
2247 return;
2248
2249 } else if (params & kBatteryDataAudioFlingerStop) {
2250 if (mBatteryAudio.refCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00002251 ALOGW("Battery track warning: refCount is <= 0");
Gloria Wang9ee159b2011-02-24 14:51:45 -08002252 return;
2253 }
2254
2255 // record the stop time only if currently this is the only
2256 // audio being played
2257 if (mBatteryAudio.refCount == 1) {
2258 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2259 if (mBatteryAudio.deviceOn[i]) {
2260 mBatteryAudio.lastTime[i] += time;
2261 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2262 mBatteryAudio.lastTime[i] = 0;
2263 }
2264 }
2265 }
2266
2267 mBatteryAudio.refCount --;
2268 return;
2269 }
2270
Gloria Wang7cf180c2011-02-19 18:37:57 -08002271 int uid = IPCThreadState::self()->getCallingUid();
2272 if (uid == AID_MEDIA) {
2273 return;
2274 }
2275 int index = mBatteryData.indexOfKey(uid);
Gloria Wang7cf180c2011-02-19 18:37:57 -08002276
2277 if (index < 0) { // create a new entry for this UID
2278 BatteryUsageInfo info;
2279 info.audioTotalTime = 0;
2280 info.videoTotalTime = 0;
2281 info.audioLastTime = 0;
2282 info.videoLastTime = 0;
2283 info.refCount = 0;
2284
Gloria Wang9ee159b2011-02-24 14:51:45 -08002285 if (mBatteryData.add(uid, info) == NO_MEMORY) {
Steve Block29357bc2012-01-06 19:20:56 +00002286 ALOGE("Battery track error: no memory for new app");
Gloria Wang9ee159b2011-02-24 14:51:45 -08002287 return;
2288 }
Gloria Wang7cf180c2011-02-19 18:37:57 -08002289 }
2290
2291 BatteryUsageInfo &info = mBatteryData.editValueFor(uid);
2292
2293 if (params & kBatteryDataCodecStarted) {
2294 if (params & kBatteryDataTrackAudio) {
2295 info.audioLastTime -= time;
2296 info.refCount ++;
2297 }
2298 if (params & kBatteryDataTrackVideo) {
2299 info.videoLastTime -= time;
2300 info.refCount ++;
2301 }
2302 } else {
2303 if (info.refCount == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00002304 ALOGW("Battery track warning: refCount is already 0");
Gloria Wang7cf180c2011-02-19 18:37:57 -08002305 return;
2306 } else if (info.refCount < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00002307 ALOGE("Battery track error: refCount < 0");
Gloria Wang7cf180c2011-02-19 18:37:57 -08002308 mBatteryData.removeItem(uid);
2309 return;
2310 }
2311
2312 if (params & kBatteryDataTrackAudio) {
2313 info.audioLastTime += time;
2314 info.refCount --;
2315 }
2316 if (params & kBatteryDataTrackVideo) {
2317 info.videoLastTime += time;
2318 info.refCount --;
2319 }
2320
2321 // no stream is being played by this UID
2322 if (info.refCount == 0) {
2323 info.audioTotalTime += info.audioLastTime;
2324 info.audioLastTime = 0;
2325 info.videoTotalTime += info.videoLastTime;
2326 info.videoLastTime = 0;
2327 }
2328 }
2329}
2330
2331status_t MediaPlayerService::pullBatteryData(Parcel* reply) {
2332 Mutex::Autolock lock(mLock);
Gloria Wang9ee159b2011-02-24 14:51:45 -08002333
2334 // audio output devices usage
2335 int32_t time = systemTime() / 1000000L; //in ms
2336 int32_t totalTime;
2337
2338 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2339 totalTime = mBatteryAudio.totalTime[i];
2340
2341 if (mBatteryAudio.deviceOn[i]
2342 && (mBatteryAudio.lastTime[i] != 0)) {
2343 int32_t tmpTime = mBatteryAudio.lastTime[i] + time;
2344 totalTime += tmpTime;
2345 }
2346
2347 reply->writeInt32(totalTime);
2348 // reset the total time
2349 mBatteryAudio.totalTime[i] = 0;
2350 }
2351
2352 // codec usage
Gloria Wang7cf180c2011-02-19 18:37:57 -08002353 BatteryUsageInfo info;
2354 int size = mBatteryData.size();
2355
2356 reply->writeInt32(size);
2357 int i = 0;
2358
2359 while (i < size) {
2360 info = mBatteryData.valueAt(i);
2361
2362 reply->writeInt32(mBatteryData.keyAt(i)); //UID
2363 reply->writeInt32(info.audioTotalTime);
2364 reply->writeInt32(info.videoTotalTime);
2365
2366 info.audioTotalTime = 0;
2367 info.videoTotalTime = 0;
2368
2369 // remove the UID entry where no stream is being played
2370 if (info.refCount <= 0) {
2371 mBatteryData.removeItemsAt(i);
2372 size --;
2373 i --;
2374 }
2375 i++;
2376 }
2377 return NO_ERROR;
2378}
nikoa64c8c72009-07-20 15:07:26 -07002379} // namespace android