blob: 81a5e8c8be2e460b91875df364739e531338225e [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08002**
3** Copyright 2006, 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//#define LOG_NDEBUG 0
19#define LOG_TAG "MediaPlayer"
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080020
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080021#include <fcntl.h>
Mark Salyzyn34fb2962014-06-18 16:30:56 -070022#include <inttypes.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <unistd.h>
26
27#include <utils/Log.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080028
Mathias Agopian75624082009-05-19 19:08:10 -070029#include <binder/IServiceManager.h>
30#include <binder/IPCThreadState.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080031
Mathias Agopianb1e7cd12013-02-14 17:11:27 -080032#include <gui/Surface.h>
Jamie Gennis61c7ef52011-07-13 12:59:34 -070033
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080034#include <media/mediaplayer.h>
Lajos Molnar3a474aa2015-04-24 17:10:07 -070035#include <media/AudioResamplerPublic.h>
Glenn Kastena3f1fa32012-01-18 14:54:46 -080036#include <media/AudioSystem.h>
Lajos Molnar3a474aa2015-04-24 17:10:07 -070037#include <media/AVSyncSettings.h>
Chris Watkins99f31602015-03-20 13:06:33 -070038#include <media/IDataSource.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080039
Mathias Agopian75624082009-05-19 19:08:10 -070040#include <binder/MemoryBase.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080041
Andreas Huber2db84552010-01-28 11:19:57 -080042#include <utils/KeyedVector.h>
43#include <utils/String8.h>
44
Dima Zavin64760242011-05-11 14:15:23 -070045#include <system/audio.h>
Jamie Gennis61c7ef52011-07-13 12:59:34 -070046#include <system/window.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070047
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080048namespace android {
49
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080050MediaPlayer::MediaPlayer()
51{
Steve Block3856b092011-10-20 11:56:00 +010052 ALOGV("constructor");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080053 mListener = NULL;
54 mCookie = NULL;
Dima Zavinfce7a472011-04-19 22:30:36 -070055 mStreamType = AUDIO_STREAM_MUSIC;
Jean-Michel Trivi640adb32014-09-05 11:20:11 -070056 mAudioAttributesParcel = NULL;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080057 mCurrentPosition = -1;
58 mSeekPosition = -1;
59 mCurrentState = MEDIA_PLAYER_IDLE;
60 mPrepareSync = false;
61 mPrepareStatus = NO_ERROR;
62 mLoop = false;
63 mLeftVolume = mRightVolume = 1.0;
64 mVideoWidth = mVideoHeight = 0;
Jason Sams1af452f2009-03-24 18:45:22 -070065 mLockThreadId = 0;
Eric Laurentde3f8392014-07-27 18:38:22 -070066 mAudioSessionId = AudioSystem::newAudioUniqueId();
Marco Nelissend457c972014-02-11 08:47:07 -080067 AudioSystem::acquireAudioSessionId(mAudioSessionId, -1);
Eric Laurent8c563ed2010-10-07 18:23:03 -070068 mSendLevel = 0;
John Grossmanc795b642012-02-22 15:38:35 -080069 mRetransmitEndpointValid = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080070}
71
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080072MediaPlayer::~MediaPlayer()
73{
Steve Block3856b092011-10-20 11:56:00 +010074 ALOGV("destructor");
Jean-Michel Trivi640adb32014-09-05 11:20:11 -070075 if (mAudioAttributesParcel != NULL) {
76 delete mAudioAttributesParcel;
77 mAudioAttributesParcel = NULL;
78 }
Marco Nelissend457c972014-02-11 08:47:07 -080079 AudioSystem::releaseAudioSessionId(mAudioSessionId, -1);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080080 disconnect();
81 IPCThreadState::self()->flushCommands();
82}
83
84void MediaPlayer::disconnect()
85{
Steve Block3856b092011-10-20 11:56:00 +010086 ALOGV("disconnect");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080087 sp<IMediaPlayer> p;
88 {
89 Mutex::Autolock _l(mLock);
90 p = mPlayer;
91 mPlayer.clear();
92 }
93
94 if (p != 0) {
95 p->disconnect();
96 }
97}
98
99// always call with lock held
100void MediaPlayer::clear_l()
101{
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800102 mCurrentPosition = -1;
103 mSeekPosition = -1;
104 mVideoWidth = mVideoHeight = 0;
John Grossmanc795b642012-02-22 15:38:35 -0800105 mRetransmitEndpointValid = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800106}
107
108status_t MediaPlayer::setListener(const sp<MediaPlayerListener>& listener)
109{
Steve Block3856b092011-10-20 11:56:00 +0100110 ALOGV("setListener");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800111 Mutex::Autolock _l(mLock);
112 mListener = listener;
113 return NO_ERROR;
114}
115
116
Dave Burked681bbb2011-08-30 14:39:17 +0100117status_t MediaPlayer::attachNewPlayer(const sp<IMediaPlayer>& player)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800118{
119 status_t err = UNKNOWN_ERROR;
120 sp<IMediaPlayer> p;
121 { // scope for the lock
122 Mutex::Autolock _l(mLock);
123
Marco Nelissen83ff1432010-03-10 10:53:16 -0800124 if ( !( (mCurrentState & MEDIA_PLAYER_IDLE) ||
125 (mCurrentState == MEDIA_PLAYER_STATE_ERROR ) ) ) {
Steve Block29357bc2012-01-06 19:20:56 +0000126 ALOGE("attachNewPlayer called in state %d", mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800127 return INVALID_OPERATION;
128 }
129
130 clear_l();
131 p = mPlayer;
132 mPlayer = player;
133 if (player != 0) {
134 mCurrentState = MEDIA_PLAYER_INITIALIZED;
135 err = NO_ERROR;
136 } else {
Masaki Muranakaf65fa172013-06-06 09:36:34 +0000137 ALOGE("Unable to create media player");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800138 }
139 }
140
141 if (p != 0) {
142 p->disconnect();
143 }
144
145 return err;
146}
147
Andreas Huber2db84552010-01-28 11:19:57 -0800148status_t MediaPlayer::setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800149 const sp<IMediaHTTPService> &httpService,
Andreas Huber2db84552010-01-28 11:19:57 -0800150 const char *url, const KeyedVector<String8, String8> *headers)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800151{
Steve Block3856b092011-10-20 11:56:00 +0100152 ALOGV("setDataSource(%s)", url);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800153 status_t err = BAD_VALUE;
154 if (url != NULL) {
155 const sp<IMediaPlayerService>& service(getMediaPlayerService());
156 if (service != 0) {
Glenn Kastenf37971f2012-02-03 11:06:53 -0800157 sp<IMediaPlayer> player(service->create(this, mAudioSessionId));
John Grossmanc795b642012-02-22 15:38:35 -0800158 if ((NO_ERROR != doSetRetransmitEndpoint(player)) ||
Andreas Huber1b86fe02014-01-29 11:13:26 -0800159 (NO_ERROR != player->setDataSource(httpService, url, headers))) {
Dave Burke06620672011-09-06 20:39:47 +0100160 player.clear();
Dave Burked681bbb2011-08-30 14:39:17 +0100161 }
Dave Burke06620672011-09-06 20:39:47 +0100162 err = attachNewPlayer(player);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800163 }
164 }
165 return err;
166}
167
168status_t MediaPlayer::setDataSource(int fd, int64_t offset, int64_t length)
169{
Mark Salyzyn34fb2962014-06-18 16:30:56 -0700170 ALOGV("setDataSource(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800171 status_t err = UNKNOWN_ERROR;
172 const sp<IMediaPlayerService>& service(getMediaPlayerService());
173 if (service != 0) {
Glenn Kastenf37971f2012-02-03 11:06:53 -0800174 sp<IMediaPlayer> player(service->create(this, mAudioSessionId));
John Grossmanc795b642012-02-22 15:38:35 -0800175 if ((NO_ERROR != doSetRetransmitEndpoint(player)) ||
176 (NO_ERROR != player->setDataSource(fd, offset, length))) {
Dave Burke06620672011-09-06 20:39:47 +0100177 player.clear();
Dave Burked681bbb2011-08-30 14:39:17 +0100178 }
Dave Burke06620672011-09-06 20:39:47 +0100179 err = attachNewPlayer(player);
Dave Burked681bbb2011-08-30 14:39:17 +0100180 }
181 return err;
182}
183
184status_t MediaPlayer::setDataSource(const sp<IStreamSource> &source)
185{
Steve Block3856b092011-10-20 11:56:00 +0100186 ALOGV("setDataSource");
Dave Burked681bbb2011-08-30 14:39:17 +0100187 status_t err = UNKNOWN_ERROR;
188 const sp<IMediaPlayerService>& service(getMediaPlayerService());
189 if (service != 0) {
Glenn Kastenf37971f2012-02-03 11:06:53 -0800190 sp<IMediaPlayer> player(service->create(this, mAudioSessionId));
John Grossmanc795b642012-02-22 15:38:35 -0800191 if ((NO_ERROR != doSetRetransmitEndpoint(player)) ||
192 (NO_ERROR != player->setDataSource(source))) {
Dave Burke06620672011-09-06 20:39:47 +0100193 player.clear();
Dave Burked681bbb2011-08-30 14:39:17 +0100194 }
Dave Burke06620672011-09-06 20:39:47 +0100195 err = attachNewPlayer(player);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800196 }
197 return err;
198}
199
Chris Watkins99f31602015-03-20 13:06:33 -0700200status_t MediaPlayer::setDataSource(const sp<IDataSource> &source)
201{
202 ALOGV("setDataSource(IDataSource)");
203 status_t err = UNKNOWN_ERROR;
204 const sp<IMediaPlayerService>& service(getMediaPlayerService());
205 if (service != 0) {
206 sp<IMediaPlayer> player(service->create(this, mAudioSessionId));
207 if ((NO_ERROR != doSetRetransmitEndpoint(player)) ||
208 (NO_ERROR != player->setDataSource(source))) {
209 player.clear();
210 }
211 err = attachNewPlayer(player);
212 }
213 return err;
214}
215
Nicolas Catania1d187f12009-05-12 23:25:55 -0700216status_t MediaPlayer::invoke(const Parcel& request, Parcel *reply)
217{
218 Mutex::Autolock _l(mLock);
Nicolas Catania40234932010-03-10 10:41:04 -0800219 const bool hasBeenInitialized =
220 (mCurrentState != MEDIA_PLAYER_STATE_ERROR) &&
221 ((mCurrentState & MEDIA_PLAYER_IDLE) != MEDIA_PLAYER_IDLE);
222 if ((mPlayer != NULL) && hasBeenInitialized) {
Mark Salyzyn34fb2962014-06-18 16:30:56 -0700223 ALOGV("invoke %zu", request.dataSize());
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700224 return mPlayer->invoke(request, reply);
Nicolas Catania1d187f12009-05-12 23:25:55 -0700225 }
Steve Block29357bc2012-01-06 19:20:56 +0000226 ALOGE("invoke failed: wrong state %X", mCurrentState);
Nicolas Catania1d187f12009-05-12 23:25:55 -0700227 return INVALID_OPERATION;
228}
229
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700230status_t MediaPlayer::setMetadataFilter(const Parcel& filter)
231{
Steve Blockb8a80522011-12-20 16:23:08 +0000232 ALOGD("setMetadataFilter");
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700233 Mutex::Autolock lock(mLock);
234 if (mPlayer == NULL) {
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700235 return NO_INIT;
236 }
237 return mPlayer->setMetadataFilter(filter);
238}
Nicolas Catania1d187f12009-05-12 23:25:55 -0700239
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700240status_t MediaPlayer::getMetadata(bool update_only, bool apply_filter, Parcel *metadata)
241{
Steve Blockb8a80522011-12-20 16:23:08 +0000242 ALOGD("getMetadata");
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700243 Mutex::Autolock lock(mLock);
244 if (mPlayer == NULL) {
245 return NO_INIT;
246 }
247 return mPlayer->getMetadata(update_only, apply_filter, metadata);
248}
249
Glenn Kasten11731182011-02-08 17:26:17 -0800250status_t MediaPlayer::setVideoSurfaceTexture(
Andy McFadden484566c2012-12-18 09:46:54 -0800251 const sp<IGraphicBufferProducer>& bufferProducer)
Glenn Kasten11731182011-02-08 17:26:17 -0800252{
Steve Block3856b092011-10-20 11:56:00 +0100253 ALOGV("setVideoSurfaceTexture");
Glenn Kasten11731182011-02-08 17:26:17 -0800254 Mutex::Autolock _l(mLock);
255 if (mPlayer == 0) return NO_INIT;
Andy McFadden484566c2012-12-18 09:46:54 -0800256 return mPlayer->setVideoSurfaceTexture(bufferProducer);
Glenn Kasten11731182011-02-08 17:26:17 -0800257}
258
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800259// must call with lock held
260status_t MediaPlayer::prepareAsync_l()
261{
Glenn Kastenb187de12014-12-30 08:18:15 -0800262 if ( (mPlayer != 0) && ( mCurrentState & (MEDIA_PLAYER_INITIALIZED | MEDIA_PLAYER_STOPPED) ) ) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800263 mPlayer->setAudioStreamType(mStreamType);
Jean-Michel Trivi640adb32014-09-05 11:20:11 -0700264 if (mAudioAttributesParcel != NULL) {
265 mPlayer->setParameter(KEY_PARAMETER_AUDIO_ATTRIBUTES, *mAudioAttributesParcel);
266 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800267 mCurrentState = MEDIA_PLAYER_PREPARING;
268 return mPlayer->prepareAsync();
269 }
Steve Block29357bc2012-01-06 19:20:56 +0000270 ALOGE("prepareAsync called in state %d", mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800271 return INVALID_OPERATION;
272}
273
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700274// TODO: In case of error, prepareAsync provides the caller with 2 error codes,
275// one defined in the Android framework and one provided by the implementation
276// that generated the error. The sync version of prepare returns only 1 error
277// code.
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800278status_t MediaPlayer::prepare()
279{
Steve Block3856b092011-10-20 11:56:00 +0100280 ALOGV("prepare");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800281 Mutex::Autolock _l(mLock);
Jason Sams1af452f2009-03-24 18:45:22 -0700282 mLockThreadId = getThreadId();
283 if (mPrepareSync) {
284 mLockThreadId = 0;
285 return -EALREADY;
286 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800287 mPrepareSync = true;
288 status_t ret = prepareAsync_l();
Jason Sams1af452f2009-03-24 18:45:22 -0700289 if (ret != NO_ERROR) {
290 mLockThreadId = 0;
291 return ret;
292 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800293
294 if (mPrepareSync) {
295 mSignal.wait(mLock); // wait for prepare done
296 mPrepareSync = false;
297 }
Steve Block3856b092011-10-20 11:56:00 +0100298 ALOGV("prepare complete - status=%d", mPrepareStatus);
Jason Sams1af452f2009-03-24 18:45:22 -0700299 mLockThreadId = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800300 return mPrepareStatus;
301}
302
303status_t MediaPlayer::prepareAsync()
304{
Steve Block3856b092011-10-20 11:56:00 +0100305 ALOGV("prepareAsync");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800306 Mutex::Autolock _l(mLock);
307 return prepareAsync_l();
308}
309
310status_t MediaPlayer::start()
311{
Steve Block3856b092011-10-20 11:56:00 +0100312 ALOGV("start");
Chong Zhangd88adb92014-07-23 11:43:46 -0700313
314 status_t ret = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800315 Mutex::Autolock _l(mLock);
Chong Zhangd88adb92014-07-23 11:43:46 -0700316
317 mLockThreadId = getThreadId();
318
319 if (mCurrentState & MEDIA_PLAYER_STARTED) {
320 ret = NO_ERROR;
321 } else if ( (mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_PREPARED |
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800322 MEDIA_PLAYER_PLAYBACK_COMPLETE | MEDIA_PLAYER_PAUSED ) ) ) {
323 mPlayer->setLooping(mLoop);
324 mPlayer->setVolume(mLeftVolume, mRightVolume);
Eric Laurent2beeb502010-07-16 07:43:46 -0700325 mPlayer->setAuxEffectSendLevel(mSendLevel);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800326 mCurrentState = MEDIA_PLAYER_STARTED;
Chong Zhangd88adb92014-07-23 11:43:46 -0700327 ret = mPlayer->start();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800328 if (ret != NO_ERROR) {
329 mCurrentState = MEDIA_PLAYER_STATE_ERROR;
330 } else {
331 if (mCurrentState == MEDIA_PLAYER_PLAYBACK_COMPLETE) {
Steve Block3856b092011-10-20 11:56:00 +0100332 ALOGV("playback completed immediately following start()");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800333 }
334 }
Chong Zhangd88adb92014-07-23 11:43:46 -0700335 } else {
336 ALOGE("start called in state %d", mCurrentState);
337 ret = INVALID_OPERATION;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800338 }
Chong Zhangd88adb92014-07-23 11:43:46 -0700339
340 mLockThreadId = 0;
341
342 return ret;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800343}
344
345status_t MediaPlayer::stop()
346{
Steve Block3856b092011-10-20 11:56:00 +0100347 ALOGV("stop");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800348 Mutex::Autolock _l(mLock);
349 if (mCurrentState & MEDIA_PLAYER_STOPPED) return NO_ERROR;
350 if ( (mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_STARTED | MEDIA_PLAYER_PREPARED |
351 MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE ) ) ) {
352 status_t ret = mPlayer->stop();
353 if (ret != NO_ERROR) {
354 mCurrentState = MEDIA_PLAYER_STATE_ERROR;
355 } else {
356 mCurrentState = MEDIA_PLAYER_STOPPED;
357 }
358 return ret;
359 }
Steve Block29357bc2012-01-06 19:20:56 +0000360 ALOGE("stop called in state %d", mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800361 return INVALID_OPERATION;
362}
363
364status_t MediaPlayer::pause()
365{
Steve Block3856b092011-10-20 11:56:00 +0100366 ALOGV("pause");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800367 Mutex::Autolock _l(mLock);
Marco Nelissen698f4762010-02-26 13:16:23 -0800368 if (mCurrentState & (MEDIA_PLAYER_PAUSED|MEDIA_PLAYER_PLAYBACK_COMPLETE))
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800369 return NO_ERROR;
370 if ((mPlayer != 0) && (mCurrentState & MEDIA_PLAYER_STARTED)) {
371 status_t ret = mPlayer->pause();
372 if (ret != NO_ERROR) {
373 mCurrentState = MEDIA_PLAYER_STATE_ERROR;
374 } else {
375 mCurrentState = MEDIA_PLAYER_PAUSED;
376 }
377 return ret;
378 }
Steve Block29357bc2012-01-06 19:20:56 +0000379 ALOGE("pause called in state %d", mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800380 return INVALID_OPERATION;
381}
382
383bool MediaPlayer::isPlaying()
384{
385 Mutex::Autolock _l(mLock);
386 if (mPlayer != 0) {
387 bool temp = false;
388 mPlayer->isPlaying(&temp);
Steve Block3856b092011-10-20 11:56:00 +0100389 ALOGV("isPlaying: %d", temp);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800390 if ((mCurrentState & MEDIA_PLAYER_STARTED) && ! temp) {
Steve Block29357bc2012-01-06 19:20:56 +0000391 ALOGE("internal/external state mismatch corrected");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800392 mCurrentState = MEDIA_PLAYER_PAUSED;
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700393 } else if ((mCurrentState & MEDIA_PLAYER_PAUSED) && temp) {
394 ALOGE("internal/external state mismatch corrected");
395 mCurrentState = MEDIA_PLAYER_STARTED;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800396 }
397 return temp;
398 }
Steve Block3856b092011-10-20 11:56:00 +0100399 ALOGV("isPlaying: no active player");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800400 return false;
401}
402
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700403status_t MediaPlayer::setPlaybackSettings(const AudioPlaybackRate& rate)
Wei Jia98160162015-02-04 17:01:11 -0800404{
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700405 ALOGV("setPlaybackSettings: %f %f %d %d",
406 rate.mSpeed, rate.mPitch, rate.mFallbackMode, rate.mStretchMode);
407 // Negative speed and pitch does not make sense. Further validation will
408 // be done by the respective mediaplayers.
409 if (rate.mSpeed < 0.f || rate.mPitch < 0.f) {
Wei Jia98160162015-02-04 17:01:11 -0800410 return BAD_VALUE;
411 }
412 Mutex::Autolock _l(mLock);
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700413 if (mPlayer == 0) return INVALID_OPERATION;
414 status_t err = mPlayer->setPlaybackSettings(rate);
415 if (err == OK) {
416 if (rate.mSpeed == 0.f && mCurrentState == MEDIA_PLAYER_STARTED) {
417 mCurrentState = MEDIA_PLAYER_PAUSED;
418 } else if (rate.mSpeed != 0.f && mCurrentState == MEDIA_PLAYER_PAUSED) {
419 mCurrentState = MEDIA_PLAYER_STARTED;
Wei Jia98160162015-02-04 17:01:11 -0800420 }
Wei Jia98160162015-02-04 17:01:11 -0800421 }
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700422 return err;
423}
424
425status_t MediaPlayer::getPlaybackSettings(AudioPlaybackRate* rate /* nonnull */)
426{
427 Mutex::Autolock _l(mLock);
428 if (mPlayer == 0) return INVALID_OPERATION;
429 return mPlayer->getPlaybackSettings(rate);
430}
431
432status_t MediaPlayer::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint)
433{
434 ALOGV("setSyncSettings: %u %u %f %f",
435 sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint);
436 Mutex::Autolock _l(mLock);
437 if (mPlayer == 0) return INVALID_OPERATION;
438 return mPlayer->setSyncSettings(sync, videoFpsHint);
439}
440
441status_t MediaPlayer::getSyncSettings(
442 AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
443{
444 Mutex::Autolock _l(mLock);
445 if (mPlayer == 0) return INVALID_OPERATION;
446 return mPlayer->getSyncSettings(sync, videoFps);
Wei Jia98160162015-02-04 17:01:11 -0800447}
448
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800449status_t MediaPlayer::getVideoWidth(int *w)
450{
Steve Block3856b092011-10-20 11:56:00 +0100451 ALOGV("getVideoWidth");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800452 Mutex::Autolock _l(mLock);
453 if (mPlayer == 0) return INVALID_OPERATION;
454 *w = mVideoWidth;
455 return NO_ERROR;
456}
457
458status_t MediaPlayer::getVideoHeight(int *h)
459{
Steve Block3856b092011-10-20 11:56:00 +0100460 ALOGV("getVideoHeight");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800461 Mutex::Autolock _l(mLock);
462 if (mPlayer == 0) return INVALID_OPERATION;
463 *h = mVideoHeight;
464 return NO_ERROR;
465}
466
467status_t MediaPlayer::getCurrentPosition(int *msec)
468{
Steve Block3856b092011-10-20 11:56:00 +0100469 ALOGV("getCurrentPosition");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800470 Mutex::Autolock _l(mLock);
471 if (mPlayer != 0) {
472 if (mCurrentPosition >= 0) {
Steve Block3856b092011-10-20 11:56:00 +0100473 ALOGV("Using cached seek position: %d", mCurrentPosition);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800474 *msec = mCurrentPosition;
475 return NO_ERROR;
476 }
477 return mPlayer->getCurrentPosition(msec);
478 }
479 return INVALID_OPERATION;
480}
481
482status_t MediaPlayer::getDuration_l(int *msec)
483{
Andreas Hubera4c5bc02012-11-27 15:02:53 -0800484 ALOGV("getDuration_l");
Glenn Kastenb187de12014-12-30 08:18:15 -0800485 bool isValidState = (mCurrentState & (MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED |
486 MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_STOPPED | MEDIA_PLAYER_PLAYBACK_COMPLETE));
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800487 if (mPlayer != 0 && isValidState) {
Andreas Hubera4c5bc02012-11-27 15:02:53 -0800488 int durationMs;
489 status_t ret = mPlayer->getDuration(&durationMs);
Andreas Huber20702542013-04-11 11:07:55 -0700490
491 if (ret != OK) {
492 // Do not enter error state just because no duration was available.
493 durationMs = -1;
494 ret = OK;
495 }
496
Andreas Hubera4c5bc02012-11-27 15:02:53 -0800497 if (msec) {
498 *msec = durationMs;
499 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800500 return ret;
501 }
Steve Block29357bc2012-01-06 19:20:56 +0000502 ALOGE("Attempt to call getDuration without a valid mediaplayer");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800503 return INVALID_OPERATION;
504}
505
506status_t MediaPlayer::getDuration(int *msec)
507{
508 Mutex::Autolock _l(mLock);
509 return getDuration_l(msec);
510}
511
512status_t MediaPlayer::seekTo_l(int msec)
513{
Steve Block3856b092011-10-20 11:56:00 +0100514 ALOGV("seekTo %d", msec);
Glenn Kastenb187de12014-12-30 08:18:15 -0800515 if ((mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_STARTED | MEDIA_PLAYER_PREPARED |
516 MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE) ) ) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800517 if ( msec < 0 ) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000518 ALOGW("Attempt to seek to invalid position: %d", msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800519 msec = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800520 }
Andreas Hubera4c5bc02012-11-27 15:02:53 -0800521
522 int durationMs;
523 status_t err = mPlayer->getDuration(&durationMs);
524
525 if (err != OK) {
526 ALOGW("Stream has no duration and is therefore not seekable.");
527 return err;
528 }
529
530 if (msec > durationMs) {
531 ALOGW("Attempt to seek to past end of file: request = %d, "
532 "durationMs = %d",
533 msec,
534 durationMs);
535
536 msec = durationMs;
537 }
538
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800539 // cache duration
540 mCurrentPosition = msec;
541 if (mSeekPosition < 0) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800542 mSeekPosition = msec;
543 return mPlayer->seekTo(msec);
544 }
545 else {
Steve Block3856b092011-10-20 11:56:00 +0100546 ALOGV("Seek in progress - queue up seekTo[%d]", msec);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800547 return NO_ERROR;
548 }
549 }
Glenn Kastenb187de12014-12-30 08:18:15 -0800550 ALOGE("Attempt to perform seekTo in wrong state: mPlayer=%p, mCurrentState=%u", mPlayer.get(),
551 mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800552 return INVALID_OPERATION;
553}
554
555status_t MediaPlayer::seekTo(int msec)
556{
Andreas Huber5cb07aa2009-03-24 20:48:51 -0700557 mLockThreadId = getThreadId();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800558 Mutex::Autolock _l(mLock);
Andreas Huber5cb07aa2009-03-24 20:48:51 -0700559 status_t result = seekTo_l(msec);
560 mLockThreadId = 0;
561
562 return result;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800563}
564
Jamie Gennis61c7ef52011-07-13 12:59:34 -0700565status_t MediaPlayer::reset_l()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800566{
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800567 mLoop = false;
568 if (mCurrentState == MEDIA_PLAYER_IDLE) return NO_ERROR;
569 mPrepareSync = false;
570 if (mPlayer != 0) {
571 status_t ret = mPlayer->reset();
572 if (ret != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +0000573 ALOGE("reset() failed with return code (%d)", ret);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800574 mCurrentState = MEDIA_PLAYER_STATE_ERROR;
575 } else {
576 mCurrentState = MEDIA_PLAYER_IDLE;
577 }
James Donga1680bc2010-11-18 12:23:58 -0800578 // setDataSource has to be called again to create a
579 // new mediaplayer.
580 mPlayer = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800581 return ret;
582 }
583 clear_l();
584 return NO_ERROR;
585}
586
John Grossmanc795b642012-02-22 15:38:35 -0800587status_t MediaPlayer::doSetRetransmitEndpoint(const sp<IMediaPlayer>& player) {
588 Mutex::Autolock _l(mLock);
589
590 if (player == NULL) {
591 return UNKNOWN_ERROR;
592 }
593
594 if (mRetransmitEndpointValid) {
595 return player->setRetransmitEndpoint(&mRetransmitEndpoint);
596 }
597
598 return OK;
599}
600
Jamie Gennis61c7ef52011-07-13 12:59:34 -0700601status_t MediaPlayer::reset()
602{
Steve Block3856b092011-10-20 11:56:00 +0100603 ALOGV("reset");
Jamie Gennis61c7ef52011-07-13 12:59:34 -0700604 Mutex::Autolock _l(mLock);
605 return reset_l();
606}
607
Glenn Kastenfff6d712012-01-12 16:38:12 -0800608status_t MediaPlayer::setAudioStreamType(audio_stream_type_t type)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800609{
Steve Block3856b092011-10-20 11:56:00 +0100610 ALOGV("MediaPlayer::setAudioStreamType");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800611 Mutex::Autolock _l(mLock);
612 if (mStreamType == type) return NO_ERROR;
613 if (mCurrentState & ( MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED |
614 MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE ) ) {
615 // Can't change the stream type after prepare
Steve Block29357bc2012-01-06 19:20:56 +0000616 ALOGE("setAudioStream called in state %d", mCurrentState);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800617 return INVALID_OPERATION;
618 }
619 // cache
620 mStreamType = type;
621 return OK;
622}
623
John Spurlockde9453f2014-03-19 13:05:45 -0400624status_t MediaPlayer::getAudioStreamType(audio_stream_type_t *type)
625{
626 ALOGV("getAudioStreamType");
627 Mutex::Autolock _l(mLock);
628 *type = mStreamType;
629 return OK;
630}
631
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800632status_t MediaPlayer::setLooping(int loop)
633{
Steve Block3856b092011-10-20 11:56:00 +0100634 ALOGV("MediaPlayer::setLooping");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800635 Mutex::Autolock _l(mLock);
636 mLoop = (loop != 0);
637 if (mPlayer != 0) {
638 return mPlayer->setLooping(loop);
639 }
640 return OK;
641}
642
643bool MediaPlayer::isLooping() {
Steve Block3856b092011-10-20 11:56:00 +0100644 ALOGV("isLooping");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800645 Mutex::Autolock _l(mLock);
646 if (mPlayer != 0) {
647 return mLoop;
648 }
Steve Block3856b092011-10-20 11:56:00 +0100649 ALOGV("isLooping: no active player");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800650 return false;
651}
652
653status_t MediaPlayer::setVolume(float leftVolume, float rightVolume)
654{
Steve Block3856b092011-10-20 11:56:00 +0100655 ALOGV("MediaPlayer::setVolume(%f, %f)", leftVolume, rightVolume);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800656 Mutex::Autolock _l(mLock);
657 mLeftVolume = leftVolume;
658 mRightVolume = rightVolume;
659 if (mPlayer != 0) {
660 return mPlayer->setVolume(leftVolume, rightVolume);
661 }
662 return OK;
663}
664
Eric Laurenta514bdb2010-06-21 09:27:30 -0700665status_t MediaPlayer::setAudioSessionId(int sessionId)
666{
Steve Block3856b092011-10-20 11:56:00 +0100667 ALOGV("MediaPlayer::setAudioSessionId(%d)", sessionId);
Eric Laurenta514bdb2010-06-21 09:27:30 -0700668 Mutex::Autolock _l(mLock);
669 if (!(mCurrentState & MEDIA_PLAYER_IDLE)) {
Steve Block29357bc2012-01-06 19:20:56 +0000670 ALOGE("setAudioSessionId called in state %d", mCurrentState);
Eric Laurenta514bdb2010-06-21 09:27:30 -0700671 return INVALID_OPERATION;
672 }
673 if (sessionId < 0) {
674 return BAD_VALUE;
675 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700676 if (sessionId != mAudioSessionId) {
Marco Nelissend457c972014-02-11 08:47:07 -0800677 AudioSystem::acquireAudioSessionId(sessionId, -1);
678 AudioSystem::releaseAudioSessionId(mAudioSessionId, -1);
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700679 mAudioSessionId = sessionId;
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700680 }
Eric Laurenta514bdb2010-06-21 09:27:30 -0700681 return NO_ERROR;
682}
683
684int MediaPlayer::getAudioSessionId()
685{
686 Mutex::Autolock _l(mLock);
687 return mAudioSessionId;
688}
689
Eric Laurent2beeb502010-07-16 07:43:46 -0700690status_t MediaPlayer::setAuxEffectSendLevel(float level)
691{
Steve Block3856b092011-10-20 11:56:00 +0100692 ALOGV("MediaPlayer::setAuxEffectSendLevel(%f)", level);
Eric Laurent2beeb502010-07-16 07:43:46 -0700693 Mutex::Autolock _l(mLock);
694 mSendLevel = level;
695 if (mPlayer != 0) {
696 return mPlayer->setAuxEffectSendLevel(level);
697 }
698 return OK;
699}
700
701status_t MediaPlayer::attachAuxEffect(int effectId)
702{
Steve Block3856b092011-10-20 11:56:00 +0100703 ALOGV("MediaPlayer::attachAuxEffect(%d)", effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -0700704 Mutex::Autolock _l(mLock);
705 if (mPlayer == 0 ||
706 (mCurrentState & MEDIA_PLAYER_IDLE) ||
707 (mCurrentState == MEDIA_PLAYER_STATE_ERROR )) {
Steve Block29357bc2012-01-06 19:20:56 +0000708 ALOGE("attachAuxEffect called in state %d", mCurrentState);
Eric Laurent2beeb502010-07-16 07:43:46 -0700709 return INVALID_OPERATION;
710 }
711
712 return mPlayer->attachAuxEffect(effectId);
713}
714
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700715// always call with lock held
716status_t MediaPlayer::checkStateForKeySet_l(int key)
717{
718 switch(key) {
719 case KEY_PARAMETER_AUDIO_ATTRIBUTES:
720 if (mCurrentState & ( MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED |
721 MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE) ) {
722 // Can't change the audio attributes after prepare
723 ALOGE("trying to set audio attributes called in state %d", mCurrentState);
724 return INVALID_OPERATION;
725 }
726 break;
727 default:
728 // parameter doesn't require player state check
729 break;
730 }
731 return OK;
732}
733
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700734status_t MediaPlayer::setParameter(int key, const Parcel& request)
735{
Steve Block3856b092011-10-20 11:56:00 +0100736 ALOGV("MediaPlayer::setParameter(%d)", key);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700737 Mutex::Autolock _l(mLock);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700738 if (checkStateForKeySet_l(key) != OK) {
739 return INVALID_OPERATION;
740 }
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700741 if (mPlayer != NULL) {
742 return mPlayer->setParameter(key, request);
743 }
Jean-Michel Trivi640adb32014-09-05 11:20:11 -0700744 switch (key) {
745 case KEY_PARAMETER_AUDIO_ATTRIBUTES:
746 // no player, save the marshalled audio attributes
747 if (mAudioAttributesParcel != NULL) { delete mAudioAttributesParcel; };
748 mAudioAttributesParcel = new Parcel();
749 mAudioAttributesParcel->appendFrom(&request, 0, request.dataSize());
750 return OK;
751 default:
752 ALOGV("setParameter: no active player");
753 return INVALID_OPERATION;
754 }
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700755}
756
757status_t MediaPlayer::getParameter(int key, Parcel *reply)
758{
Steve Block3856b092011-10-20 11:56:00 +0100759 ALOGV("MediaPlayer::getParameter(%d)", key);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700760 Mutex::Autolock _l(mLock);
761 if (mPlayer != NULL) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700762 return mPlayer->getParameter(key, reply);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700763 }
Steve Block3856b092011-10-20 11:56:00 +0100764 ALOGV("getParameter: no active player");
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700765 return INVALID_OPERATION;
766}
767
John Grossmanc795b642012-02-22 15:38:35 -0800768status_t MediaPlayer::setRetransmitEndpoint(const char* addrString,
769 uint16_t port) {
770 ALOGV("MediaPlayer::setRetransmitEndpoint(%s:%hu)",
771 addrString ? addrString : "(null)", port);
772
773 Mutex::Autolock _l(mLock);
774 if ((mPlayer != NULL) || (mCurrentState != MEDIA_PLAYER_IDLE))
775 return INVALID_OPERATION;
776
777 if (NULL == addrString) {
778 mRetransmitEndpointValid = false;
779 return OK;
780 }
781
782 struct in_addr saddr;
783 if(!inet_aton(addrString, &saddr)) {
784 return BAD_VALUE;
785 }
786
Glenn Kastenbe08f6a2013-12-19 09:09:33 -0800787 memset(&mRetransmitEndpoint, 0, sizeof(mRetransmitEndpoint));
John Grossmanc795b642012-02-22 15:38:35 -0800788 mRetransmitEndpoint.sin_family = AF_INET;
789 mRetransmitEndpoint.sin_addr = saddr;
790 mRetransmitEndpoint.sin_port = htons(port);
791 mRetransmitEndpointValid = true;
792
793 return OK;
794}
795
Gloria Wangb483c472011-04-11 17:23:27 -0700796void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800797{
Steve Block3856b092011-10-20 11:56:00 +0100798 ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800799 bool send = true;
Jason Sams1af452f2009-03-24 18:45:22 -0700800 bool locked = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800801
802 // TODO: In the future, we might be on the same thread if the app is
803 // running in the same process as the media server. In that case,
804 // this will deadlock.
Nicolas Catania66095182009-06-11 16:33:49 -0700805 //
Chong Zhangd88adb92014-07-23 11:43:46 -0700806 // The threadId hack below works around this for the care of prepare,
807 // seekTo and start within the same process.
Andreas Huber5cb07aa2009-03-24 20:48:51 -0700808 // FIXME: Remember, this is a hack, it's not even a hack that is applied
809 // consistently for all use-cases, this needs to be revisited.
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700810 if (mLockThreadId != getThreadId()) {
Jason Sams1af452f2009-03-24 18:45:22 -0700811 mLock.lock();
812 locked = true;
Nicolas Catania66095182009-06-11 16:33:49 -0700813 }
Jason Sams1af452f2009-03-24 18:45:22 -0700814
Eric Laurent3b268442010-08-03 07:49:49 -0700815 // Allows calls from JNI in idle state to notify errors
816 if (!(msg == MEDIA_ERROR && mCurrentState == MEDIA_PLAYER_IDLE) && mPlayer == 0) {
Steve Block3856b092011-10-20 11:56:00 +0100817 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
Jason Sams1af452f2009-03-24 18:45:22 -0700818 if (locked) mLock.unlock(); // release the lock when done.
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800819 return;
820 }
821
822 switch (msg) {
823 case MEDIA_NOP: // interface test message
824 break;
825 case MEDIA_PREPARED:
Steve Block3856b092011-10-20 11:56:00 +0100826 ALOGV("prepared");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800827 mCurrentState = MEDIA_PLAYER_PREPARED;
828 if (mPrepareSync) {
Steve Block3856b092011-10-20 11:56:00 +0100829 ALOGV("signal application thread");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800830 mPrepareSync = false;
831 mPrepareStatus = NO_ERROR;
832 mSignal.signal();
833 }
834 break;
835 case MEDIA_PLAYBACK_COMPLETE:
Steve Block3856b092011-10-20 11:56:00 +0100836 ALOGV("playback complete");
Marco Nelissen1c1503c2010-09-17 15:04:01 -0700837 if (mCurrentState == MEDIA_PLAYER_IDLE) {
Steve Block29357bc2012-01-06 19:20:56 +0000838 ALOGE("playback complete in idle state");
Marco Nelissen1c1503c2010-09-17 15:04:01 -0700839 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800840 if (!mLoop) {
841 mCurrentState = MEDIA_PLAYER_PLAYBACK_COMPLETE;
842 }
843 break;
844 case MEDIA_ERROR:
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700845 // Always log errors.
846 // ext1: Media framework error code.
847 // ext2: Implementation dependant error code.
Steve Block29357bc2012-01-06 19:20:56 +0000848 ALOGE("error (%d, %d)", ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800849 mCurrentState = MEDIA_PLAYER_STATE_ERROR;
850 if (mPrepareSync)
851 {
Steve Block3856b092011-10-20 11:56:00 +0100852 ALOGV("signal application thread");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800853 mPrepareSync = false;
854 mPrepareStatus = ext1;
855 mSignal.signal();
856 send = false;
857 }
858 break;
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700859 case MEDIA_INFO:
860 // ext1: Media framework error code.
861 // ext2: Implementation dependant error code.
Andreas Huber145e68f2011-01-11 15:05:28 -0800862 if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000863 ALOGW("info/warning (%d, %d)", ext1, ext2);
Andreas Huber145e68f2011-01-11 15:05:28 -0800864 }
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700865 break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800866 case MEDIA_SEEK_COMPLETE:
Steve Block3856b092011-10-20 11:56:00 +0100867 ALOGV("Received seek complete");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800868 if (mSeekPosition != mCurrentPosition) {
Steve Block3856b092011-10-20 11:56:00 +0100869 ALOGV("Executing queued seekTo(%d)", mSeekPosition);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800870 mSeekPosition = -1;
871 seekTo_l(mCurrentPosition);
872 }
873 else {
Steve Block3856b092011-10-20 11:56:00 +0100874 ALOGV("All seeks complete - return to regularly scheduled program");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800875 mCurrentPosition = mSeekPosition = -1;
876 }
877 break;
878 case MEDIA_BUFFERING_UPDATE:
Steve Block3856b092011-10-20 11:56:00 +0100879 ALOGV("buffering %d", ext1);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800880 break;
881 case MEDIA_SET_VIDEO_SIZE:
Steve Block3856b092011-10-20 11:56:00 +0100882 ALOGV("New video size %d x %d", ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800883 mVideoWidth = ext1;
884 mVideoHeight = ext2;
885 break;
Gloria Wangb483c472011-04-11 17:23:27 -0700886 case MEDIA_TIMED_TEXT:
Steve Block3856b092011-10-20 11:56:00 +0100887 ALOGV("Received timed text message");
Gloria Wangb483c472011-04-11 17:23:27 -0700888 break;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700889 case MEDIA_SUBTITLE_DATA:
890 ALOGV("Received subtitle data message");
891 break;
Robert Shih08528432015-04-08 09:06:54 -0700892 case MEDIA_META_DATA:
893 ALOGV("Received timed metadata message");
894 break;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800895 default:
Steve Block3856b092011-10-20 11:56:00 +0100896 ALOGV("unrecognized message: (%d, %d, %d)", msg, ext1, ext2);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800897 break;
898 }
899
900 sp<MediaPlayerListener> listener = mListener;
Jason Sams1af452f2009-03-24 18:45:22 -0700901 if (locked) mLock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800902
903 // this prevents re-entrant calls into client code
904 if ((listener != 0) && send) {
905 Mutex::Autolock _l(mNotifyLock);
Steve Block3856b092011-10-20 11:56:00 +0100906 ALOGV("callback application");
Gloria Wangb483c472011-04-11 17:23:27 -0700907 listener->notify(msg, ext1, ext2, obj);
Steve Block3856b092011-10-20 11:56:00 +0100908 ALOGV("back from callback");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800909 }
910}
911
James Dongdd172fc2010-01-15 18:13:58 -0800912void MediaPlayer::died()
913{
Steve Block3856b092011-10-20 11:56:00 +0100914 ALOGV("died");
James Dongdd172fc2010-01-15 18:13:58 -0800915 notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
916}
917
Marco Nelissen6b74d672012-02-28 16:07:44 -0800918status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) {
919 if (mPlayer == NULL) {
920 return NO_INIT;
921 }
Marco Nelissenb13820f2013-08-05 12:22:43 -0700922
923 if (next != NULL && !(next->mCurrentState &
924 (MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE))) {
925 ALOGE("next player is not prepared");
926 return INVALID_OPERATION;
927 }
928
Marco Nelissen6b74d672012-02-28 16:07:44 -0800929 return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer);
930}
931
Glenn Kasten40bc9062015-03-20 09:09:33 -0700932} // namespace android