blob: cba5cf5cb51e9cadc36bcd73b608dfcbc9015043 [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
Mathias Agopian75624082009-05-19 19:08:10 -070037#include <binder/IPCThreadState.h>
38#include <binder/IServiceManager.h>
39#include <binder/MemoryHeapBase.h>
40#include <binder/MemoryBase.h>
Mathias Agopianb1e7cd12013-02-14 17:11:27 -080041#include <gui/Surface.h>
Nicolas Catania1d187f12009-05-12 23:25:55 -070042#include <utils/Errors.h> // for status_t
43#include <utils/String8.h>
Marco Nelissen10dbb8e2009-09-20 10:42:13 -070044#include <utils/SystemClock.h>
Lajos Molnar06ad1522014-08-28 07:27:44 -070045#include <utils/Timers.h>
Nicolas Catania1d187f12009-05-12 23:25:55 -070046#include <utils/Vector.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080047
Eric Laurent43562692015-07-15 16:49:07 -070048#include <media/AudioPolicyHelper.h>
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>
Marco Nelissen83b0fd92015-09-16 13:48:07 -070060#include <media/stagefright/Utils.h>
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +010061#include <media/stagefright/foundation/ADebug.h>
Marco Nelissenf09611f2015-02-13 14:12:42 -080062#include <media/stagefright/foundation/ALooperRoster.h>
Chong Zhang181fd9b2017-02-16 15:53:03 -080063#include <media/stagefright/SurfaceUtils.h>
Ruben Brunk99e69712015-05-26 17:25:07 -070064#include <mediautils/BatteryNotifier.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080065
Andy Hung53541292016-04-13 16:48:51 -070066#include <memunreachable/memunreachable.h>
Dima Zavin64760242011-05-11 14:15:23 -070067#include <system/audio.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070068
Gloria Wang7cf180c2011-02-19 18:37:57 -080069#include <private/android_filesystem_config.h>
70
James Dong559bf282012-03-28 10:29:14 -070071#include "ActivityManager.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080072#include "MediaRecorderClient.h"
73#include "MediaPlayerService.h"
74#include "MetadataRetrieverClient.h"
John Grossman44a7e422012-06-21 17:29:24 -070075#include "MediaPlayerFactory.h"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080076
Nicolas Catania14d27472009-07-13 14:37:49 -070077#include "TestPlayerStub.h"
Andreas Huberf9334412010-12-15 15:17:42 -080078#include "nuplayer/NuPlayerDriver.h"
Andreas Huber20111aa2009-07-14 16:56:47 -070079
Andreas Huber20111aa2009-07-14 16:56:47 -070080#include <OMX.h>
Nicolas Catania14d27472009-07-13 14:37:49 -070081
Andreas Huber59451f82012-09-18 10:36:32 -070082#include "HDCP.h"
Andreas Huberb7319a72013-05-29 14:20:52 -070083#include "HTTPBase.h"
Andreas Huber35213f12012-08-29 11:41:50 -070084#include "RemoteDisplay.h"
Andreas Hubered3e3e02012-03-26 11:13:27 -070085
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070086namespace {
nikoa64c8c72009-07-20 15:07:26 -070087using android::media::Metadata;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070088using android::status_t;
89using android::OK;
90using android::BAD_VALUE;
91using android::NOT_ENOUGH_DATA;
92using android::Parcel;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -070093
94// Max number of entries in the filter.
95const int kMaxFilterSize = 64; // I pulled that out of thin air.
96
Andy Hungff874dc2016-04-11 16:49:09 -070097const float kMaxRequiredSpeed = 8.0f; // for PCM tracks allow up to 8x speedup.
98
nikoa64c8c72009-07-20 15:07:26 -070099// FIXME: Move all the metadata related function in the Metadata.cpp
nikod608a812009-07-16 16:39:53 -0700100
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700101
102// Unmarshall a filter from a Parcel.
103// Filter format in a parcel:
104//
105// 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
106// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
107// | number of entries (n) |
108// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
109// | metadata type 1 |
110// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
111// | metadata type 2 |
112// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
113// ....
114// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
115// | metadata type n |
116// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117//
118// @param p Parcel that should start with a filter.
119// @param[out] filter On exit contains the list of metadata type to be
120// filtered.
121// @param[out] status On exit contains the status code to be returned.
122// @return true if the parcel starts with a valid filter.
123bool unmarshallFilter(const Parcel& p,
nikoa64c8c72009-07-20 15:07:26 -0700124 Metadata::Filter *filter,
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700125 status_t *status)
126{
Nicolas Catania48290382009-07-10 13:53:06 -0700127 int32_t val;
128 if (p.readInt32(&val) != OK)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700129 {
Steve Block29357bc2012-01-06 19:20:56 +0000130 ALOGE("Failed to read filter's length");
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700131 *status = NOT_ENOUGH_DATA;
132 return false;
133 }
134
Nicolas Catania48290382009-07-10 13:53:06 -0700135 if( val > kMaxFilterSize || val < 0)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700136 {
Steve Block29357bc2012-01-06 19:20:56 +0000137 ALOGE("Invalid filter len %d", val);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700138 *status = BAD_VALUE;
139 return false;
140 }
141
Nicolas Catania48290382009-07-10 13:53:06 -0700142 const size_t num = val;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700143
144 filter->clear();
Nicolas Catania48290382009-07-10 13:53:06 -0700145 filter->setCapacity(num);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700146
nikoa64c8c72009-07-20 15:07:26 -0700147 size_t size = num * sizeof(Metadata::Type);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700148
Nicolas Catania48290382009-07-10 13:53:06 -0700149
150 if (p.dataAvail() < size)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700151 {
Andy Hung833b4752016-04-04 17:15:48 -0700152 ALOGE("Filter too short expected %zu but got %zu", size, p.dataAvail());
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700153 *status = NOT_ENOUGH_DATA;
154 return false;
155 }
156
nikoa64c8c72009-07-20 15:07:26 -0700157 const Metadata::Type *data =
158 static_cast<const Metadata::Type*>(p.readInplace(size));
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700159
Nicolas Catania48290382009-07-10 13:53:06 -0700160 if (NULL == data)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700161 {
Steve Block29357bc2012-01-06 19:20:56 +0000162 ALOGE("Filter had no data");
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700163 *status = BAD_VALUE;
164 return false;
165 }
166
167 // TODO: The stl impl of vector would be more efficient here
168 // because it degenerates into a memcpy on pod types. Try to
169 // replace later or use stl::set.
Nicolas Catania48290382009-07-10 13:53:06 -0700170 for (size_t i = 0; i < num; ++i)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700171 {
Nicolas Catania48290382009-07-10 13:53:06 -0700172 filter->add(*data);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700173 ++data;
174 }
175 *status = OK;
176 return true;
177}
178
Nicolas Catania48290382009-07-10 13:53:06 -0700179// @param filter Of metadata type.
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700180// @param val To be searched.
181// @return true if a match was found.
nikoa64c8c72009-07-20 15:07:26 -0700182bool findMetadata(const Metadata::Filter& filter, const int32_t val)
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700183{
184 // Deal with empty and ANY right away
185 if (filter.isEmpty()) return false;
nikoa64c8c72009-07-20 15:07:26 -0700186 if (filter[0] == Metadata::kAny) return true;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700187
Nicolas Catania48290382009-07-10 13:53:06 -0700188 return filter.indexOf(val) >= 0;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700189}
190
191} // anonymous namespace
192
193
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700194namespace {
195using android::Parcel;
196using android::String16;
197
198// marshalling tag indicating flattened utf16 tags
199// keep in sync with frameworks/base/media/java/android/media/AudioAttributes.java
200const int32_t kAudioAttributesMarshallTagFlattenTags = 1;
201
202// Audio attributes format in a parcel:
203//
204// 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
205// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
206// | usage |
207// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
208// | content_type |
209// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Hyejin Kim4f418f92014-09-05 15:50:03 +0900210// | source |
211// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700212// | flags |
213// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
214// | kAudioAttributesMarshallTagFlattenTags | // ignore tags if not found
215// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
216// | flattened tags in UTF16 |
217// | ... |
218// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
219//
220// @param p Parcel that contains audio attributes.
221// @param[out] attributes On exit points to an initialized audio_attributes_t structure
222// @param[out] status On exit contains the status code to be returned.
223void unmarshallAudioAttributes(const Parcel& parcel, audio_attributes_t *attributes)
224{
225 attributes->usage = (audio_usage_t) parcel.readInt32();
226 attributes->content_type = (audio_content_type_t) parcel.readInt32();
Hyejin Kim4f418f92014-09-05 15:50:03 +0900227 attributes->source = (audio_source_t) parcel.readInt32();
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700228 attributes->flags = (audio_flags_mask_t) parcel.readInt32();
229 const bool hasFlattenedTag = (parcel.readInt32() == kAudioAttributesMarshallTagFlattenTags);
230 if (hasFlattenedTag) {
231 // the tags are UTF16, convert to UTF8
232 String16 tags = parcel.readString16();
233 ssize_t realTagSize = utf16_to_utf8_length(tags.string(), tags.size());
234 if (realTagSize <= 0) {
235 strcpy(attributes->tags, "");
236 } else {
237 // copy the flattened string into the attributes as the destination for the conversion:
238 // copying array size -1, array for tags was calloc'd, no need to NULL-terminate it
239 size_t tagSize = realTagSize > AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1 ?
240 AUDIO_ATTRIBUTES_TAGS_MAX_SIZE - 1 : realTagSize;
Sergio Giro1d3f4272016-06-28 18:24:52 +0100241 utf16_to_utf8(tags.string(), tagSize, attributes->tags,
242 sizeof(attributes->tags) / sizeof(attributes->tags[0]));
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700243 }
244 } else {
245 ALOGE("unmarshallAudioAttributes() received unflattened tags, ignoring tag values");
246 strcpy(attributes->tags, "");
247 }
248}
249} // anonymous namespace
250
251
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800252namespace android {
253
Marco Nelissenf09611f2015-02-13 14:12:42 -0800254extern ALooperRoster gLooperRoster;
255
256
Dave Burked681bbb2011-08-30 14:39:17 +0100257static bool checkPermission(const char* permissionString) {
Dave Burked681bbb2011-08-30 14:39:17 +0100258 if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
259 bool ok = checkCallingPermission(String16(permissionString));
Steve Block29357bc2012-01-06 19:20:56 +0000260 if (!ok) ALOGE("Request requires %s", permissionString);
Dave Burked681bbb2011-08-30 14:39:17 +0100261 return ok;
262}
263
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800264// 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 -0800265/* static */ int MediaPlayerService::AudioOutput::mMinBufferCount = 4;
266/* static */ bool MediaPlayerService::AudioOutput::mIsOnEmulator = false;
267
268void MediaPlayerService::instantiate() {
269 defaultServiceManager()->addService(
270 String16("media.player"), new MediaPlayerService());
271}
272
273MediaPlayerService::MediaPlayerService()
274{
Steve Block3856b092011-10-20 11:56:00 +0100275 ALOGV("MediaPlayerService created");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800276 mNextConnId = 1;
Gloria Wang9ee159b2011-02-24 14:51:45 -0800277
278 mBatteryAudio.refCount = 0;
279 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
280 mBatteryAudio.deviceOn[i] = 0;
281 mBatteryAudio.lastTime[i] = 0;
282 mBatteryAudio.totalTime[i] = 0;
283 }
284 // speaker is on by default
285 mBatteryAudio.deviceOn[SPEAKER] = 1;
John Grossman44a7e422012-06-21 17:29:24 -0700286
Chong Zhang0b30fd42014-07-23 14:46:05 -0700287 // reset battery stats
288 // if the mediaserver has crashed, battery stats could be left
289 // in bad state, reset the state upon service start.
Wei Jia3f273d12015-11-24 09:06:49 -0800290 BatteryNotifier::getInstance().noteResetVideo();
Chong Zhang0b30fd42014-07-23 14:46:05 -0700291
John Grossman44a7e422012-06-21 17:29:24 -0700292 MediaPlayerFactory::registerBuiltinFactories();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800293}
294
295MediaPlayerService::~MediaPlayerService()
296{
Steve Block3856b092011-10-20 11:56:00 +0100297 ALOGV("MediaPlayerService destroyed");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800298}
299
Svet Ganovbe71aa22015-04-28 12:06:02 -0700300sp<IMediaRecorder> MediaPlayerService::createMediaRecorder(const String16 &opPackageName)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800301{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800302 pid_t pid = IPCThreadState::self()->getCallingPid();
Svet Ganovbe71aa22015-04-28 12:06:02 -0700303 sp<MediaRecorderClient> recorder = new MediaRecorderClient(this, pid, opPackageName);
Gloria Wangdac6a312009-10-29 15:46:37 -0700304 wp<MediaRecorderClient> w = recorder;
305 Mutex::Autolock lock(mLock);
306 mMediaRecorderClients.add(w);
Steve Block3856b092011-10-20 11:56:00 +0100307 ALOGV("Create new media recorder client from pid %d", pid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800308 return recorder;
309}
310
Chih-Hung Hsieh36d0ca12016-08-09 14:31:32 -0700311void MediaPlayerService::removeMediaRecorderClient(const wp<MediaRecorderClient>& client)
Gloria Wangdac6a312009-10-29 15:46:37 -0700312{
313 Mutex::Autolock lock(mLock);
314 mMediaRecorderClients.remove(client);
Steve Block3856b092011-10-20 11:56:00 +0100315 ALOGV("Delete media recorder client");
Gloria Wangdac6a312009-10-29 15:46:37 -0700316}
317
Glenn Kastenf37971f2012-02-03 11:06:53 -0800318sp<IMediaMetadataRetriever> MediaPlayerService::createMetadataRetriever()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800319{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800320 pid_t pid = IPCThreadState::self()->getCallingPid();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800321 sp<MetadataRetrieverClient> retriever = new MetadataRetrieverClient(pid);
Steve Block3856b092011-10-20 11:56:00 +0100322 ALOGV("Create new media retriever from pid %d", pid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800323 return retriever;
324}
325
Glenn Kastenf37971f2012-02-03 11:06:53 -0800326sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client,
Glenn Kastend848eb42016-03-08 13:42:11 -0800327 audio_session_t audioSessionId)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800328{
Glenn Kastenf37971f2012-02-03 11:06:53 -0800329 pid_t pid = IPCThreadState::self()->getCallingPid();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800330 int32_t connId = android_atomic_inc(&mNextConnId);
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700331
332 sp<Client> c = new Client(
333 this, pid, connId, client, audioSessionId,
334 IPCThreadState::self()->getCallingUid());
335
Steve Block3856b092011-10-20 11:56:00 +0100336 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
Dave Burked681bbb2011-08-30 14:39:17 +0100337 IPCThreadState::self()->getCallingUid());
338
339 wp<Client> w = c;
340 {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800341 Mutex::Autolock lock(mLock);
342 mClients.add(w);
343 }
Andreas Hubere2b10282010-11-23 11:41:34 -0800344 return c;
345}
346
Lajos Molnar1381d4b2014-08-07 15:18:35 -0700347sp<IMediaCodecList> MediaPlayerService::getCodecList() const {
348 return MediaCodecList::getLocalInstance();
349}
350
Marco Nelissen260e56c2016-01-28 21:41:25 +0000351sp<IOMX> MediaPlayerService::getOMX() {
Marco Nelissen1900e772016-02-02 16:12:16 -0800352 ALOGI("MediaPlayerService::getOMX");
Marco Nelissen260e56c2016-01-28 21:41:25 +0000353 Mutex::Autolock autoLock(mLock);
354
355 if (mOMX.get() == NULL) {
356 mOMX = new OMX;
357 }
358
359 return mOMX;
360}
361
Andreas Huber279dcd82013-01-30 10:41:25 -0800362sp<IHDCP> MediaPlayerService::makeHDCP(bool createEncryptionModule) {
363 return new HDCP(createEncryptionModule);
Andreas Huber59451f82012-09-18 10:36:32 -0700364}
365
Jeff Brown2013a542012-09-04 21:38:42 -0700366sp<IRemoteDisplay> MediaPlayerService::listenForRemoteDisplay(
Svet Ganovbe71aa22015-04-28 12:06:02 -0700367 const String16 &opPackageName,
Jeff Brown2013a542012-09-04 21:38:42 -0700368 const sp<IRemoteDisplayClient>& client, const String8& iface) {
Jeff Brownaba33d52012-09-07 17:38:58 -0700369 if (!checkPermission("android.permission.CONTROL_WIFI_DISPLAY")) {
370 return NULL;
371 }
372
Svet Ganovbe71aa22015-04-28 12:06:02 -0700373 return new RemoteDisplay(opPackageName, client, iface.string());
Jeff Brown2013a542012-09-04 21:38:42 -0700374}
375
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800376status_t MediaPlayerService::AudioOutput::dump(int fd, const Vector<String16>& args) const
377{
378 const size_t SIZE = 256;
379 char buffer[SIZE];
380 String8 result;
381
382 result.append(" AudioOutput\n");
383 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n",
384 mStreamType, mLeftVolume, mRightVolume);
385 result.append(buffer);
386 snprintf(buffer, 255, " msec per frame(%f), latency (%d)\n",
Eric Laurentdb354e52012-03-05 17:27:11 -0800387 mMsecsPerFrame, (mTrack != 0) ? mTrack->latency() : -1);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800388 result.append(buffer);
Eric Laurent2beeb502010-07-16 07:43:46 -0700389 snprintf(buffer, 255, " aux effect id(%d), send level (%f)\n",
390 mAuxEffectId, mSendLevel);
391 result.append(buffer);
392
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800393 ::write(fd, result.string(), result.size());
394 if (mTrack != 0) {
395 mTrack->dump(fd, args);
396 }
397 return NO_ERROR;
398}
399
Lajos Molnar6d339f12015-04-17 16:15:53 -0700400status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800401{
402 const size_t SIZE = 256;
403 char buffer[SIZE];
404 String8 result;
405 result.append(" Client\n");
406 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
407 mPid, mConnId, mStatus, mLoop?"true": "false");
408 result.append(buffer);
409 write(fd, result.string(), result.size());
Andreas Hubera0b1d4b2011-06-07 15:52:25 -0700410 if (mPlayer != NULL) {
411 mPlayer->dump(fd, args);
412 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800413 if (mAudioOutput != 0) {
414 mAudioOutput->dump(fd, args);
415 }
416 write(fd, "\n", 1);
417 return NO_ERROR;
418}
419
Marco Nelissenf09611f2015-02-13 14:12:42 -0800420/**
421 * The only arguments this understands right now are -c, -von and -voff,
422 * which are parsed by ALooperRoster::dump()
423 */
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800424status_t MediaPlayerService::dump(int fd, const Vector<String16>& args)
425{
426 const size_t SIZE = 256;
427 char buffer[SIZE];
428 String8 result;
Ravi Kumar Alamanda330c8e32014-12-22 10:05:29 +0530429 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destruction.
430 SortedVector< sp<MediaRecorderClient> > mediaRecorderClients;
431
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800432 if (checkCallingPermission(String16("android.permission.DUMP")) == false) {
433 snprintf(buffer, SIZE, "Permission Denial: "
434 "can't dump MediaPlayerService from pid=%d, uid=%d\n",
435 IPCThreadState::self()->getCallingPid(),
436 IPCThreadState::self()->getCallingUid());
437 result.append(buffer);
438 } else {
439 Mutex::Autolock lock(mLock);
440 for (int i = 0, n = mClients.size(); i < n; ++i) {
441 sp<Client> c = mClients[i].promote();
442 if (c != 0) c->dump(fd, args);
Ravi Kumar Alamanda330c8e32014-12-22 10:05:29 +0530443 clients.add(c);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800444 }
James Dongb9141222010-07-08 11:16:11 -0700445 if (mMediaRecorderClients.size() == 0) {
446 result.append(" No media recorder client\n\n");
447 } else {
448 for (int i = 0, n = mMediaRecorderClients.size(); i < n; ++i) {
449 sp<MediaRecorderClient> c = mMediaRecorderClients[i].promote();
James Donge579e282011-10-18 22:29:20 -0700450 if (c != 0) {
451 snprintf(buffer, 255, " MediaRecorderClient pid(%d)\n", c->mPid);
452 result.append(buffer);
453 write(fd, result.string(), result.size());
454 result = "\n";
455 c->dump(fd, args);
Ravi Kumar Alamanda330c8e32014-12-22 10:05:29 +0530456 mediaRecorderClients.add(c);
James Donge579e282011-10-18 22:29:20 -0700457 }
James Dongb9141222010-07-08 11:16:11 -0700458 }
Gloria Wangdac6a312009-10-29 15:46:37 -0700459 }
460
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800461 result.append(" Files opened and/or mapped:\n");
Marco Nelissenf09611f2015-02-13 14:12:42 -0800462 snprintf(buffer, SIZE, "/proc/%d/maps", getpid());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800463 FILE *f = fopen(buffer, "r");
464 if (f) {
465 while (!feof(f)) {
466 fgets(buffer, SIZE, f);
Marco Nelissen73ac1ee2012-05-07 15:36:32 -0700467 if (strstr(buffer, " /storage/") ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800468 strstr(buffer, " /system/sounds/") ||
Dave Sparks02fa8342010-09-27 16:55:18 -0700469 strstr(buffer, " /data/") ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800470 strstr(buffer, " /system/media/")) {
471 result.append(" ");
472 result.append(buffer);
473 }
474 }
475 fclose(f);
476 } else {
477 result.append("couldn't open ");
478 result.append(buffer);
479 result.append("\n");
480 }
481
Marco Nelissenf09611f2015-02-13 14:12:42 -0800482 snprintf(buffer, SIZE, "/proc/%d/fd", getpid());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800483 DIR *d = opendir(buffer);
484 if (d) {
485 struct dirent *ent;
486 while((ent = readdir(d)) != NULL) {
487 if (strcmp(ent->d_name,".") && strcmp(ent->d_name,"..")) {
Marco Nelissenf09611f2015-02-13 14:12:42 -0800488 snprintf(buffer, SIZE, "/proc/%d/fd/%s", getpid(), ent->d_name);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800489 struct stat s;
490 if (lstat(buffer, &s) == 0) {
491 if ((s.st_mode & S_IFMT) == S_IFLNK) {
492 char linkto[256];
493 int len = readlink(buffer, linkto, sizeof(linkto));
494 if(len > 0) {
495 if(len > 255) {
496 linkto[252] = '.';
497 linkto[253] = '.';
498 linkto[254] = '.';
499 linkto[255] = 0;
500 } else {
501 linkto[len] = 0;
502 }
Marco Nelissen73ac1ee2012-05-07 15:36:32 -0700503 if (strstr(linkto, "/storage/") == linkto ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800504 strstr(linkto, "/system/sounds/") == linkto ||
Dave Sparks02fa8342010-09-27 16:55:18 -0700505 strstr(linkto, "/data/") == linkto ||
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800506 strstr(linkto, "/system/media/") == linkto) {
507 result.append(" ");
508 result.append(buffer);
509 result.append(" -> ");
510 result.append(linkto);
511 result.append("\n");
512 }
513 }
514 } else {
515 result.append(" unexpected type for ");
516 result.append(buffer);
517 result.append("\n");
518 }
519 }
520 }
521 }
522 closedir(d);
523 } else {
524 result.append("couldn't open ");
525 result.append(buffer);
526 result.append("\n");
527 }
528
Marco Nelissenf09611f2015-02-13 14:12:42 -0800529 gLooperRoster.dump(fd, args);
530
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800531 bool dumpMem = false;
Andy Hung53541292016-04-13 16:48:51 -0700532 bool unreachableMemory = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800533 for (size_t i = 0; i < args.size(); i++) {
534 if (args[i] == String16("-m")) {
535 dumpMem = true;
Andy Hung53541292016-04-13 16:48:51 -0700536 } else if (args[i] == String16("--unreachable")) {
537 unreachableMemory = true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800538 }
539 }
540 if (dumpMem) {
Andy Hung07b745e2016-05-23 16:21:07 -0700541 result.append("\nDumping memory:\n");
542 std::string s = dumpMemoryAddresses(100 /* limit */);
543 result.append(s.c_str(), s.size());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800544 }
Andy Hung53541292016-04-13 16:48:51 -0700545 if (unreachableMemory) {
546 result.append("\nDumping unreachable memory:\n");
547 // TODO - should limit be an argument parameter?
548 std::string s = GetUnreachableMemoryString(true /* contents */, 10000 /* limit */);
549 result.append(s.c_str(), s.size());
550 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800551 }
552 write(fd, result.string(), result.size());
553 return NO_ERROR;
554}
555
Chih-Hung Hsieh36d0ca12016-08-09 14:31:32 -0700556void MediaPlayerService::removeClient(const wp<Client>& client)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800557{
558 Mutex::Autolock lock(mLock);
559 mClients.remove(client);
560}
561
Robert Shihee0a0e32016-08-16 16:50:54 -0700562bool MediaPlayerService::hasClient(wp<Client> client)
563{
564 Mutex::Autolock lock(mLock);
565 return mClients.indexOf(client) != NAME_NOT_FOUND;
566}
567
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700568MediaPlayerService::Client::Client(
569 const sp<MediaPlayerService>& service, pid_t pid,
570 int32_t connId, const sp<IMediaPlayerClient>& client,
Glenn Kastend848eb42016-03-08 13:42:11 -0800571 audio_session_t audioSessionId, uid_t uid)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800572{
Steve Block3856b092011-10-20 11:56:00 +0100573 ALOGV("Client(%d) constructor", connId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800574 mPid = pid;
575 mConnId = connId;
576 mService = service;
577 mClient = client;
578 mLoop = false;
579 mStatus = NO_INIT;
Eric Laurenta514bdb2010-06-21 09:27:30 -0700580 mAudioSessionId = audioSessionId;
Andy Hung1afd0982016-11-08 16:13:44 -0800581 mUid = uid;
John Grossmanc795b642012-02-22 15:38:35 -0800582 mRetransmitEndpointValid = false;
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700583 mAudioAttributes = NULL;
Eric Laurenta514bdb2010-06-21 09:27:30 -0700584
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800585#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +0000586 ALOGD("create Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800587 mAntagonizer = new Antagonizer(notify, this);
588#endif
589}
590
591MediaPlayerService::Client::~Client()
592{
Steve Block3856b092011-10-20 11:56:00 +0100593 ALOGV("Client(%d) destructor pid = %d", mConnId, mPid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800594 mAudioOutput.clear();
595 wp<Client> client(this);
596 disconnect();
597 mService->removeClient(client);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700598 if (mAudioAttributes != NULL) {
599 free(mAudioAttributes);
600 }
Pawin Vongmasa9c47c972017-02-08 04:09:38 -0800601 clearDeathNotifiers();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800602}
603
604void MediaPlayerService::Client::disconnect()
605{
Steve Block3856b092011-10-20 11:56:00 +0100606 ALOGV("disconnect(%d) from pid %d", mConnId, mPid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800607 // grab local reference and clear main reference to prevent future
608 // access to object
609 sp<MediaPlayerBase> p;
610 {
611 Mutex::Autolock l(mLock);
612 p = mPlayer;
beanzdcfefde2012-11-05 09:51:43 +0800613 mClient.clear();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800614 }
Andreas Huber20111aa2009-07-14 16:56:47 -0700615
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800616 mPlayer.clear();
617
618 // clear the notification to prevent callbacks to dead client
619 // and reset the player. We assume the player will serialize
620 // access to itself if necessary.
621 if (p != 0) {
622 p->setNotifyCallback(0, 0);
623#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +0000624 ALOGD("kill Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800625 mAntagonizer->kill();
626#endif
627 p->reset();
628 }
629
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700630 disconnectNativeWindow();
631
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800632 IPCThreadState::self()->flushCommands();
633}
634
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800635sp<MediaPlayerBase> MediaPlayerService::Client::createPlayer(player_type playerType)
636{
637 // determine if we have the right player type
638 sp<MediaPlayerBase> p = mPlayer;
639 if ((p != NULL) && (p->playerType() != playerType)) {
Steve Block3856b092011-10-20 11:56:00 +0100640 ALOGV("delete player");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800641 p.clear();
642 }
643 if (p == NULL) {
Ronghua Wu68845c12015-07-21 09:50:48 -0700644 p = MediaPlayerFactory::createPlayer(playerType, this, notify, mPid);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800645 }
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700646
Jason Simmonsdb29e522011-08-12 13:46:55 -0700647 if (p != NULL) {
Andy Hung1afd0982016-11-08 16:13:44 -0800648 p->setUID(mUid);
Jason Simmonsdb29e522011-08-12 13:46:55 -0700649 }
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700650
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800651 return p;
652}
653
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700654MediaPlayerService::Client::ServiceDeathNotifier::ServiceDeathNotifier(
655 const sp<IBinder>& service,
656 const sp<MediaPlayerBase>& listener,
657 int which) {
658 mService = service;
Pawin Vongmasa9c47c972017-02-08 04:09:38 -0800659 mOmx = nullptr;
660 mListener = listener;
661 mWhich = which;
662}
663
664MediaPlayerService::Client::ServiceDeathNotifier::ServiceDeathNotifier(
665 const sp<IOmx>& omx,
666 const sp<MediaPlayerBase>& listener,
667 int which) {
668 mService = nullptr;
669 mOmx = omx;
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700670 mListener = listener;
671 mWhich = which;
672}
673
674MediaPlayerService::Client::ServiceDeathNotifier::~ServiceDeathNotifier() {
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700675}
676
677void MediaPlayerService::Client::ServiceDeathNotifier::binderDied(const wp<IBinder>& /*who*/) {
678 sp<MediaPlayerBase> listener = mListener.promote();
679 if (listener != NULL) {
680 listener->sendEvent(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, mWhich);
681 } else {
682 ALOGW("listener for process %d death is gone", mWhich);
683 }
684}
685
Pawin Vongmasa9c47c972017-02-08 04:09:38 -0800686void MediaPlayerService::Client::ServiceDeathNotifier::serviceDied(
687 uint64_t /* cookie */,
688 const wp<::android::hidl::base::V1_0::IBase>& /* who */) {
689 sp<MediaPlayerBase> listener = mListener.promote();
690 if (listener != NULL) {
691 listener->sendEvent(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, mWhich);
692 } else {
693 ALOGW("listener for process %d death is gone", mWhich);
694 }
695}
696
697void MediaPlayerService::Client::ServiceDeathNotifier::unlinkToDeath() {
698 if (mService != nullptr) {
699 mService->unlinkToDeath(this);
700 mService = nullptr;
701 } else if (mOmx != nullptr) {
702 mOmx->unlinkToDeath(this);
703 mOmx = nullptr;
704 }
705}
706
707void MediaPlayerService::Client::clearDeathNotifiers() {
708 if (mExtractorDeathListener != nullptr) {
709 mExtractorDeathListener->unlinkToDeath();
710 mExtractorDeathListener = nullptr;
711 }
712 if (mCodecDeathListener != nullptr) {
713 mCodecDeathListener->unlinkToDeath();
714 mCodecDeathListener = nullptr;
715 }
716}
717
John Grossmanc795b642012-02-22 15:38:35 -0800718sp<MediaPlayerBase> MediaPlayerService::Client::setDataSource_pre(
719 player_type playerType)
720{
721 ALOGV("player type = %d", playerType);
Pawin Vongmasa9c47c972017-02-08 04:09:38 -0800722 clearDeathNotifiers();
John Grossmanc795b642012-02-22 15:38:35 -0800723
724 // create the right type of player
725 sp<MediaPlayerBase> p = createPlayer(playerType);
726 if (p == NULL) {
727 return p;
728 }
729
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700730 sp<IServiceManager> sm = defaultServiceManager();
731 sp<IBinder> binder = sm->getService(String16("media.extractor"));
Marco Nelissen1b5a7ee2016-09-30 13:54:30 -0700732 if (binder == NULL) {
733 ALOGE("extractor service not available");
734 return NULL;
735 }
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700736 mExtractorDeathListener = new ServiceDeathNotifier(binder, p, MEDIAEXTRACTOR_PROCESS_DEATH);
737 binder->linkToDeath(mExtractorDeathListener);
738
Pawin Vongmasad4e9ca42017-03-29 17:24:56 -0700739 if (property_get_bool("persist.media.treble_omx", true)) {
Pawin Vongmasa9c47c972017-02-08 04:09:38 -0800740 // Treble IOmx
741 sp<IOmx> omx = IOmx::getService();
742 if (omx == nullptr) {
743 ALOGE("Treble IOmx not available");
744 return NULL;
745 }
746 mCodecDeathListener = new ServiceDeathNotifier(omx, p, MEDIACODEC_PROCESS_DEATH);
747 omx->linkToDeath(mCodecDeathListener, 0);
748 } else {
749 // Legacy IOMX
750 binder = sm->getService(String16("media.codec"));
751 if (binder == NULL) {
752 ALOGE("codec service not available");
753 return NULL;
754 }
755 mCodecDeathListener = new ServiceDeathNotifier(binder, p, MEDIACODEC_PROCESS_DEATH);
756 binder->linkToDeath(mCodecDeathListener);
Marco Nelissen1b5a7ee2016-09-30 13:54:30 -0700757 }
Marco Nelissen6dc3a3e2016-04-29 15:42:06 -0700758
John Grossmanc795b642012-02-22 15:38:35 -0800759 if (!p->hardwareOutput()) {
Jean-Michel Trivi2650e962015-07-22 18:14:02 -0700760 Mutex::Autolock l(mLock);
Marco Nelissend457c972014-02-11 08:47:07 -0800761 mAudioOutput = new AudioOutput(mAudioSessionId, IPCThreadState::self()->getCallingUid(),
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700762 mPid, mAudioAttributes);
John Grossmanc795b642012-02-22 15:38:35 -0800763 static_cast<MediaPlayerInterface*>(p.get())->setAudioSink(mAudioOutput);
764 }
765
766 return p;
767}
768
769void MediaPlayerService::Client::setDataSource_post(
770 const sp<MediaPlayerBase>& p,
771 status_t status)
772{
773 ALOGV(" setDataSource");
774 mStatus = status;
775 if (mStatus != OK) {
776 ALOGE(" error: %d", mStatus);
777 return;
778 }
779
780 // Set the re-transmission endpoint if one was chosen.
781 if (mRetransmitEndpointValid) {
782 mStatus = p->setRetransmitEndpoint(&mRetransmitEndpoint);
783 if (mStatus != NO_ERROR) {
784 ALOGE("setRetransmitEndpoint error: %d", mStatus);
785 }
786 }
787
788 if (mStatus == OK) {
789 mPlayer = p;
790 }
791}
792
Andreas Huber2db84552010-01-28 11:19:57 -0800793status_t MediaPlayerService::Client::setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800794 const sp<IMediaHTTPService> &httpService,
795 const char *url,
796 const KeyedVector<String8, String8> *headers)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800797{
Steve Block3856b092011-10-20 11:56:00 +0100798 ALOGV("setDataSource(%s)", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800799 if (url == NULL)
800 return UNKNOWN_ERROR;
801
Dave Burked681bbb2011-08-30 14:39:17 +0100802 if ((strncmp(url, "http://", 7) == 0) ||
803 (strncmp(url, "https://", 8) == 0) ||
804 (strncmp(url, "rtsp://", 7) == 0)) {
805 if (!checkPermission("android.permission.INTERNET")) {
806 return PERMISSION_DENIED;
807 }
808 }
809
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800810 if (strncmp(url, "content://", 10) == 0) {
811 // get a filedescriptor for the content Uri and
812 // pass it to the setDataSource(fd) method
813
814 String16 url16(url);
815 int fd = android::openContentProviderFile(url16);
816 if (fd < 0)
817 {
Steve Block29357bc2012-01-06 19:20:56 +0000818 ALOGE("Couldn't open fd for %s", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800819 return UNKNOWN_ERROR;
820 }
821 setDataSource(fd, 0, 0x7fffffffffLL); // this sets mStatus
822 close(fd);
823 return mStatus;
824 } else {
John Grossman44a7e422012-06-21 17:29:24 -0700825 player_type playerType = MediaPlayerFactory::getPlayerType(this, url);
John Grossmanc795b642012-02-22 15:38:35 -0800826 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
827 if (p == NULL) {
828 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800829 }
830
Andreas Huber1b86fe02014-01-29 11:13:26 -0800831 setDataSource_post(p, p->setDataSource(httpService, url, headers));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800832 return mStatus;
833 }
834}
835
836status_t MediaPlayerService::Client::setDataSource(int fd, int64_t offset, int64_t length)
837{
Marco Nelissen83b0fd92015-09-16 13:48:07 -0700838 ALOGV("setDataSource fd=%d (%s), offset=%lld, length=%lld",
839 fd, nameForFd(fd).c_str(), (long long) offset, (long long) length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800840 struct stat sb;
841 int ret = fstat(fd, &sb);
842 if (ret != 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000843 ALOGE("fstat(%d) failed: %d, %s", fd, ret, strerror(errno));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800844 return UNKNOWN_ERROR;
845 }
846
Andy Hung833b4752016-04-04 17:15:48 -0700847 ALOGV("st_dev = %llu", static_cast<unsigned long long>(sb.st_dev));
Steve Block3856b092011-10-20 11:56:00 +0100848 ALOGV("st_mode = %u", sb.st_mode);
Mark Salyzyn77342f72014-06-18 16:31:32 -0700849 ALOGV("st_uid = %lu", static_cast<unsigned long>(sb.st_uid));
850 ALOGV("st_gid = %lu", static_cast<unsigned long>(sb.st_gid));
Andy Hung833b4752016-04-04 17:15:48 -0700851 ALOGV("st_size = %llu", static_cast<unsigned long long>(sb.st_size));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800852
853 if (offset >= sb.st_size) {
Steve Block29357bc2012-01-06 19:20:56 +0000854 ALOGE("offset error");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800855 return UNKNOWN_ERROR;
856 }
857 if (offset + length > sb.st_size) {
858 length = sb.st_size - offset;
Andy Hung833b4752016-04-04 17:15:48 -0700859 ALOGV("calculated length = %lld", (long long)length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800860 }
861
John Grossman44a7e422012-06-21 17:29:24 -0700862 player_type playerType = MediaPlayerFactory::getPlayerType(this,
863 fd,
864 offset,
865 length);
John Grossmanc795b642012-02-22 15:38:35 -0800866 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
867 if (p == NULL) {
868 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800869 }
870
871 // now set data source
John Grossmanc795b642012-02-22 15:38:35 -0800872 setDataSource_post(p, p->setDataSource(fd, offset, length));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800873 return mStatus;
874}
875
Andreas Hubere2b10282010-11-23 11:41:34 -0800876status_t MediaPlayerService::Client::setDataSource(
877 const sp<IStreamSource> &source) {
878 // create the right type of player
John Grossman44a7e422012-06-21 17:29:24 -0700879 player_type playerType = MediaPlayerFactory::getPlayerType(this, source);
John Grossmanc795b642012-02-22 15:38:35 -0800880 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
Andreas Hubere2b10282010-11-23 11:41:34 -0800881 if (p == NULL) {
882 return NO_INIT;
883 }
884
Andreas Hubere2b10282010-11-23 11:41:34 -0800885 // now set data source
John Grossmanc795b642012-02-22 15:38:35 -0800886 setDataSource_post(p, p->setDataSource(source));
Andreas Hubere2b10282010-11-23 11:41:34 -0800887 return mStatus;
888}
889
Chris Watkins99f31602015-03-20 13:06:33 -0700890status_t MediaPlayerService::Client::setDataSource(
891 const sp<IDataSource> &source) {
892 sp<DataSource> dataSource = DataSource::CreateFromIDataSource(source);
893 player_type playerType = MediaPlayerFactory::getPlayerType(this, dataSource);
894 sp<MediaPlayerBase> p = setDataSource_pre(playerType);
895 if (p == NULL) {
896 return NO_INIT;
897 }
898 // now set data source
899 setDataSource_post(p, p->setDataSource(dataSource));
900 return mStatus;
901}
902
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700903void MediaPlayerService::Client::disconnectNativeWindow() {
904 if (mConnectedWindow != NULL) {
Chong Zhang181fd9b2017-02-16 15:53:03 -0800905 status_t err = nativeWindowDisconnect(
906 mConnectedWindow.get(), "disconnectNativeWindow");
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700907
908 if (err != OK) {
Chong Zhang181fd9b2017-02-16 15:53:03 -0800909 ALOGW("nativeWindowDisconnect returned an error: %s (%d)",
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700910 strerror(-err), err);
911 }
912 }
913 mConnectedWindow.clear();
914}
915
Glenn Kasten11731182011-02-08 17:26:17 -0800916status_t MediaPlayerService::Client::setVideoSurfaceTexture(
Andy McFadden484566c2012-12-18 09:46:54 -0800917 const sp<IGraphicBufferProducer>& bufferProducer)
Glenn Kasten11731182011-02-08 17:26:17 -0800918{
Andy McFadden484566c2012-12-18 09:46:54 -0800919 ALOGV("[%d] setVideoSurfaceTexture(%p)", mConnId, bufferProducer.get());
Glenn Kasten11731182011-02-08 17:26:17 -0800920 sp<MediaPlayerBase> p = getPlayer();
921 if (p == 0) return UNKNOWN_ERROR;
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700922
Marco Nelissenf8880202014-11-14 07:58:25 -0800923 sp<IBinder> binder(IInterface::asBinder(bufferProducer));
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700924 if (mConnectedWindowBinder == binder) {
925 return OK;
926 }
927
928 sp<ANativeWindow> anw;
Andy McFadden484566c2012-12-18 09:46:54 -0800929 if (bufferProducer != NULL) {
Marco Nelissenee08f7e2013-09-16 13:30:01 -0700930 anw = new Surface(bufferProducer, true /* controlledByApp */);
Chong Zhang181fd9b2017-02-16 15:53:03 -0800931 status_t err = nativeWindowConnect(anw.get(), "setVideoSurfaceTexture");
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700932
933 if (err != OK) {
Steve Block29357bc2012-01-06 19:20:56 +0000934 ALOGE("setVideoSurfaceTexture failed: %d", err);
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700935 // Note that we must do the reset before disconnecting from the ANW.
936 // Otherwise queue/dequeue calls could be made on the disconnected
937 // ANW, which may result in errors.
938 reset();
939
940 disconnectNativeWindow();
941
942 return err;
943 }
944 }
945
Andy McFadden484566c2012-12-18 09:46:54 -0800946 // Note that we must set the player's new GraphicBufferProducer before
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700947 // disconnecting the old one. Otherwise queue/dequeue calls could be made
948 // on the disconnected ANW, which may result in errors.
Andy McFadden484566c2012-12-18 09:46:54 -0800949 status_t err = p->setVideoSurfaceTexture(bufferProducer);
Jamie Gennis7dae00b2011-10-26 18:36:31 -0700950
951 disconnectNativeWindow();
952
953 mConnectedWindow = anw;
954
955 if (err == OK) {
956 mConnectedWindowBinder = binder;
957 } else {
958 disconnectNativeWindow();
959 }
960
961 return err;
Glenn Kasten11731182011-02-08 17:26:17 -0800962}
963
Nicolas Catania1d187f12009-05-12 23:25:55 -0700964status_t MediaPlayerService::Client::invoke(const Parcel& request,
965 Parcel *reply)
966{
967 sp<MediaPlayerBase> p = getPlayer();
968 if (p == NULL) return UNKNOWN_ERROR;
969 return p->invoke(request, reply);
970}
971
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700972// This call doesn't need to access the native player.
973status_t MediaPlayerService::Client::setMetadataFilter(const Parcel& filter)
974{
975 status_t status;
nikoa64c8c72009-07-20 15:07:26 -0700976 media::Metadata::Filter allow, drop;
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700977
Nicolas Catania48290382009-07-10 13:53:06 -0700978 if (unmarshallFilter(filter, &allow, &status) &&
979 unmarshallFilter(filter, &drop, &status)) {
980 Mutex::Autolock lock(mLock);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700981
982 mMetadataAllow = allow;
983 mMetadataDrop = drop;
984 }
985 return status;
986}
987
Nicolas Catania48290382009-07-10 13:53:06 -0700988status_t MediaPlayerService::Client::getMetadata(
Mark Salyzyn77342f72014-06-18 16:31:32 -0700989 bool update_only, bool /*apply_filter*/, Parcel *reply)
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700990{
nikoa64c8c72009-07-20 15:07:26 -0700991 sp<MediaPlayerBase> player = getPlayer();
992 if (player == 0) return UNKNOWN_ERROR;
Nicolas Catania48290382009-07-10 13:53:06 -0700993
nikod608a812009-07-16 16:39:53 -0700994 status_t status;
995 // Placeholder for the return code, updated by the caller.
996 reply->writeInt32(-1);
997
nikoa64c8c72009-07-20 15:07:26 -0700998 media::Metadata::Filter ids;
Nicolas Catania48290382009-07-10 13:53:06 -0700999
1000 // We don't block notifications while we fetch the data. We clear
1001 // mMetadataUpdated first so we don't lose notifications happening
1002 // during the rest of this call.
1003 {
1004 Mutex::Autolock lock(mLock);
1005 if (update_only) {
nikod608a812009-07-16 16:39:53 -07001006 ids = mMetadataUpdated;
Nicolas Catania48290382009-07-10 13:53:06 -07001007 }
1008 mMetadataUpdated.clear();
1009 }
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -07001010
nikoa64c8c72009-07-20 15:07:26 -07001011 media::Metadata metadata(reply);
Nicolas Catania48290382009-07-10 13:53:06 -07001012
nikoa64c8c72009-07-20 15:07:26 -07001013 metadata.appendHeader();
1014 status = player->getMetadata(ids, reply);
nikod608a812009-07-16 16:39:53 -07001015
1016 if (status != OK) {
nikoa64c8c72009-07-20 15:07:26 -07001017 metadata.resetParcel();
Steve Block29357bc2012-01-06 19:20:56 +00001018 ALOGE("getMetadata failed %d", status);
nikod608a812009-07-16 16:39:53 -07001019 return status;
1020 }
1021
1022 // FIXME: Implement filtering on the result. Not critical since
1023 // filtering takes place on the update notifications already. This
1024 // would be when all the metadata are fetch and a filter is set.
1025
nikod608a812009-07-16 16:39:53 -07001026 // Everything is fine, update the metadata length.
nikoa64c8c72009-07-20 15:07:26 -07001027 metadata.updateLength();
nikod608a812009-07-16 16:39:53 -07001028 return OK;
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -07001029}
1030
Wei Jiad399e7e2016-10-26 15:49:11 -07001031status_t MediaPlayerService::Client::setBufferingSettings(
1032 const BufferingSettings& buffering)
1033{
Wei Jiadc6f3402017-01-09 15:04:18 -08001034 ALOGV("[%d] setBufferingSettings{%s}",
1035 mConnId, buffering.toString().string());
Wei Jiad399e7e2016-10-26 15:49:11 -07001036 sp<MediaPlayerBase> p = getPlayer();
1037 if (p == 0) return UNKNOWN_ERROR;
1038 return p->setBufferingSettings(buffering);
1039}
1040
1041status_t MediaPlayerService::Client::getDefaultBufferingSettings(
1042 BufferingSettings* buffering /* nonnull */)
1043{
1044 sp<MediaPlayerBase> p = getPlayer();
1045 // TODO: create mPlayer on demand.
1046 if (p == 0) return UNKNOWN_ERROR;
1047 status_t ret = p->getDefaultBufferingSettings(buffering);
1048 if (ret == NO_ERROR) {
Wei Jiadc6f3402017-01-09 15:04:18 -08001049 ALOGV("[%d] getDefaultBufferingSettings{%s}",
1050 mConnId, buffering->toString().string());
Wei Jiad399e7e2016-10-26 15:49:11 -07001051 } else {
1052 ALOGV("[%d] getDefaultBufferingSettings returned %d", mConnId, ret);
1053 }
1054 return ret;
1055}
1056
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001057status_t MediaPlayerService::Client::prepareAsync()
1058{
Steve Block3856b092011-10-20 11:56:00 +01001059 ALOGV("[%d] prepareAsync", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001060 sp<MediaPlayerBase> p = getPlayer();
1061 if (p == 0) return UNKNOWN_ERROR;
1062 status_t ret = p->prepareAsync();
1063#if CALLBACK_ANTAGONIZER
Steve Blockb8a80522011-12-20 16:23:08 +00001064 ALOGD("start Antagonizer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001065 if (ret == NO_ERROR) mAntagonizer->start();
1066#endif
1067 return ret;
1068}
1069
1070status_t MediaPlayerService::Client::start()
1071{
Steve Block3856b092011-10-20 11:56:00 +01001072 ALOGV("[%d] start", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001073 sp<MediaPlayerBase> p = getPlayer();
1074 if (p == 0) return UNKNOWN_ERROR;
1075 p->setLooping(mLoop);
1076 return p->start();
1077}
1078
1079status_t MediaPlayerService::Client::stop()
1080{
Steve Block3856b092011-10-20 11:56:00 +01001081 ALOGV("[%d] stop", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001082 sp<MediaPlayerBase> p = getPlayer();
1083 if (p == 0) return UNKNOWN_ERROR;
1084 return p->stop();
1085}
1086
1087status_t MediaPlayerService::Client::pause()
1088{
Steve Block3856b092011-10-20 11:56:00 +01001089 ALOGV("[%d] pause", mConnId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001090 sp<MediaPlayerBase> p = getPlayer();
1091 if (p == 0) return UNKNOWN_ERROR;
1092 return p->pause();
1093}
1094
1095status_t MediaPlayerService::Client::isPlaying(bool* state)
1096{
1097 *state = false;
1098 sp<MediaPlayerBase> p = getPlayer();
1099 if (p == 0) return UNKNOWN_ERROR;
1100 *state = p->isPlaying();
Steve Block3856b092011-10-20 11:56:00 +01001101 ALOGV("[%d] isPlaying: %d", mConnId, *state);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001102 return NO_ERROR;
1103}
1104
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001105status_t MediaPlayerService::Client::setPlaybackSettings(const AudioPlaybackRate& rate)
Wei Jia98160162015-02-04 17:01:11 -08001106{
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001107 ALOGV("[%d] setPlaybackSettings(%f, %f, %d, %d)",
1108 mConnId, rate.mSpeed, rate.mPitch, rate.mFallbackMode, rate.mStretchMode);
Wei Jia98160162015-02-04 17:01:11 -08001109 sp<MediaPlayerBase> p = getPlayer();
1110 if (p == 0) return UNKNOWN_ERROR;
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001111 return p->setPlaybackSettings(rate);
1112}
1113
1114status_t MediaPlayerService::Client::getPlaybackSettings(AudioPlaybackRate* rate /* nonnull */)
1115{
1116 sp<MediaPlayerBase> p = getPlayer();
1117 if (p == 0) return UNKNOWN_ERROR;
1118 status_t ret = p->getPlaybackSettings(rate);
1119 if (ret == NO_ERROR) {
1120 ALOGV("[%d] getPlaybackSettings(%f, %f, %d, %d)",
1121 mConnId, rate->mSpeed, rate->mPitch, rate->mFallbackMode, rate->mStretchMode);
1122 } else {
1123 ALOGV("[%d] getPlaybackSettings returned %d", mConnId, ret);
1124 }
1125 return ret;
1126}
1127
1128status_t MediaPlayerService::Client::setSyncSettings(
1129 const AVSyncSettings& sync, float videoFpsHint)
1130{
1131 ALOGV("[%d] setSyncSettings(%u, %u, %f, %f)",
1132 mConnId, sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
1133 sp<MediaPlayerBase> p = getPlayer();
1134 if (p == 0) return UNKNOWN_ERROR;
1135 return p->setSyncSettings(sync, videoFpsHint);
1136}
1137
1138status_t MediaPlayerService::Client::getSyncSettings(
1139 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
1140{
1141 sp<MediaPlayerBase> p = getPlayer();
1142 if (p == 0) return UNKNOWN_ERROR;
1143 status_t ret = p->getSyncSettings(sync, videoFps);
1144 if (ret == NO_ERROR) {
1145 ALOGV("[%d] getSyncSettings(%u, %u, %f, %f)",
1146 mConnId, sync->mSource, sync->mAudioAdjustMode, sync->mTolerance, *videoFps);
1147 } else {
1148 ALOGV("[%d] getSyncSettings returned %d", mConnId, ret);
1149 }
1150 return ret;
Wei Jia98160162015-02-04 17:01:11 -08001151}
1152
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001153status_t MediaPlayerService::Client::getCurrentPosition(int *msec)
1154{
Steve Block3856b092011-10-20 11:56:00 +01001155 ALOGV("getCurrentPosition");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001156 sp<MediaPlayerBase> p = getPlayer();
1157 if (p == 0) return UNKNOWN_ERROR;
1158 status_t ret = p->getCurrentPosition(msec);
1159 if (ret == NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +01001160 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001161 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001162 ALOGE("getCurrentPosition returned %d", ret);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001163 }
1164 return ret;
1165}
1166
1167status_t MediaPlayerService::Client::getDuration(int *msec)
1168{
Steve Block3856b092011-10-20 11:56:00 +01001169 ALOGV("getDuration");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001170 sp<MediaPlayerBase> p = getPlayer();
1171 if (p == 0) return UNKNOWN_ERROR;
1172 status_t ret = p->getDuration(msec);
1173 if (ret == NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +01001174 ALOGV("[%d] getDuration = %d", mConnId, *msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001175 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001176 ALOGE("getDuration returned %d", ret);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001177 }
1178 return ret;
1179}
1180
Marco Nelissen6b74d672012-02-28 16:07:44 -08001181status_t MediaPlayerService::Client::setNextPlayer(const sp<IMediaPlayer>& player) {
1182 ALOGV("setNextPlayer");
1183 Mutex::Autolock l(mLock);
1184 sp<Client> c = static_cast<Client*>(player.get());
Wei Jia28284122016-08-30 13:49:06 -07001185 if (c != NULL && !mService->hasClient(c)) {
Robert Shihee0a0e32016-08-16 16:50:54 -07001186 return BAD_VALUE;
1187 }
1188
Marco Nelissen6b74d672012-02-28 16:07:44 -08001189 mNextClient = c;
John Grossman5f7e55e2012-08-24 14:47:25 -07001190
1191 if (c != NULL) {
1192 if (mAudioOutput != NULL) {
1193 mAudioOutput->setNextOutput(c->mAudioOutput);
1194 } else if ((mPlayer != NULL) && !mPlayer->hardwareOutput()) {
1195 ALOGE("no current audio output");
1196 }
1197
1198 if ((mPlayer != NULL) && (mNextClient->getPlayer() != NULL)) {
1199 mPlayer->setNextPlayer(mNextClient->getPlayer());
1200 }
Marco Nelissen6b74d672012-02-28 16:07:44 -08001201 }
John Grossman5f7e55e2012-08-24 14:47:25 -07001202
Marco Nelissen6b74d672012-02-28 16:07:44 -08001203 return OK;
1204}
1205
Andy Hung9fc8b5c2017-01-24 13:36:48 -08001206VolumeShaper::Status MediaPlayerService::Client::applyVolumeShaper(
1207 const sp<VolumeShaper::Configuration>& configuration,
1208 const sp<VolumeShaper::Operation>& operation) {
1209 // for hardware output, call player instead
1210 ALOGV("Client::applyVolumeShaper(%p)", this);
1211 sp<MediaPlayerBase> p = getPlayer();
1212 {
1213 Mutex::Autolock l(mLock);
1214 if (p != 0 && p->hardwareOutput()) {
1215 // TODO: investigate internal implementation
1216 return VolumeShaper::Status(INVALID_OPERATION);
1217 }
1218 if (mAudioOutput.get() != nullptr) {
1219 return mAudioOutput->applyVolumeShaper(configuration, operation);
1220 }
1221 }
1222 return VolumeShaper::Status(INVALID_OPERATION);
1223}
1224
1225sp<VolumeShaper::State> MediaPlayerService::Client::getVolumeShaperState(int id) {
1226 // for hardware output, call player instead
1227 ALOGV("Client::getVolumeShaperState(%p)", this);
1228 sp<MediaPlayerBase> p = getPlayer();
1229 {
1230 Mutex::Autolock l(mLock);
1231 if (p != 0 && p->hardwareOutput()) {
1232 // TODO: investigate internal implementation.
1233 return nullptr;
1234 }
1235 if (mAudioOutput.get() != nullptr) {
1236 return mAudioOutput->getVolumeShaperState(id);
1237 }
1238 }
1239 return nullptr;
1240}
1241
Wei Jiac5de0912016-11-18 10:22:14 -08001242status_t MediaPlayerService::Client::seekTo(int msec, MediaPlayerSeekMode mode)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001243{
Wei Jiac5de0912016-11-18 10:22:14 -08001244 ALOGV("[%d] seekTo(%d, %d)", mConnId, msec, mode);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001245 sp<MediaPlayerBase> p = getPlayer();
1246 if (p == 0) return UNKNOWN_ERROR;
Wei Jiac5de0912016-11-18 10:22:14 -08001247 return p->seekTo(msec, mode);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001248}
1249
1250status_t MediaPlayerService::Client::reset()
1251{
Steve Block3856b092011-10-20 11:56:00 +01001252 ALOGV("[%d] reset", mConnId);
John Grossmanc795b642012-02-22 15:38:35 -08001253 mRetransmitEndpointValid = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001254 sp<MediaPlayerBase> p = getPlayer();
1255 if (p == 0) return UNKNOWN_ERROR;
1256 return p->reset();
1257}
1258
Glenn Kastenfff6d712012-01-12 16:38:12 -08001259status_t MediaPlayerService::Client::setAudioStreamType(audio_stream_type_t type)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001260{
Steve Block3856b092011-10-20 11:56:00 +01001261 ALOGV("[%d] setAudioStreamType(%d)", mConnId, type);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001262 // TODO: for hardware output, call player instead
1263 Mutex::Autolock l(mLock);
1264 if (mAudioOutput != 0) mAudioOutput->setAudioStreamType(type);
1265 return NO_ERROR;
1266}
1267
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001268status_t MediaPlayerService::Client::setAudioAttributes_l(const Parcel &parcel)
1269{
1270 if (mAudioAttributes != NULL) { free(mAudioAttributes); }
1271 mAudioAttributes = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
Jean-Michel Trivi2650e962015-07-22 18:14:02 -07001272 if (mAudioAttributes == NULL) {
1273 return NO_MEMORY;
1274 }
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001275 unmarshallAudioAttributes(parcel, mAudioAttributes);
1276
1277 ALOGV("setAudioAttributes_l() usage=%d content=%d flags=0x%x tags=%s",
1278 mAudioAttributes->usage, mAudioAttributes->content_type, mAudioAttributes->flags,
1279 mAudioAttributes->tags);
1280
1281 if (mAudioOutput != 0) {
1282 mAudioOutput->setAudioAttributes(mAudioAttributes);
1283 }
1284 return NO_ERROR;
1285}
1286
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001287status_t MediaPlayerService::Client::setLooping(int loop)
1288{
Steve Block3856b092011-10-20 11:56:00 +01001289 ALOGV("[%d] setLooping(%d)", mConnId, loop);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001290 mLoop = loop;
1291 sp<MediaPlayerBase> p = getPlayer();
1292 if (p != 0) return p->setLooping(loop);
1293 return NO_ERROR;
1294}
1295
1296status_t MediaPlayerService::Client::setVolume(float leftVolume, float rightVolume)
1297{
Steve Block3856b092011-10-20 11:56:00 +01001298 ALOGV("[%d] setVolume(%f, %f)", mConnId, leftVolume, rightVolume);
John Grossman761defc2012-02-09 15:09:05 -08001299
1300 // for hardware output, call player instead
1301 sp<MediaPlayerBase> p = getPlayer();
1302 {
1303 Mutex::Autolock l(mLock);
1304 if (p != 0 && p->hardwareOutput()) {
1305 MediaPlayerHWInterface* hwp =
1306 reinterpret_cast<MediaPlayerHWInterface*>(p.get());
1307 return hwp->setVolume(leftVolume, rightVolume);
1308 } else {
1309 if (mAudioOutput != 0) mAudioOutput->setVolume(leftVolume, rightVolume);
1310 return NO_ERROR;
1311 }
1312 }
1313
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001314 return NO_ERROR;
1315}
1316
Eric Laurent2beeb502010-07-16 07:43:46 -07001317status_t MediaPlayerService::Client::setAuxEffectSendLevel(float level)
1318{
Steve Block3856b092011-10-20 11:56:00 +01001319 ALOGV("[%d] setAuxEffectSendLevel(%f)", mConnId, level);
Eric Laurent2beeb502010-07-16 07:43:46 -07001320 Mutex::Autolock l(mLock);
1321 if (mAudioOutput != 0) return mAudioOutput->setAuxEffectSendLevel(level);
1322 return NO_ERROR;
1323}
1324
1325status_t MediaPlayerService::Client::attachAuxEffect(int effectId)
1326{
Steve Block3856b092011-10-20 11:56:00 +01001327 ALOGV("[%d] attachAuxEffect(%d)", mConnId, effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -07001328 Mutex::Autolock l(mLock);
1329 if (mAudioOutput != 0) return mAudioOutput->attachAuxEffect(effectId);
1330 return NO_ERROR;
1331}
Nicolas Catania48290382009-07-10 13:53:06 -07001332
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001333status_t MediaPlayerService::Client::setParameter(int key, const Parcel &request) {
Steve Block3856b092011-10-20 11:56:00 +01001334 ALOGV("[%d] setParameter(%d)", mConnId, key);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001335 switch (key) {
1336 case KEY_PARAMETER_AUDIO_ATTRIBUTES:
1337 {
1338 Mutex::Autolock l(mLock);
1339 return setAudioAttributes_l(request);
1340 }
1341 default:
1342 sp<MediaPlayerBase> p = getPlayer();
1343 if (p == 0) { return UNKNOWN_ERROR; }
1344 return p->setParameter(key, request);
1345 }
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001346}
1347
1348status_t MediaPlayerService::Client::getParameter(int key, Parcel *reply) {
Steve Block3856b092011-10-20 11:56:00 +01001349 ALOGV("[%d] getParameter(%d)", mConnId, key);
Gloria Wang4f9e47f2011-04-25 17:28:22 -07001350 sp<MediaPlayerBase> p = getPlayer();
1351 if (p == 0) return UNKNOWN_ERROR;
1352 return p->getParameter(key, reply);
1353}
1354
John Grossmanc795b642012-02-22 15:38:35 -08001355status_t MediaPlayerService::Client::setRetransmitEndpoint(
1356 const struct sockaddr_in* endpoint) {
1357
1358 if (NULL != endpoint) {
1359 uint32_t a = ntohl(endpoint->sin_addr.s_addr);
1360 uint16_t p = ntohs(endpoint->sin_port);
1361 ALOGV("[%d] setRetransmitEndpoint(%u.%u.%u.%u:%hu)", mConnId,
1362 (a >> 24), (a >> 16) & 0xFF, (a >> 8) & 0xFF, (a & 0xFF), p);
1363 } else {
1364 ALOGV("[%d] setRetransmitEndpoint = <none>", mConnId);
1365 }
1366
1367 sp<MediaPlayerBase> p = getPlayer();
1368
1369 // Right now, the only valid time to set a retransmit endpoint is before
1370 // player selection has been made (since the presence or absence of a
1371 // retransmit endpoint is going to determine which player is selected during
1372 // setDataSource).
1373 if (p != 0) return INVALID_OPERATION;
1374
1375 if (NULL != endpoint) {
1376 mRetransmitEndpoint = *endpoint;
1377 mRetransmitEndpointValid = true;
1378 } else {
1379 mRetransmitEndpointValid = false;
1380 }
1381
1382 return NO_ERROR;
1383}
1384
John Grossman44a7e422012-06-21 17:29:24 -07001385status_t MediaPlayerService::Client::getRetransmitEndpoint(
1386 struct sockaddr_in* endpoint)
1387{
1388 if (NULL == endpoint)
1389 return BAD_VALUE;
1390
1391 sp<MediaPlayerBase> p = getPlayer();
1392
1393 if (p != NULL)
1394 return p->getRetransmitEndpoint(endpoint);
1395
1396 if (!mRetransmitEndpointValid)
1397 return NO_INIT;
1398
1399 *endpoint = mRetransmitEndpoint;
1400
1401 return NO_ERROR;
1402}
1403
Gloria Wangb483c472011-04-11 17:23:27 -07001404void MediaPlayerService::Client::notify(
1405 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001406{
1407 Client* client = static_cast<Client*>(cookie);
James Dongb8a98252012-08-26 16:13:03 -07001408 if (client == NULL) {
1409 return;
1410 }
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001411
James Dongb8a98252012-08-26 16:13:03 -07001412 sp<IMediaPlayerClient> c;
Haynes Mathew George6cb33752015-06-22 14:16:42 -07001413 sp<Client> nextClient;
1414 status_t errStartNext = NO_ERROR;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001415 {
1416 Mutex::Autolock l(client->mLock);
James Dongb8a98252012-08-26 16:13:03 -07001417 c = client->mClient;
Marco Nelissen6b74d672012-02-28 16:07:44 -08001418 if (msg == MEDIA_PLAYBACK_COMPLETE && client->mNextClient != NULL) {
Haynes Mathew George6cb33752015-06-22 14:16:42 -07001419 nextClient = client->mNextClient;
1420
John Grossmancb0b7552012-08-23 17:47:31 -07001421 if (client->mAudioOutput != NULL)
1422 client->mAudioOutput->switchToNextOutput();
Haynes Mathew George6cb33752015-06-22 14:16:42 -07001423
1424 errStartNext = nextClient->start();
1425 }
1426 }
1427
1428 if (nextClient != NULL) {
1429 sp<IMediaPlayerClient> nc;
1430 {
1431 Mutex::Autolock l(nextClient->mLock);
1432 nc = nextClient->mClient;
1433 }
1434 if (nc != NULL) {
1435 if (errStartNext == NO_ERROR) {
1436 nc->notify(MEDIA_INFO, MEDIA_INFO_STARTED_AS_NEXT, 0, obj);
1437 } else {
1438 nc->notify(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN , 0, obj);
1439 ALOGE("gapless:start playback for next track failed, err(%d)", errStartNext);
Wei Jia2afac0c2016-01-07 12:13:07 -08001440 }
Marco Nelissen6b74d672012-02-28 16:07:44 -08001441 }
1442 }
1443
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001444 if (MEDIA_INFO == msg &&
Nicolas Catania48290382009-07-10 13:53:06 -07001445 MEDIA_INFO_METADATA_UPDATE == ext1) {
nikoa64c8c72009-07-20 15:07:26 -07001446 const media::Metadata::Type metadata_type = ext2;
Nicolas Catania48290382009-07-10 13:53:06 -07001447
1448 if(client->shouldDropMetadata(metadata_type)) {
1449 return;
1450 }
1451
1452 // Update the list of metadata that have changed. getMetadata
1453 // also access mMetadataUpdated and clears it.
1454 client->addNewMetadataUpdate(metadata_type);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001455 }
James Dongb8a98252012-08-26 16:13:03 -07001456
1457 if (c != NULL) {
1458 ALOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1459 c->notify(msg, ext1, ext2, obj);
1460 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001461}
1462
Nicolas Catania48290382009-07-10 13:53:06 -07001463
nikoa64c8c72009-07-20 15:07:26 -07001464bool MediaPlayerService::Client::shouldDropMetadata(media::Metadata::Type code) const
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001465{
Nicolas Catania48290382009-07-10 13:53:06 -07001466 Mutex::Autolock lock(mLock);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001467
Nicolas Catania48290382009-07-10 13:53:06 -07001468 if (findMetadata(mMetadataDrop, code)) {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001469 return true;
1470 }
1471
Nicolas Catania48290382009-07-10 13:53:06 -07001472 if (mMetadataAllow.isEmpty() || findMetadata(mMetadataAllow, code)) {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001473 return false;
Nicolas Catania48290382009-07-10 13:53:06 -07001474 } else {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -07001475 return true;
1476 }
1477}
1478
Nicolas Catania48290382009-07-10 13:53:06 -07001479
nikoa64c8c72009-07-20 15:07:26 -07001480void MediaPlayerService::Client::addNewMetadataUpdate(media::Metadata::Type metadata_type) {
Nicolas Catania48290382009-07-10 13:53:06 -07001481 Mutex::Autolock lock(mLock);
1482 if (mMetadataUpdated.indexOf(metadata_type) < 0) {
1483 mMetadataUpdated.add(metadata_type);
1484 }
1485}
1486
Hassan Shojaniacefac142017-02-06 21:02:02 -08001487// Modular DRM
1488status_t MediaPlayerService::Client::prepareDrm(const uint8_t uuid[16],
1489 const Vector<uint8_t>& drmSessionId)
1490{
1491 ALOGV("[%d] prepareDrm", mConnId);
1492 sp<MediaPlayerBase> p = getPlayer();
1493 if (p == 0) return UNKNOWN_ERROR;
1494
1495 status_t ret = p->prepareDrm(uuid, drmSessionId);
1496 ALOGV("prepareDrm ret: %d", ret);
1497
1498 return ret;
1499}
1500
1501status_t MediaPlayerService::Client::releaseDrm()
1502{
1503 ALOGV("[%d] releaseDrm", mConnId);
1504 sp<MediaPlayerBase> p = getPlayer();
1505 if (p == 0) return UNKNOWN_ERROR;
1506
1507 status_t ret = p->releaseDrm();
1508 ALOGV("releaseDrm ret: %d", ret);
1509
1510 return ret;
1511}
1512
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001513#if CALLBACK_ANTAGONIZER
1514const int Antagonizer::interval = 10000; // 10 msecs
1515
1516Antagonizer::Antagonizer(notify_callback_f cb, void* client) :
1517 mExit(false), mActive(false), mClient(client), mCb(cb)
1518{
1519 createThread(callbackThread, this);
1520}
1521
1522void Antagonizer::kill()
1523{
1524 Mutex::Autolock _l(mLock);
1525 mActive = false;
1526 mExit = true;
1527 mCondition.wait(mLock);
1528}
1529
1530int Antagonizer::callbackThread(void* user)
1531{
Steve Blockb8a80522011-12-20 16:23:08 +00001532 ALOGD("Antagonizer started");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001533 Antagonizer* p = reinterpret_cast<Antagonizer*>(user);
1534 while (!p->mExit) {
1535 if (p->mActive) {
Steve Block3856b092011-10-20 11:56:00 +01001536 ALOGV("send event");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001537 p->mCb(p->mClient, 0, 0, 0);
1538 }
1539 usleep(interval);
1540 }
1541 Mutex::Autolock _l(p->mLock);
1542 p->mCondition.signal();
Steve Blockb8a80522011-12-20 16:23:08 +00001543 ALOGD("Antagonizer stopped");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001544 return 0;
1545}
1546#endif
1547
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001548#undef LOG_TAG
1549#define LOG_TAG "AudioSink"
Andy Hung1afd0982016-11-08 16:13:44 -08001550MediaPlayerService::AudioOutput::AudioOutput(audio_session_t sessionId, uid_t uid, int pid,
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001551 const audio_attributes_t* attr)
Andreas Huber20111aa2009-07-14 16:56:47 -07001552 : mCallback(NULL),
Eric Laurenta514bdb2010-06-21 09:27:30 -07001553 mCallbackCookie(NULL),
Marco Nelissen6b74d672012-02-28 16:07:44 -08001554 mCallbackData(NULL),
Andy Hungd1c74342015-07-07 16:54:23 -07001555 mStreamType(AUDIO_STREAM_MUSIC),
Andy Hungd1c74342015-07-07 16:54:23 -07001556 mLeftVolume(1.0),
1557 mRightVolume(1.0),
1558 mPlaybackRate(AUDIO_PLAYBACK_RATE_DEFAULT),
1559 mSampleRateHz(0),
1560 mMsecsPerFrame(0),
1561 mFrameSize(0),
Eric Laurent1948eb32012-04-13 16:50:19 -07001562 mSessionId(sessionId),
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001563 mUid(uid),
Marco Nelissend457c972014-02-11 08:47:07 -08001564 mPid(pid),
Andy Hungd1c74342015-07-07 16:54:23 -07001565 mSendLevel(0.0),
1566 mAuxEffectId(0),
Andy Hung4ef88d72017-02-21 19:47:53 -08001567 mFlags(AUDIO_OUTPUT_FLAG_NONE),
1568 mVolumeHandler(new VolumeHandler())
Andy Hungd1c74342015-07-07 16:54:23 -07001569{
Steve Block3856b092011-10-20 11:56:00 +01001570 ALOGV("AudioOutput(%d)", sessionId);
Eric Laurent43562692015-07-15 16:49:07 -07001571 if (attr != NULL) {
Jean-Michel Trivi2650e962015-07-22 18:14:02 -07001572 mAttributes = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
1573 if (mAttributes != NULL) {
1574 memcpy(mAttributes, attr, sizeof(audio_attributes_t));
1575 mStreamType = audio_attributes_to_stream_type(attr);
1576 }
1577 } else {
1578 mAttributes = NULL;
Eric Laurent43562692015-07-15 16:49:07 -07001579 }
1580
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001581 setMinBufferCount();
1582}
1583
1584MediaPlayerService::AudioOutput::~AudioOutput()
1585{
1586 close();
Jean-Michel Trivi2650e962015-07-22 18:14:02 -07001587 free(mAttributes);
Marco Nelissen6b74d672012-02-28 16:07:44 -08001588 delete mCallbackData;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001589}
1590
Andy Hungd1c74342015-07-07 16:54:23 -07001591//static
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001592void MediaPlayerService::AudioOutput::setMinBufferCount()
1593{
1594 char value[PROPERTY_VALUE_MAX];
1595 if (property_get("ro.kernel.qemu", value, 0)) {
1596 mIsOnEmulator = true;
1597 mMinBufferCount = 12; // to prevent systematic buffer underrun for emulator
1598 }
1599}
1600
Andy Hungd1c74342015-07-07 16:54:23 -07001601// static
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001602bool MediaPlayerService::AudioOutput::isOnEmulator()
1603{
Andy Hungd1c74342015-07-07 16:54:23 -07001604 setMinBufferCount(); // benign race wrt other threads
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001605 return mIsOnEmulator;
1606}
1607
Andy Hungd1c74342015-07-07 16:54:23 -07001608// static
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001609int MediaPlayerService::AudioOutput::getMinBufferCount()
1610{
Andy Hungd1c74342015-07-07 16:54:23 -07001611 setMinBufferCount(); // benign race wrt other threads
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001612 return mMinBufferCount;
1613}
1614
1615ssize_t MediaPlayerService::AudioOutput::bufferSize() const
1616{
Andy Hungd1c74342015-07-07 16:54:23 -07001617 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001618 if (mTrack == 0) return NO_INIT;
Andy Hungd1c74342015-07-07 16:54:23 -07001619 return mTrack->frameCount() * mFrameSize;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001620}
1621
1622ssize_t MediaPlayerService::AudioOutput::frameCount() const
1623{
Andy Hungd1c74342015-07-07 16:54:23 -07001624 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001625 if (mTrack == 0) return NO_INIT;
1626 return mTrack->frameCount();
1627}
1628
1629ssize_t MediaPlayerService::AudioOutput::channelCount() const
1630{
Andy Hungd1c74342015-07-07 16:54:23 -07001631 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001632 if (mTrack == 0) return NO_INIT;
1633 return mTrack->channelCount();
1634}
1635
1636ssize_t MediaPlayerService::AudioOutput::frameSize() const
1637{
Andy Hungd1c74342015-07-07 16:54:23 -07001638 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001639 if (mTrack == 0) return NO_INIT;
Andy Hungd1c74342015-07-07 16:54:23 -07001640 return mFrameSize;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001641}
1642
1643uint32_t MediaPlayerService::AudioOutput::latency () const
1644{
Andy Hungd1c74342015-07-07 16:54:23 -07001645 Mutex::Autolock lock(mLock);
Eric Laurentdb354e52012-03-05 17:27:11 -08001646 if (mTrack == 0) return 0;
1647 return mTrack->latency();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001648}
1649
1650float MediaPlayerService::AudioOutput::msecsPerFrame() const
1651{
Andy Hungd1c74342015-07-07 16:54:23 -07001652 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001653 return mMsecsPerFrame;
1654}
1655
Marco Nelissen4110c102012-03-29 09:31:28 -07001656status_t MediaPlayerService::AudioOutput::getPosition(uint32_t *position) const
Eric Laurent342e9cf2010-01-19 17:37:09 -08001657{
Andy Hungd1c74342015-07-07 16:54:23 -07001658 Mutex::Autolock lock(mLock);
Eric Laurent342e9cf2010-01-19 17:37:09 -08001659 if (mTrack == 0) return NO_INIT;
1660 return mTrack->getPosition(position);
1661}
1662
Lajos Molnar06ad1522014-08-28 07:27:44 -07001663status_t MediaPlayerService::AudioOutput::getTimestamp(AudioTimestamp &ts) const
1664{
Andy Hungd1c74342015-07-07 16:54:23 -07001665 Mutex::Autolock lock(mLock);
Lajos Molnar06ad1522014-08-28 07:27:44 -07001666 if (mTrack == 0) return NO_INIT;
1667 return mTrack->getTimestamp(ts);
1668}
1669
Wei Jiac4ac8172015-10-21 10:35:48 -07001670// TODO: Remove unnecessary calls to getPlayedOutDurationUs()
1671// as it acquires locks and may query the audio driver.
1672//
1673// Some calls could conceivably retrieve extrapolated data instead of
1674// accessing getTimestamp() or getPosition() every time a data buffer with
1675// a media time is received.
1676//
1677// Calculate duration of played samples if played at normal rate (i.e., 1.0).
1678int64_t MediaPlayerService::AudioOutput::getPlayedOutDurationUs(int64_t nowUs) const
1679{
1680 Mutex::Autolock lock(mLock);
1681 if (mTrack == 0 || mSampleRateHz == 0) {
Wei Jia213f4902015-10-22 08:55:25 -07001682 return 0;
Wei Jiac4ac8172015-10-21 10:35:48 -07001683 }
1684
1685 uint32_t numFramesPlayed;
Andy Hung5d313802016-10-10 15:09:39 -07001686 int64_t numFramesPlayedAtUs;
Wei Jiac4ac8172015-10-21 10:35:48 -07001687 AudioTimestamp ts;
Wei Jiac4ac8172015-10-21 10:35:48 -07001688
1689 status_t res = mTrack->getTimestamp(ts);
1690 if (res == OK) { // case 1: mixing audio tracks and offloaded tracks.
1691 numFramesPlayed = ts.mPosition;
Andy Hung5d313802016-10-10 15:09:39 -07001692 numFramesPlayedAtUs = ts.mTime.tv_sec * 1000000LL + ts.mTime.tv_nsec / 1000;
1693 //ALOGD("getTimestamp: OK %d %lld", numFramesPlayed, (long long)numFramesPlayedAtUs);
Wei Jiac4ac8172015-10-21 10:35:48 -07001694 } else if (res == WOULD_BLOCK) { // case 2: transitory state on start of a new track
1695 numFramesPlayed = 0;
Andy Hung5d313802016-10-10 15:09:39 -07001696 numFramesPlayedAtUs = nowUs;
Wei Jiac4ac8172015-10-21 10:35:48 -07001697 //ALOGD("getTimestamp: WOULD_BLOCK %d %lld",
Andy Hung5d313802016-10-10 15:09:39 -07001698 // numFramesPlayed, (long long)numFramesPlayedAtUs);
Wei Jiac4ac8172015-10-21 10:35:48 -07001699 } else { // case 3: transitory at new track or audio fast tracks.
1700 res = mTrack->getPosition(&numFramesPlayed);
1701 CHECK_EQ(res, (status_t)OK);
Andy Hung5d313802016-10-10 15:09:39 -07001702 numFramesPlayedAtUs = nowUs;
1703 numFramesPlayedAtUs += 1000LL * mTrack->latency() / 2; /* XXX */
1704 //ALOGD("getPosition: %u %lld", numFramesPlayed, (long long)numFramesPlayedAtUs);
Wei Jiac4ac8172015-10-21 10:35:48 -07001705 }
1706
1707 // CHECK_EQ(numFramesPlayed & (1 << 31), 0); // can't be negative until 12.4 hrs, test
1708 // TODO: remove the (int32_t) casting below as it may overflow at 12.4 hours.
1709 int64_t durationUs = (int64_t)((int32_t)numFramesPlayed * 1000000LL / mSampleRateHz)
Andy Hung5d313802016-10-10 15:09:39 -07001710 + nowUs - numFramesPlayedAtUs;
Wei Jiac4ac8172015-10-21 10:35:48 -07001711 if (durationUs < 0) {
1712 // Occurs when numFramesPlayed position is very small and the following:
1713 // (1) In case 1, the time nowUs is computed before getTimestamp() is called and
Andy Hung5d313802016-10-10 15:09:39 -07001714 // numFramesPlayedAtUs is greater than nowUs by time more than numFramesPlayed.
Wei Jiac4ac8172015-10-21 10:35:48 -07001715 // (2) In case 3, using getPosition and adding mAudioSink->latency() to
Andy Hung5d313802016-10-10 15:09:39 -07001716 // numFramesPlayedAtUs, by a time amount greater than numFramesPlayed.
Wei Jiac4ac8172015-10-21 10:35:48 -07001717 //
1718 // Both of these are transitory conditions.
1719 ALOGV("getPlayedOutDurationUs: negative duration %lld set to zero", (long long)durationUs);
1720 durationUs = 0;
1721 }
1722 ALOGV("getPlayedOutDurationUs(%lld) nowUs(%lld) frames(%u) framesAt(%lld)",
Andy Hung5d313802016-10-10 15:09:39 -07001723 (long long)durationUs, (long long)nowUs,
1724 numFramesPlayed, (long long)numFramesPlayedAtUs);
Wei Jiac4ac8172015-10-21 10:35:48 -07001725 return durationUs;
1726}
1727
Marco Nelissen4110c102012-03-29 09:31:28 -07001728status_t MediaPlayerService::AudioOutput::getFramesWritten(uint32_t *frameswritten) const
1729{
Andy Hungd1c74342015-07-07 16:54:23 -07001730 Mutex::Autolock lock(mLock);
Marco Nelissen4110c102012-03-29 09:31:28 -07001731 if (mTrack == 0) return NO_INIT;
Andy Hung2f6e73d2016-04-08 12:12:58 -07001732 ExtendedTimestamp ets;
1733 status_t status = mTrack->getTimestamp(&ets);
1734 if (status == OK || status == WOULD_BLOCK) {
1735 *frameswritten = (uint32_t)ets.mPosition[ExtendedTimestamp::LOCATION_CLIENT];
1736 }
1737 return status;
Marco Nelissen4110c102012-03-29 09:31:28 -07001738}
1739
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001740status_t MediaPlayerService::AudioOutput::setParameters(const String8& keyValuePairs)
1741{
Andy Hungd1c74342015-07-07 16:54:23 -07001742 Mutex::Autolock lock(mLock);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001743 if (mTrack == 0) return NO_INIT;
1744 return mTrack->setParameters(keyValuePairs);
1745}
1746
1747String8 MediaPlayerService::AudioOutput::getParameters(const String8& keys)
1748{
Andy Hungd1c74342015-07-07 16:54:23 -07001749 Mutex::Autolock lock(mLock);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001750 if (mTrack == 0) return String8::empty();
1751 return mTrack->getParameters(keys);
1752}
1753
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001754void MediaPlayerService::AudioOutput::setAudioAttributes(const audio_attributes_t * attributes) {
Andy Hungd1c74342015-07-07 16:54:23 -07001755 Mutex::Autolock lock(mLock);
Jean-Michel Trivi2650e962015-07-22 18:14:02 -07001756 if (attributes == NULL) {
1757 free(mAttributes);
1758 mAttributes = NULL;
1759 } else {
1760 if (mAttributes == NULL) {
1761 mAttributes = (audio_attributes_t *) calloc(1, sizeof(audio_attributes_t));
1762 }
1763 memcpy(mAttributes, attributes, sizeof(audio_attributes_t));
Eric Laurent43562692015-07-15 16:49:07 -07001764 mStreamType = audio_attributes_to_stream_type(attributes);
1765 }
1766}
1767
1768void MediaPlayerService::AudioOutput::setAudioStreamType(audio_stream_type_t streamType)
1769{
Jean-Michel Trivi2650e962015-07-22 18:14:02 -07001770 Mutex::Autolock lock(mLock);
Eric Laurent43562692015-07-15 16:49:07 -07001771 // do not allow direct stream type modification if attributes have been set
1772 if (mAttributes == NULL) {
1773 mStreamType = streamType;
1774 }
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001775}
1776
Andy Hungd1c74342015-07-07 16:54:23 -07001777void MediaPlayerService::AudioOutput::deleteRecycledTrack_l()
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001778{
Andy Hungd1c74342015-07-07 16:54:23 -07001779 ALOGV("deleteRecycledTrack_l");
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001780 if (mRecycledTrack != 0) {
1781
1782 if (mCallbackData != NULL) {
1783 mCallbackData->setOutput(NULL);
1784 mCallbackData->endTrackSwitch();
1785 }
1786
1787 if ((mRecycledTrack->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) {
Andy Hunge13f8a62016-03-30 14:20:42 -07001788 int32_t msec = 0;
1789 if (!mRecycledTrack->stopped()) { // check if active
1790 (void)mRecycledTrack->pendingDuration(&msec);
1791 }
1792 mRecycledTrack->stop(); // ensure full data drain
1793 ALOGD("deleting recycled track, waiting for data drain (%d msec)", msec);
1794 if (msec > 0) {
1795 static const int32_t WAIT_LIMIT_MS = 3000;
1796 if (msec > WAIT_LIMIT_MS) {
1797 msec = WAIT_LIMIT_MS;
1798 }
1799 usleep(msec * 1000LL);
1800 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001801 }
1802 // An offloaded track isn't flushed because the STREAM_END is reported
1803 // slightly prematurely to allow time for the gapless track switch
1804 // but this means that if we decide not to recycle the track there
1805 // could be a small amount of residual data still playing. We leave
1806 // AudioFlinger to drain the track.
1807
1808 mRecycledTrack.clear();
Andy Hungd1c74342015-07-07 16:54:23 -07001809 close_l();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001810 delete mCallbackData;
1811 mCallbackData = NULL;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001812 }
1813}
1814
Andy Hungd1c74342015-07-07 16:54:23 -07001815void MediaPlayerService::AudioOutput::close_l()
1816{
1817 mTrack.clear();
1818}
1819
Andreas Huber20111aa2009-07-14 16:56:47 -07001820status_t MediaPlayerService::AudioOutput::open(
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001821 uint32_t sampleRate, int channelCount, audio_channel_mask_t channelMask,
1822 audio_format_t format, int bufferCount,
Eric Laurent1948eb32012-04-13 16:50:19 -07001823 AudioCallback cb, void *cookie,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001824 audio_output_flags_t flags,
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001825 const audio_offload_info_t *offloadInfo,
Andy Hung179652e2015-05-31 22:49:46 -07001826 bool doNotReconnect,
1827 uint32_t suggestedFrameCount)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001828{
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001829 ALOGV("open(%u, %d, 0x%x, 0x%x, %d, %d 0x%x)", sampleRate, channelCount, channelMask,
1830 format, bufferCount, mSessionId, flags);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001831
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001832 // offloading is only supported in callback mode for now.
1833 // offloadInfo must be present if offload flag is set
1834 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) &&
1835 ((cb == NULL) || (offloadInfo == NULL))) {
1836 return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001837 }
1838
Andy Hung179652e2015-05-31 22:49:46 -07001839 // compute frame count for the AudioTrack internal buffer
1840 size_t frameCount;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001841 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
1842 frameCount = 0; // AudioTrack will get frame count from AudioFlinger
1843 } else {
Andy Hung179652e2015-05-31 22:49:46 -07001844 // try to estimate the buffer processing fetch size from AudioFlinger.
1845 // framesPerBuffer is approximate and generally correct, except when it's not :-).
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001846 uint32_t afSampleRate;
1847 size_t afFrameCount;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001848 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) != NO_ERROR) {
1849 return NO_INIT;
1850 }
1851 if (AudioSystem::getOutputSamplingRate(&afSampleRate, mStreamType) != NO_ERROR) {
1852 return NO_INIT;
1853 }
Andy Hung179652e2015-05-31 22:49:46 -07001854 const size_t framesPerBuffer =
1855 (unsigned long long)sampleRate * afFrameCount / afSampleRate;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001856
Andy Hung179652e2015-05-31 22:49:46 -07001857 if (bufferCount == 0) {
1858 // use suggestedFrameCount
1859 bufferCount = (suggestedFrameCount + framesPerBuffer - 1) / framesPerBuffer;
1860 }
1861 // Check argument bufferCount against the mininum buffer count
1862 if (bufferCount != 0 && bufferCount < mMinBufferCount) {
1863 ALOGV("bufferCount (%d) increased to %d", bufferCount, mMinBufferCount);
1864 bufferCount = mMinBufferCount;
1865 }
1866 // if frameCount is 0, then AudioTrack will get frame count from AudioFlinger
1867 // which will be the minimum size permitted.
1868 frameCount = bufferCount * framesPerBuffer;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001869 }
Andreas Huber20111aa2009-07-14 16:56:47 -07001870
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001871 if (channelMask == CHANNEL_MASK_USE_CHANNEL_ORDER) {
Glenn Kastenab334fd2012-03-14 12:56:06 -07001872 channelMask = audio_channel_out_mask_from_count(channelCount);
Jean-Michel Trivi786618f2012-03-02 14:54:07 -08001873 if (0 == channelMask) {
1874 ALOGE("open() error, can\'t derive mask for %d audio channels", channelCount);
1875 return NO_INIT;
1876 }
1877 }
Eric Laurent1948eb32012-04-13 16:50:19 -07001878
Andy Hungd1c74342015-07-07 16:54:23 -07001879 Mutex::Autolock lock(mLock);
Andy Hung179652e2015-05-31 22:49:46 -07001880 mCallback = cb;
1881 mCallbackCookie = cookie;
1882
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001883 // Check whether we can recycle the track
1884 bool reuse = false;
1885 bool bothOffloaded = false;
Marco Nelissen67295b52012-06-11 14:52:53 -07001886
Glenn Kasten2799d742013-05-30 14:33:29 -07001887 if (mRecycledTrack != 0) {
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001888 // check whether we are switching between two offloaded tracks
1889 bothOffloaded = (flags & mRecycledTrack->getFlags()
1890 & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0;
Marco Nelissen67295b52012-06-11 14:52:53 -07001891
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001892 // check if the existing track can be reused as-is, or if a new track needs to be created.
1893 reuse = true;
1894
Marco Nelissen67295b52012-06-11 14:52:53 -07001895 if ((mCallbackData == NULL && mCallback != NULL) ||
1896 (mCallbackData != NULL && mCallback == NULL)) {
1897 // recycled track uses callbacks but the caller wants to use writes, or vice versa
1898 ALOGV("can't chain callback and write");
1899 reuse = false;
1900 } else if ((mRecycledTrack->getSampleRate() != sampleRate) ||
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001901 (mRecycledTrack->channelCount() != (uint32_t)channelCount) ) {
1902 ALOGV("samplerate, channelcount differ: %u/%u Hz, %u/%d ch",
Marco Nelissen67295b52012-06-11 14:52:53 -07001903 mRecycledTrack->getSampleRate(), sampleRate,
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001904 mRecycledTrack->channelCount(), channelCount);
Marco Nelissen67295b52012-06-11 14:52:53 -07001905 reuse = false;
1906 } else if (flags != mFlags) {
1907 ALOGV("output flags differ %08x/%08x", flags, mFlags);
1908 reuse = false;
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001909 } else if (mRecycledTrack->format() != format) {
1910 reuse = false;
Marco Nelissen67295b52012-06-11 14:52:53 -07001911 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001912 } else {
1913 ALOGV("no track available to recycle");
1914 }
1915
1916 ALOGV_IF(bothOffloaded, "both tracks offloaded");
1917
1918 // If we can't recycle and both tracks are offloaded
1919 // we must close the previous output before opening a new one
1920 if (bothOffloaded && !reuse) {
1921 ALOGV("both offloaded and not recycling");
Andy Hungd1c74342015-07-07 16:54:23 -07001922 deleteRecycledTrack_l();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001923 }
1924
1925 sp<AudioTrack> t;
1926 CallbackData *newcbd = NULL;
1927
1928 // We don't attempt to create a new track if we are recycling an
1929 // offloaded track. But, if we are recycling a non-offloaded or we
1930 // are switching where one is offloaded and one isn't then we create
1931 // the new track in advance so that we can read additional stream info
1932
1933 if (!(reuse && bothOffloaded)) {
1934 ALOGV("creating new AudioTrack");
1935
1936 if (mCallback != NULL) {
1937 newcbd = new CallbackData(this);
1938 t = new AudioTrack(
1939 mStreamType,
1940 sampleRate,
1941 format,
1942 channelMask,
1943 frameCount,
1944 flags,
1945 CallbackWrapper,
1946 newcbd,
1947 0, // notification frames
1948 mSessionId,
1949 AudioTrack::TRANSFER_CALLBACK,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001950 offloadInfo,
Marco Nelissend457c972014-02-11 08:47:07 -08001951 mUid,
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001952 mPid,
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001953 mAttributes,
1954 doNotReconnect);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001955 } else {
Andy Hungff874dc2016-04-11 16:49:09 -07001956 // TODO: Due to buffer memory concerns, we use a max target playback speed
1957 // based on mPlaybackRate at the time of open (instead of kMaxRequiredSpeed),
1958 // also clamping the target speed to 1.0 <= targetSpeed <= kMaxRequiredSpeed.
1959 const float targetSpeed =
1960 std::min(std::max(mPlaybackRate.mSpeed, 1.0f), kMaxRequiredSpeed);
1961 ALOGW_IF(targetSpeed != mPlaybackRate.mSpeed,
1962 "track target speed:%f clamped from playback speed:%f",
1963 targetSpeed, mPlaybackRate.mSpeed);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001964 t = new AudioTrack(
1965 mStreamType,
1966 sampleRate,
1967 format,
1968 channelMask,
1969 frameCount,
1970 flags,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001971 NULL, // callback
1972 NULL, // user data
1973 0, // notification frames
1974 mSessionId,
1975 AudioTrack::TRANSFER_DEFAULT,
1976 NULL, // offload info
Marco Nelissend457c972014-02-11 08:47:07 -08001977 mUid,
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001978 mPid,
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001979 mAttributes,
Andy Hungff874dc2016-04-11 16:49:09 -07001980 doNotReconnect,
1981 targetSpeed);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001982 }
1983
1984 if ((t == 0) || (t->initCheck() != NO_ERROR)) {
1985 ALOGE("Unable to create audio track");
1986 delete newcbd;
Glenn Kasten3e98ecd2015-05-18 13:13:24 -07001987 // t goes out of scope, so reference count drops to zero
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001988 return NO_INIT;
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -07001989 } else {
1990 // successful AudioTrack initialization implies a legacy stream type was generated
1991 // from the audio attributes
1992 mStreamType = t->streamType();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01001993 }
1994 }
1995
1996 if (reuse) {
1997 CHECK(mRecycledTrack != NULL);
1998
1999 if (!bothOffloaded) {
2000 if (mRecycledTrack->frameCount() != t->frameCount()) {
Andy Hung833b4752016-04-04 17:15:48 -07002001 ALOGV("framecount differs: %zu/%zu frames",
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002002 mRecycledTrack->frameCount(), t->frameCount());
2003 reuse = false;
2004 }
2005 }
2006
Marco Nelissen67295b52012-06-11 14:52:53 -07002007 if (reuse) {
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002008 ALOGV("chaining to next output and recycling track");
Andy Hungd1c74342015-07-07 16:54:23 -07002009 close_l();
Marco Nelissen67295b52012-06-11 14:52:53 -07002010 mTrack = mRecycledTrack;
Glenn Kasten2799d742013-05-30 14:33:29 -07002011 mRecycledTrack.clear();
Marco Nelissen67295b52012-06-11 14:52:53 -07002012 if (mCallbackData != NULL) {
2013 mCallbackData->setOutput(this);
2014 }
Marco Nelissen67295b52012-06-11 14:52:53 -07002015 delete newcbd;
Wei Jiae0bbac92016-07-18 16:04:53 -07002016 return updateTrack();
Marco Nelissen67295b52012-06-11 14:52:53 -07002017 }
Marco Nelissen67295b52012-06-11 14:52:53 -07002018 }
2019
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002020 // we're not going to reuse the track, unblock and flush it
2021 // this was done earlier if both tracks are offloaded
2022 if (!bothOffloaded) {
Andy Hungd1c74342015-07-07 16:54:23 -07002023 deleteRecycledTrack_l();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002024 }
2025
2026 CHECK((t != NULL) && ((mCallback == NULL) || (newcbd != NULL)));
2027
Marco Nelissen67295b52012-06-11 14:52:53 -07002028 mCallbackData = newcbd;
Steve Block3856b092011-10-20 11:56:00 +01002029 ALOGV("setVolume");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002030 t->setVolume(mLeftVolume, mRightVolume);
Eric Laurent2beeb502010-07-16 07:43:46 -07002031
Andy Hung39399b62017-04-21 15:07:45 -07002032 // Restore VolumeShapers for the MediaPlayer in case the track was recreated
2033 // due to an output sink error (e.g. offload to non-offload switch).
2034 mVolumeHandler->forall([&t](const VolumeShaper &shaper) -> VolumeShaper::Status {
2035 sp<VolumeShaper::Operation> operationToEnd =
2036 new VolumeShaper::Operation(shaper.mOperation);
2037 // TODO: Ideally we would restore to the exact xOffset position
2038 // as returned by getVolumeShaperState(), but we don't have that
2039 // information when restoring at the client unless we periodically poll
2040 // the server or create shared memory state.
2041 //
2042 // For now, we simply advance to the end of the VolumeShaper effect
2043 // if it has been started.
2044 if (shaper.isStarted()) {
2045 operationToEnd->setXOffset(1.f);
2046 }
2047 return t->applyVolumeShaper(shaper.mConfiguration, operationToEnd);
Andy Hung4ef88d72017-02-21 19:47:53 -08002048 });
Andy Hung4ef88d72017-02-21 19:47:53 -08002049
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002050 mSampleRateHz = sampleRate;
Preetam Singh Ranawat2e17eef2015-08-12 12:11:46 -07002051 mFlags = flags;
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002052 mMsecsPerFrame = 1E3f / (mPlaybackRate.mSpeed * sampleRate);
Andy Hungd1c74342015-07-07 16:54:23 -07002053 mFrameSize = t->frameSize();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002054 mTrack = t;
Eric Laurent2beeb502010-07-16 07:43:46 -07002055
Wei Jiae0bbac92016-07-18 16:04:53 -07002056 return updateTrack();
2057}
2058
2059status_t MediaPlayerService::AudioOutput::updateTrack() {
2060 if (mTrack == NULL) {
2061 return NO_ERROR;
2062 }
2063
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002064 status_t res = NO_ERROR;
Wei Jia0162d002015-06-09 11:59:33 -07002065 // Note some output devices may give us a direct track even though we don't specify it.
2066 // Example: Line application b/17459982.
Wei Jiae0bbac92016-07-18 16:04:53 -07002067 if ((mTrack->getFlags()
2068 & (AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD | AUDIO_OUTPUT_FLAG_DIRECT)) == 0) {
2069 res = mTrack->setPlaybackRate(mPlaybackRate);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002070 if (res == NO_ERROR) {
Wei Jiae0bbac92016-07-18 16:04:53 -07002071 mTrack->setAuxEffectSendLevel(mSendLevel);
2072 res = mTrack->attachAuxEffect(mAuxEffectId);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002073 }
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002074 }
Wei Jiae0bbac92016-07-18 16:04:53 -07002075 ALOGV("updateTrack() DONE status %d", res);
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002076 return res;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002077}
2078
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002079status_t MediaPlayerService::AudioOutput::start()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002080{
Steve Block3856b092011-10-20 11:56:00 +01002081 ALOGV("start");
Andy Hungd1c74342015-07-07 16:54:23 -07002082 Mutex::Autolock lock(mLock);
Marco Nelissen6b74d672012-02-28 16:07:44 -08002083 if (mCallbackData != NULL) {
2084 mCallbackData->endTrackSwitch();
2085 }
Glenn Kasten2799d742013-05-30 14:33:29 -07002086 if (mTrack != 0) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002087 mTrack->setVolume(mLeftVolume, mRightVolume);
Eric Laurent2beeb502010-07-16 07:43:46 -07002088 mTrack->setAuxEffectSendLevel(mSendLevel);
Andy Hung39399b62017-04-21 15:07:45 -07002089 status_t status = mTrack->start();
2090 if (status == NO_ERROR) {
2091 mVolumeHandler->setStarted();
2092 }
2093 return status;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002094 }
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002095 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002096}
2097
Marco Nelissen6b74d672012-02-28 16:07:44 -08002098void MediaPlayerService::AudioOutput::setNextOutput(const sp<AudioOutput>& nextOutput) {
Andy Hungd1c74342015-07-07 16:54:23 -07002099 Mutex::Autolock lock(mLock);
Marco Nelissen6b74d672012-02-28 16:07:44 -08002100 mNextOutput = nextOutput;
2101}
Marco Nelissen7ee8ac92010-01-12 09:23:54 -08002102
Marco Nelissen6b74d672012-02-28 16:07:44 -08002103void MediaPlayerService::AudioOutput::switchToNextOutput() {
2104 ALOGV("switchToNextOutput");
Andy Hungd1c74342015-07-07 16:54:23 -07002105
2106 // Try to acquire the callback lock before moving track (without incurring deadlock).
2107 const unsigned kMaxSwitchTries = 100;
2108 Mutex::Autolock lock(mLock);
2109 for (unsigned tries = 0;;) {
2110 if (mTrack == 0) {
2111 return;
Marco Nelissen6b74d672012-02-28 16:07:44 -08002112 }
Andy Hungd1c74342015-07-07 16:54:23 -07002113 if (mNextOutput != NULL && mNextOutput != this) {
2114 if (mCallbackData != NULL) {
2115 // two alternative approaches
2116#if 1
2117 CallbackData *callbackData = mCallbackData;
2118 mLock.unlock();
2119 // proper acquisition sequence
2120 callbackData->lock();
2121 mLock.lock();
2122 // Caution: it is unlikely that someone deleted our callback or changed our target
2123 if (callbackData != mCallbackData || mNextOutput == NULL || mNextOutput == this) {
2124 // fatal if we are starved out.
2125 LOG_ALWAYS_FATAL_IF(++tries > kMaxSwitchTries,
2126 "switchToNextOutput() cannot obtain correct lock sequence");
2127 callbackData->unlock();
2128 continue;
2129 }
2130 callbackData->mSwitching = true; // begin track switch
Wei Jiaadee56a2016-08-05 15:40:34 -07002131 callbackData->setOutput(NULL);
Andy Hungd1c74342015-07-07 16:54:23 -07002132#else
2133 // tryBeginTrackSwitch() returns false if the callback has the lock.
2134 if (!mCallbackData->tryBeginTrackSwitch()) {
2135 // fatal if we are starved out.
2136 LOG_ALWAYS_FATAL_IF(++tries > kMaxSwitchTries,
2137 "switchToNextOutput() cannot obtain callback lock");
2138 mLock.unlock();
2139 usleep(5 * 1000 /* usec */); // allow callback to use AudioOutput
2140 mLock.lock();
2141 continue;
2142 }
2143#endif
2144 }
2145
2146 Mutex::Autolock nextLock(mNextOutput->mLock);
2147
2148 // If the next output track is not NULL, then it has been
2149 // opened already for playback.
2150 // This is possible even without the next player being started,
2151 // for example, the next player could be prepared and seeked.
2152 //
2153 // Presuming it isn't advisable to force the track over.
2154 if (mNextOutput->mTrack == NULL) {
2155 ALOGD("Recycling track for gapless playback");
2156 delete mNextOutput->mCallbackData;
2157 mNextOutput->mCallbackData = mCallbackData;
2158 mNextOutput->mRecycledTrack = mTrack;
2159 mNextOutput->mSampleRateHz = mSampleRateHz;
2160 mNextOutput->mMsecsPerFrame = mMsecsPerFrame;
Andy Hungd1c74342015-07-07 16:54:23 -07002161 mNextOutput->mFlags = mFlags;
2162 mNextOutput->mFrameSize = mFrameSize;
2163 close_l();
2164 mCallbackData = NULL; // destruction handled by mNextOutput
2165 } else {
2166 ALOGW("Ignoring gapless playback because next player has already started");
2167 // remove track in case resource needed for future players.
2168 if (mCallbackData != NULL) {
2169 mCallbackData->endTrackSwitch(); // release lock for callbacks before close.
2170 }
2171 close_l();
2172 }
2173 }
2174 break;
Marco Nelissen6b74d672012-02-28 16:07:44 -08002175 }
2176}
2177
Wei Jia7d3f4df2015-03-03 15:28:00 -08002178ssize_t MediaPlayerService::AudioOutput::write(const void* buffer, size_t size, bool blocking)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002179{
Andy Hungd1c74342015-07-07 16:54:23 -07002180 Mutex::Autolock lock(mLock);
Glenn Kastenadad3d72014-02-21 14:51:43 -08002181 LOG_ALWAYS_FATAL_IF(mCallback != NULL, "Don't call write if supplying a callback.");
Andreas Huber20111aa2009-07-14 16:56:47 -07002182
Steve Block3856b092011-10-20 11:56:00 +01002183 //ALOGV("write(%p, %u)", buffer, size);
Glenn Kasten2799d742013-05-30 14:33:29 -07002184 if (mTrack != 0) {
Andy Hung2f6e73d2016-04-08 12:12:58 -07002185 return mTrack->write(buffer, size, blocking);
Marco Nelissen10dbb8e2009-09-20 10:42:13 -07002186 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002187 return NO_INIT;
2188}
2189
2190void MediaPlayerService::AudioOutput::stop()
2191{
Steve Block3856b092011-10-20 11:56:00 +01002192 ALOGV("stop");
Andy Hungd1c74342015-07-07 16:54:23 -07002193 Mutex::Autolock lock(mLock);
Glenn Kasten2799d742013-05-30 14:33:29 -07002194 if (mTrack != 0) mTrack->stop();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002195}
2196
2197void MediaPlayerService::AudioOutput::flush()
2198{
Steve Block3856b092011-10-20 11:56:00 +01002199 ALOGV("flush");
Andy Hungd1c74342015-07-07 16:54:23 -07002200 Mutex::Autolock lock(mLock);
Glenn Kasten2799d742013-05-30 14:33:29 -07002201 if (mTrack != 0) mTrack->flush();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002202}
2203
2204void MediaPlayerService::AudioOutput::pause()
2205{
Steve Block3856b092011-10-20 11:56:00 +01002206 ALOGV("pause");
Andy Hungd1c74342015-07-07 16:54:23 -07002207 Mutex::Autolock lock(mLock);
Glenn Kasten2799d742013-05-30 14:33:29 -07002208 if (mTrack != 0) mTrack->pause();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002209}
2210
2211void MediaPlayerService::AudioOutput::close()
2212{
Steve Block3856b092011-10-20 11:56:00 +01002213 ALOGV("close");
Erik Wolsheimer7845a1f2015-10-30 12:07:52 -07002214 sp<AudioTrack> track;
2215 {
2216 Mutex::Autolock lock(mLock);
2217 track = mTrack;
2218 close_l(); // clears mTrack
2219 }
2220 // destruction of the track occurs outside of mutex.
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002221}
2222
2223void MediaPlayerService::AudioOutput::setVolume(float left, float right)
2224{
Steve Block3856b092011-10-20 11:56:00 +01002225 ALOGV("setVolume(%f, %f)", left, right);
Andy Hungd1c74342015-07-07 16:54:23 -07002226 Mutex::Autolock lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002227 mLeftVolume = left;
2228 mRightVolume = right;
Glenn Kasten2799d742013-05-30 14:33:29 -07002229 if (mTrack != 0) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002230 mTrack->setVolume(left, right);
2231 }
2232}
2233
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002234status_t MediaPlayerService::AudioOutput::setPlaybackRate(const AudioPlaybackRate &rate)
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002235{
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002236 ALOGV("setPlaybackRate(%f %f %d %d)",
2237 rate.mSpeed, rate.mPitch, rate.mFallbackMode, rate.mStretchMode);
Andy Hungd1c74342015-07-07 16:54:23 -07002238 Mutex::Autolock lock(mLock);
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002239 if (mTrack == 0) {
2240 // remember rate so that we can set it when the track is opened
2241 mPlaybackRate = rate;
2242 return OK;
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002243 }
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002244 status_t res = mTrack->setPlaybackRate(rate);
2245 if (res != NO_ERROR) {
2246 return res;
2247 }
2248 // rate.mSpeed is always greater than 0 if setPlaybackRate succeeded
2249 CHECK_GT(rate.mSpeed, 0.f);
2250 mPlaybackRate = rate;
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002251 if (mSampleRateHz != 0) {
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002252 mMsecsPerFrame = 1E3f / (rate.mSpeed * mSampleRateHz);
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -08002253 }
2254 return res;
2255}
2256
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002257status_t MediaPlayerService::AudioOutput::getPlaybackRate(AudioPlaybackRate *rate)
2258{
2259 ALOGV("setPlaybackRate");
Andy Hungd1c74342015-07-07 16:54:23 -07002260 Mutex::Autolock lock(mLock);
Lajos Molnar3a474aa2015-04-24 17:10:07 -07002261 if (mTrack == 0) {
2262 return NO_INIT;
2263 }
2264 *rate = mTrack->getPlaybackRate();
2265 return NO_ERROR;
2266}
2267
Eric Laurent2beeb502010-07-16 07:43:46 -07002268status_t MediaPlayerService::AudioOutput::setAuxEffectSendLevel(float level)
2269{
Steve Block3856b092011-10-20 11:56:00 +01002270 ALOGV("setAuxEffectSendLevel(%f)", level);
Andy Hungd1c74342015-07-07 16:54:23 -07002271 Mutex::Autolock lock(mLock);
Eric Laurent2beeb502010-07-16 07:43:46 -07002272 mSendLevel = level;
Glenn Kasten2799d742013-05-30 14:33:29 -07002273 if (mTrack != 0) {
Eric Laurent2beeb502010-07-16 07:43:46 -07002274 return mTrack->setAuxEffectSendLevel(level);
2275 }
2276 return NO_ERROR;
2277}
2278
2279status_t MediaPlayerService::AudioOutput::attachAuxEffect(int effectId)
2280{
Steve Block3856b092011-10-20 11:56:00 +01002281 ALOGV("attachAuxEffect(%d)", effectId);
Andy Hungd1c74342015-07-07 16:54:23 -07002282 Mutex::Autolock lock(mLock);
Eric Laurent2beeb502010-07-16 07:43:46 -07002283 mAuxEffectId = effectId;
Glenn Kasten2799d742013-05-30 14:33:29 -07002284 if (mTrack != 0) {
Eric Laurent2beeb502010-07-16 07:43:46 -07002285 return mTrack->attachAuxEffect(effectId);
2286 }
2287 return NO_ERROR;
2288}
2289
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002290VolumeShaper::Status MediaPlayerService::AudioOutput::applyVolumeShaper(
2291 const sp<VolumeShaper::Configuration>& configuration,
2292 const sp<VolumeShaper::Operation>& operation)
2293{
2294 Mutex::Autolock lock(mLock);
2295 ALOGV("AudioOutput::applyVolumeShaper");
Andy Hung4ef88d72017-02-21 19:47:53 -08002296
Andy Hung4ef88d72017-02-21 19:47:53 -08002297 mVolumeHandler->setIdIfNecessary(configuration);
Andy Hung39399b62017-04-21 15:07:45 -07002298
2299 VolumeShaper::Status status;
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002300 if (mTrack != 0) {
Andy Hung39399b62017-04-21 15:07:45 -07002301 status = mTrack->applyVolumeShaper(configuration, operation);
2302 if (status >= 0) {
2303 (void)mVolumeHandler->applyVolumeShaper(configuration, operation);
2304 // TODO: start on exact AudioTrack state (STATE_ACTIVE || STATE_STOPPING)
2305 mVolumeHandler->setStarted();
2306 }
Andy Hung4ef88d72017-02-21 19:47:53 -08002307 } else {
Andy Hung39399b62017-04-21 15:07:45 -07002308 status = mVolumeHandler->applyVolumeShaper(configuration, operation);
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002309 }
Andy Hung39399b62017-04-21 15:07:45 -07002310 return status;
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002311}
2312
2313sp<VolumeShaper::State> MediaPlayerService::AudioOutput::getVolumeShaperState(int id)
2314{
2315 Mutex::Autolock lock(mLock);
2316 if (mTrack != 0) {
2317 return mTrack->getVolumeShaperState(id);
Andy Hung4ef88d72017-02-21 19:47:53 -08002318 } else {
2319 return mVolumeHandler->getVolumeShaperState(id);
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002320 }
Andy Hung9fc8b5c2017-01-24 13:36:48 -08002321}
2322
Andreas Huber20111aa2009-07-14 16:56:47 -07002323// static
2324void MediaPlayerService::AudioOutput::CallbackWrapper(
Glenn Kastend217a8c2011-06-01 15:20:35 -07002325 int event, void *cookie, void *info) {
Steve Block3856b092011-10-20 11:56:00 +01002326 //ALOGV("callbackwrapper");
Marco Nelissen6b74d672012-02-28 16:07:44 -08002327 CallbackData *data = (CallbackData*)cookie;
Andy Hungd1c74342015-07-07 16:54:23 -07002328 // lock to ensure we aren't caught in the middle of a track switch.
Marco Nelissen6b74d672012-02-28 16:07:44 -08002329 data->lock();
2330 AudioOutput *me = data->getOutput();
Andreas Huber20111aa2009-07-14 16:56:47 -07002331 AudioTrack::Buffer *buffer = (AudioTrack::Buffer *)info;
Marco Nelissen6b74d672012-02-28 16:07:44 -08002332 if (me == NULL) {
2333 // no output set, likely because the track was scheduled to be reused
2334 // by another player, but the format turned out to be incompatible.
2335 data->unlock();
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002336 if (buffer != NULL) {
2337 buffer->size = 0;
2338 }
Marco Nelissen6b74d672012-02-28 16:07:44 -08002339 return;
2340 }
Andreas Huber20111aa2009-07-14 16:56:47 -07002341
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002342 switch(event) {
2343 case AudioTrack::EVENT_MORE_DATA: {
2344 size_t actualSize = (*me->mCallback)(
2345 me, buffer->raw, buffer->size, me->mCallbackCookie,
2346 CB_EVENT_FILL_BUFFER);
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002347
Andy Hung719b46b2015-05-31 22:18:25 -07002348 // Log when no data is returned from the callback.
2349 // (1) We may have no data (especially with network streaming sources).
2350 // (2) We may have reached the EOS and the audio track is not stopped yet.
2351 // Note that AwesomePlayer/AudioPlayer will only return zero size when it reaches the EOS.
2352 // NuPlayerRenderer will return zero when it doesn't have data (it doesn't block to fill).
2353 //
2354 // This is a benign busy-wait, with the next data request generated 10 ms or more later;
2355 // nevertheless for power reasons, we don't want to see too many of these.
Andreas Huber2e8ffaf2010-02-18 16:45:13 -08002356
Andy Hung719b46b2015-05-31 22:18:25 -07002357 ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned");
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002358
2359 buffer->size = actualSize;
2360 } break;
2361
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002362 case AudioTrack::EVENT_STREAM_END:
Andy Hung719b46b2015-05-31 22:18:25 -07002363 // currently only occurs for offloaded callbacks
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002364 ALOGV("callbackwrapper: deliver EVENT_STREAM_END");
2365 (*me->mCallback)(me, NULL /* buffer */, 0 /* size */,
2366 me->mCallbackCookie, CB_EVENT_STREAM_END);
2367 break;
2368
2369 case AudioTrack::EVENT_NEW_IAUDIOTRACK :
2370 ALOGV("callbackwrapper: deliver EVENT_TEAR_DOWN");
2371 (*me->mCallback)(me, NULL /* buffer */, 0 /* size */,
2372 me->mCallbackCookie, CB_EVENT_TEAR_DOWN);
2373 break;
2374
Glenn Kasten421743b2015-06-01 08:18:08 -07002375 case AudioTrack::EVENT_UNDERRUN:
Andy Hung719b46b2015-05-31 22:18:25 -07002376 // This occurs when there is no data available, typically
Glenn Kasten421743b2015-06-01 08:18:08 -07002377 // when there is a failure to supply data to the AudioTrack. It can also
2378 // occur in non-offloaded mode when the audio device comes out of standby.
2379 //
Andy Hung719b46b2015-05-31 22:18:25 -07002380 // If an AudioTrack underruns it outputs silence. Since this happens suddenly
2381 // it may sound like an audible pop or glitch.
2382 //
2383 // The underrun event is sent once per track underrun; the condition is reset
2384 // when more data is sent to the AudioTrack.
Eric Laurente93cc032016-05-05 10:15:10 -07002385 ALOGD("callbackwrapper: EVENT_UNDERRUN (discarded)");
Glenn Kasten421743b2015-06-01 08:18:08 -07002386 break;
2387
Richard Fitzgeraldd89532e2013-05-14 13:18:21 +01002388 default:
2389 ALOGE("received unknown event type: %d inside CallbackWrapper !", event);
Andreas Huber51c1e0e2011-04-04 11:43:40 -07002390 }
2391
Marco Nelissen6b74d672012-02-28 16:07:44 -08002392 data->unlock();
Andreas Huber20111aa2009-07-14 16:56:47 -07002393}
2394
Glenn Kastend848eb42016-03-08 13:42:11 -08002395audio_session_t MediaPlayerService::AudioOutput::getSessionId() const
Eric Laurent8c563ed2010-10-07 18:23:03 -07002396{
Andy Hungd1c74342015-07-07 16:54:23 -07002397 Mutex::Autolock lock(mLock);
Eric Laurent8c563ed2010-10-07 18:23:03 -07002398 return mSessionId;
2399}
2400
Eric Laurent6f59db12013-07-26 17:16:50 -07002401uint32_t MediaPlayerService::AudioOutput::getSampleRate() const
2402{
Andy Hungd1c74342015-07-07 16:54:23 -07002403 Mutex::Autolock lock(mLock);
Eric Laurent6f59db12013-07-26 17:16:50 -07002404 if (mTrack == 0) return 0;
2405 return mTrack->getSampleRate();
2406}
2407
Andy Hungf2c87b32016-04-07 19:49:29 -07002408int64_t MediaPlayerService::AudioOutput::getBufferDurationInUs() const
2409{
2410 Mutex::Autolock lock(mLock);
2411 if (mTrack == 0) {
2412 return 0;
2413 }
2414 int64_t duration;
2415 if (mTrack->getBufferDurationInUs(&duration) != OK) {
2416 return 0;
2417 }
2418 return duration;
2419}
2420
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002421////////////////////////////////////////////////////////////////////////////////
2422
2423struct CallbackThread : public Thread {
2424 CallbackThread(const wp<MediaPlayerBase::AudioSink> &sink,
2425 MediaPlayerBase::AudioSink::AudioCallback cb,
2426 void *cookie);
2427
2428protected:
2429 virtual ~CallbackThread();
2430
2431 virtual bool threadLoop();
2432
2433private:
2434 wp<MediaPlayerBase::AudioSink> mSink;
2435 MediaPlayerBase::AudioSink::AudioCallback mCallback;
2436 void *mCookie;
2437 void *mBuffer;
2438 size_t mBufferSize;
2439
2440 CallbackThread(const CallbackThread &);
2441 CallbackThread &operator=(const CallbackThread &);
2442};
2443
2444CallbackThread::CallbackThread(
2445 const wp<MediaPlayerBase::AudioSink> &sink,
2446 MediaPlayerBase::AudioSink::AudioCallback cb,
2447 void *cookie)
2448 : mSink(sink),
2449 mCallback(cb),
2450 mCookie(cookie),
2451 mBuffer(NULL),
2452 mBufferSize(0) {
2453}
2454
2455CallbackThread::~CallbackThread() {
2456 if (mBuffer) {
2457 free(mBuffer);
2458 mBuffer = NULL;
2459 }
2460}
2461
2462bool CallbackThread::threadLoop() {
2463 sp<MediaPlayerBase::AudioSink> sink = mSink.promote();
2464 if (sink == NULL) {
2465 return false;
2466 }
2467
2468 if (mBuffer == NULL) {
2469 mBufferSize = sink->bufferSize();
2470 mBuffer = malloc(mBufferSize);
2471 }
2472
2473 size_t actualSize =
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00002474 (*mCallback)(sink.get(), mBuffer, mBufferSize, mCookie,
2475 MediaPlayerBase::AudioSink::CB_EVENT_FILL_BUFFER);
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002476
2477 if (actualSize > 0) {
2478 sink->write(mBuffer, actualSize);
Andy Hunga31335a2014-08-20 17:37:59 -07002479 // Could return false on sink->write() error or short count.
2480 // Not necessarily appropriate but would work for AudioCache behavior.
Andreas Huber7d5b8a72010-02-09 16:59:18 -08002481 }
2482
2483 return true;
2484}
2485
2486////////////////////////////////////////////////////////////////////////////////
2487
Gloria Wang7cf180c2011-02-19 18:37:57 -08002488void MediaPlayerService::addBatteryData(uint32_t params)
2489{
2490 Mutex::Autolock lock(mLock);
Gloria Wang9ee159b2011-02-24 14:51:45 -08002491
2492 int32_t time = systemTime() / 1000000L;
2493
2494 // change audio output devices. This notification comes from AudioFlinger
2495 if ((params & kBatteryDataSpeakerOn)
2496 || (params & kBatteryDataOtherAudioDeviceOn)) {
2497
2498 int deviceOn[NUM_AUDIO_DEVICES];
2499 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2500 deviceOn[i] = 0;
2501 }
2502
2503 if ((params & kBatteryDataSpeakerOn)
2504 && (params & kBatteryDataOtherAudioDeviceOn)) {
2505 deviceOn[SPEAKER_AND_OTHER] = 1;
2506 } else if (params & kBatteryDataSpeakerOn) {
2507 deviceOn[SPEAKER] = 1;
2508 } else {
2509 deviceOn[OTHER_AUDIO_DEVICE] = 1;
2510 }
2511
2512 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2513 if (mBatteryAudio.deviceOn[i] != deviceOn[i]){
2514
2515 if (mBatteryAudio.refCount > 0) { // if playing audio
2516 if (!deviceOn[i]) {
2517 mBatteryAudio.lastTime[i] += time;
2518 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2519 mBatteryAudio.lastTime[i] = 0;
2520 } else {
2521 mBatteryAudio.lastTime[i] = 0 - time;
2522 }
2523 }
2524
2525 mBatteryAudio.deviceOn[i] = deviceOn[i];
2526 }
2527 }
2528 return;
2529 }
2530
Marco Nelissenb7848f12014-12-04 08:57:56 -08002531 // an audio stream is started
Gloria Wang9ee159b2011-02-24 14:51:45 -08002532 if (params & kBatteryDataAudioFlingerStart) {
2533 // record the start time only if currently no other audio
2534 // is being played
2535 if (mBatteryAudio.refCount == 0) {
2536 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2537 if (mBatteryAudio.deviceOn[i]) {
2538 mBatteryAudio.lastTime[i] -= time;
2539 }
2540 }
2541 }
2542
2543 mBatteryAudio.refCount ++;
2544 return;
2545
2546 } else if (params & kBatteryDataAudioFlingerStop) {
2547 if (mBatteryAudio.refCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00002548 ALOGW("Battery track warning: refCount is <= 0");
Gloria Wang9ee159b2011-02-24 14:51:45 -08002549 return;
2550 }
2551
2552 // record the stop time only if currently this is the only
2553 // audio being played
2554 if (mBatteryAudio.refCount == 1) {
2555 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2556 if (mBatteryAudio.deviceOn[i]) {
2557 mBatteryAudio.lastTime[i] += time;
2558 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2559 mBatteryAudio.lastTime[i] = 0;
2560 }
2561 }
2562 }
2563
2564 mBatteryAudio.refCount --;
2565 return;
2566 }
2567
Andy Hung1afd0982016-11-08 16:13:44 -08002568 uid_t uid = IPCThreadState::self()->getCallingUid();
Gloria Wang7cf180c2011-02-19 18:37:57 -08002569 if (uid == AID_MEDIA) {
2570 return;
2571 }
2572 int index = mBatteryData.indexOfKey(uid);
Gloria Wang7cf180c2011-02-19 18:37:57 -08002573
2574 if (index < 0) { // create a new entry for this UID
2575 BatteryUsageInfo info;
2576 info.audioTotalTime = 0;
2577 info.videoTotalTime = 0;
2578 info.audioLastTime = 0;
2579 info.videoLastTime = 0;
2580 info.refCount = 0;
2581
Gloria Wang9ee159b2011-02-24 14:51:45 -08002582 if (mBatteryData.add(uid, info) == NO_MEMORY) {
Steve Block29357bc2012-01-06 19:20:56 +00002583 ALOGE("Battery track error: no memory for new app");
Gloria Wang9ee159b2011-02-24 14:51:45 -08002584 return;
2585 }
Gloria Wang7cf180c2011-02-19 18:37:57 -08002586 }
2587
2588 BatteryUsageInfo &info = mBatteryData.editValueFor(uid);
2589
2590 if (params & kBatteryDataCodecStarted) {
2591 if (params & kBatteryDataTrackAudio) {
2592 info.audioLastTime -= time;
2593 info.refCount ++;
2594 }
2595 if (params & kBatteryDataTrackVideo) {
2596 info.videoLastTime -= time;
2597 info.refCount ++;
2598 }
2599 } else {
2600 if (info.refCount == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00002601 ALOGW("Battery track warning: refCount is already 0");
Gloria Wang7cf180c2011-02-19 18:37:57 -08002602 return;
2603 } else if (info.refCount < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00002604 ALOGE("Battery track error: refCount < 0");
Gloria Wang7cf180c2011-02-19 18:37:57 -08002605 mBatteryData.removeItem(uid);
2606 return;
2607 }
2608
2609 if (params & kBatteryDataTrackAudio) {
2610 info.audioLastTime += time;
2611 info.refCount --;
2612 }
2613 if (params & kBatteryDataTrackVideo) {
2614 info.videoLastTime += time;
2615 info.refCount --;
2616 }
2617
2618 // no stream is being played by this UID
2619 if (info.refCount == 0) {
2620 info.audioTotalTime += info.audioLastTime;
2621 info.audioLastTime = 0;
2622 info.videoTotalTime += info.videoLastTime;
2623 info.videoLastTime = 0;
2624 }
2625 }
2626}
2627
2628status_t MediaPlayerService::pullBatteryData(Parcel* reply) {
2629 Mutex::Autolock lock(mLock);
Gloria Wang9ee159b2011-02-24 14:51:45 -08002630
2631 // audio output devices usage
2632 int32_t time = systemTime() / 1000000L; //in ms
2633 int32_t totalTime;
2634
2635 for (int i = 0; i < NUM_AUDIO_DEVICES; i++) {
2636 totalTime = mBatteryAudio.totalTime[i];
2637
2638 if (mBatteryAudio.deviceOn[i]
2639 && (mBatteryAudio.lastTime[i] != 0)) {
2640 int32_t tmpTime = mBatteryAudio.lastTime[i] + time;
2641 totalTime += tmpTime;
2642 }
2643
2644 reply->writeInt32(totalTime);
2645 // reset the total time
2646 mBatteryAudio.totalTime[i] = 0;
2647 }
2648
2649 // codec usage
Gloria Wang7cf180c2011-02-19 18:37:57 -08002650 BatteryUsageInfo info;
2651 int size = mBatteryData.size();
2652
2653 reply->writeInt32(size);
2654 int i = 0;
2655
2656 while (i < size) {
2657 info = mBatteryData.valueAt(i);
2658
2659 reply->writeInt32(mBatteryData.keyAt(i)); //UID
2660 reply->writeInt32(info.audioTotalTime);
2661 reply->writeInt32(info.videoTotalTime);
2662
2663 info.audioTotalTime = 0;
2664 info.videoTotalTime = 0;
2665
2666 // remove the UID entry where no stream is being played
2667 if (info.refCount <= 0) {
2668 mBatteryData.removeItemsAt(i);
2669 size --;
2670 i --;
2671 }
2672 i++;
2673 }
2674 return NO_ERROR;
2675}
nikoa64c8c72009-07-20 15:07:26 -07002676} // namespace android