Glenn Kasten | 99e53b8 | 2012-01-19 08:59:58 -0800 | [diff] [blame] | 1 | /* |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2 | ** |
| 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 Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <fcntl.h> |
Mark Salyzyn | 34fb296 | 2014-06-18 16:30:56 -0700 | [diff] [blame] | 22 | #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 Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | |
Mathias Agopian | 7562408 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 29 | #include <binder/IServiceManager.h> |
| 30 | #include <binder/IPCThreadState.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | |
Mathias Agopian | b1e7cd1 | 2013-02-14 17:11:27 -0800 | [diff] [blame] | 32 | #include <gui/Surface.h> |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 33 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | #include <media/mediaplayer.h> |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 35 | #include <media/AudioResamplerPublic.h> |
Glenn Kasten | a3f1fa3 | 2012-01-18 14:54:46 -0800 | [diff] [blame] | 36 | #include <media/AudioSystem.h> |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 37 | #include <media/AVSyncSettings.h> |
Chris Watkins | 99f3160 | 2015-03-20 13:06:33 -0700 | [diff] [blame] | 38 | #include <media/IDataSource.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | |
Mathias Agopian | 7562408 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 40 | #include <binder/MemoryBase.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 41 | |
Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 42 | #include <utils/KeyedVector.h> |
| 43 | #include <utils/String8.h> |
| 44 | |
Dima Zavin | 6476024 | 2011-05-11 14:15:23 -0700 | [diff] [blame] | 45 | #include <system/audio.h> |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 46 | #include <system/window.h> |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 47 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 48 | namespace android { |
| 49 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | MediaPlayer::MediaPlayer() |
| 51 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 52 | ALOGV("constructor"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 53 | mListener = NULL; |
| 54 | mCookie = NULL; |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 55 | mStreamType = AUDIO_STREAM_MUSIC; |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 56 | mAudioAttributesParcel = NULL; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 57 | 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 Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 65 | mLockThreadId = 0; |
Eric Laurent | de3f839 | 2014-07-27 18:38:22 -0700 | [diff] [blame] | 66 | mAudioSessionId = AudioSystem::newAudioUniqueId(); |
Marco Nelissen | d457c97 | 2014-02-11 08:47:07 -0800 | [diff] [blame] | 67 | AudioSystem::acquireAudioSessionId(mAudioSessionId, -1); |
Eric Laurent | 8c563ed | 2010-10-07 18:23:03 -0700 | [diff] [blame] | 68 | mSendLevel = 0; |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 69 | mRetransmitEndpointValid = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 70 | } |
| 71 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 72 | MediaPlayer::~MediaPlayer() |
| 73 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 74 | ALOGV("destructor"); |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 75 | if (mAudioAttributesParcel != NULL) { |
| 76 | delete mAudioAttributesParcel; |
| 77 | mAudioAttributesParcel = NULL; |
| 78 | } |
Marco Nelissen | d457c97 | 2014-02-11 08:47:07 -0800 | [diff] [blame] | 79 | AudioSystem::releaseAudioSessionId(mAudioSessionId, -1); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | disconnect(); |
| 81 | IPCThreadState::self()->flushCommands(); |
| 82 | } |
| 83 | |
| 84 | void MediaPlayer::disconnect() |
| 85 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 86 | ALOGV("disconnect"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 87 | 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 |
| 100 | void MediaPlayer::clear_l() |
| 101 | { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 102 | mCurrentPosition = -1; |
| 103 | mSeekPosition = -1; |
| 104 | mVideoWidth = mVideoHeight = 0; |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 105 | mRetransmitEndpointValid = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | status_t MediaPlayer::setListener(const sp<MediaPlayerListener>& listener) |
| 109 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 110 | ALOGV("setListener"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | Mutex::Autolock _l(mLock); |
| 112 | mListener = listener; |
| 113 | return NO_ERROR; |
| 114 | } |
| 115 | |
| 116 | |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 117 | status_t MediaPlayer::attachNewPlayer(const sp<IMediaPlayer>& player) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 118 | { |
| 119 | status_t err = UNKNOWN_ERROR; |
| 120 | sp<IMediaPlayer> p; |
| 121 | { // scope for the lock |
| 122 | Mutex::Autolock _l(mLock); |
| 123 | |
Marco Nelissen | 83ff143 | 2010-03-10 10:53:16 -0800 | [diff] [blame] | 124 | if ( !( (mCurrentState & MEDIA_PLAYER_IDLE) || |
| 125 | (mCurrentState == MEDIA_PLAYER_STATE_ERROR ) ) ) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 126 | ALOGE("attachNewPlayer called in state %d", mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 127 | 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 Muranaka | f65fa17 | 2013-06-06 09:36:34 +0000 | [diff] [blame] | 137 | ALOGE("Unable to create media player"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | if (p != 0) { |
| 142 | p->disconnect(); |
| 143 | } |
| 144 | |
| 145 | return err; |
| 146 | } |
| 147 | |
Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 148 | status_t MediaPlayer::setDataSource( |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 149 | const sp<IMediaHTTPService> &httpService, |
Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 150 | const char *url, const KeyedVector<String8, String8> *headers) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 151 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 152 | ALOGV("setDataSource(%s)", url); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 153 | status_t err = BAD_VALUE; |
| 154 | if (url != NULL) { |
| 155 | const sp<IMediaPlayerService>& service(getMediaPlayerService()); |
| 156 | if (service != 0) { |
Glenn Kasten | f37971f | 2012-02-03 11:06:53 -0800 | [diff] [blame] | 157 | sp<IMediaPlayer> player(service->create(this, mAudioSessionId)); |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 158 | if ((NO_ERROR != doSetRetransmitEndpoint(player)) || |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 159 | (NO_ERROR != player->setDataSource(httpService, url, headers))) { |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 160 | player.clear(); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 161 | } |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 162 | err = attachNewPlayer(player); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | return err; |
| 166 | } |
| 167 | |
| 168 | status_t MediaPlayer::setDataSource(int fd, int64_t offset, int64_t length) |
| 169 | { |
Mark Salyzyn | 34fb296 | 2014-06-18 16:30:56 -0700 | [diff] [blame] | 170 | ALOGV("setDataSource(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 171 | status_t err = UNKNOWN_ERROR; |
| 172 | const sp<IMediaPlayerService>& service(getMediaPlayerService()); |
| 173 | if (service != 0) { |
Glenn Kasten | f37971f | 2012-02-03 11:06:53 -0800 | [diff] [blame] | 174 | sp<IMediaPlayer> player(service->create(this, mAudioSessionId)); |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 175 | if ((NO_ERROR != doSetRetransmitEndpoint(player)) || |
| 176 | (NO_ERROR != player->setDataSource(fd, offset, length))) { |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 177 | player.clear(); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 178 | } |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 179 | err = attachNewPlayer(player); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 180 | } |
| 181 | return err; |
| 182 | } |
| 183 | |
| 184 | status_t MediaPlayer::setDataSource(const sp<IStreamSource> &source) |
| 185 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 186 | ALOGV("setDataSource"); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 187 | status_t err = UNKNOWN_ERROR; |
| 188 | const sp<IMediaPlayerService>& service(getMediaPlayerService()); |
| 189 | if (service != 0) { |
Glenn Kasten | f37971f | 2012-02-03 11:06:53 -0800 | [diff] [blame] | 190 | sp<IMediaPlayer> player(service->create(this, mAudioSessionId)); |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 191 | if ((NO_ERROR != doSetRetransmitEndpoint(player)) || |
| 192 | (NO_ERROR != player->setDataSource(source))) { |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 193 | player.clear(); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame] | 194 | } |
Dave Burke | 0662067 | 2011-09-06 20:39:47 +0100 | [diff] [blame] | 195 | err = attachNewPlayer(player); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 196 | } |
| 197 | return err; |
| 198 | } |
| 199 | |
Chris Watkins | 99f3160 | 2015-03-20 13:06:33 -0700 | [diff] [blame] | 200 | status_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 Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 216 | status_t MediaPlayer::invoke(const Parcel& request, Parcel *reply) |
| 217 | { |
| 218 | Mutex::Autolock _l(mLock); |
Nicolas Catania | 4023493 | 2010-03-10 10:41:04 -0800 | [diff] [blame] | 219 | const bool hasBeenInitialized = |
| 220 | (mCurrentState != MEDIA_PLAYER_STATE_ERROR) && |
| 221 | ((mCurrentState & MEDIA_PLAYER_IDLE) != MEDIA_PLAYER_IDLE); |
| 222 | if ((mPlayer != NULL) && hasBeenInitialized) { |
Mark Salyzyn | 34fb296 | 2014-06-18 16:30:56 -0700 | [diff] [blame] | 223 | ALOGV("invoke %zu", request.dataSize()); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 224 | return mPlayer->invoke(request, reply); |
Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 225 | } |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 226 | ALOGE("invoke failed: wrong state %X", mCurrentState); |
Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 227 | return INVALID_OPERATION; |
| 228 | } |
| 229 | |
Nicolas Catania | a7e0e8b | 2009-07-08 08:57:42 -0700 | [diff] [blame] | 230 | status_t MediaPlayer::setMetadataFilter(const Parcel& filter) |
| 231 | { |
Steve Block | b8a8052 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 232 | ALOGD("setMetadataFilter"); |
Nicolas Catania | 8e1b6cc | 2009-07-09 09:21:33 -0700 | [diff] [blame] | 233 | Mutex::Autolock lock(mLock); |
| 234 | if (mPlayer == NULL) { |
Nicolas Catania | a7e0e8b | 2009-07-08 08:57:42 -0700 | [diff] [blame] | 235 | return NO_INIT; |
| 236 | } |
| 237 | return mPlayer->setMetadataFilter(filter); |
| 238 | } |
Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 239 | |
Nicolas Catania | 8e1b6cc | 2009-07-09 09:21:33 -0700 | [diff] [blame] | 240 | status_t MediaPlayer::getMetadata(bool update_only, bool apply_filter, Parcel *metadata) |
| 241 | { |
Steve Block | b8a8052 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 242 | ALOGD("getMetadata"); |
Nicolas Catania | 8e1b6cc | 2009-07-09 09:21:33 -0700 | [diff] [blame] | 243 | 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 Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 250 | status_t MediaPlayer::setVideoSurfaceTexture( |
Andy McFadden | 484566c | 2012-12-18 09:46:54 -0800 | [diff] [blame] | 251 | const sp<IGraphicBufferProducer>& bufferProducer) |
Glenn Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 252 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 253 | ALOGV("setVideoSurfaceTexture"); |
Glenn Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 254 | Mutex::Autolock _l(mLock); |
| 255 | if (mPlayer == 0) return NO_INIT; |
Andy McFadden | 484566c | 2012-12-18 09:46:54 -0800 | [diff] [blame] | 256 | return mPlayer->setVideoSurfaceTexture(bufferProducer); |
Glenn Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 257 | } |
| 258 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 259 | // must call with lock held |
| 260 | status_t MediaPlayer::prepareAsync_l() |
| 261 | { |
Glenn Kasten | b187de1 | 2014-12-30 08:18:15 -0800 | [diff] [blame] | 262 | if ( (mPlayer != 0) && ( mCurrentState & (MEDIA_PLAYER_INITIALIZED | MEDIA_PLAYER_STOPPED) ) ) { |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 263 | if (mAudioAttributesParcel != NULL) { |
| 264 | mPlayer->setParameter(KEY_PARAMETER_AUDIO_ATTRIBUTES, *mAudioAttributesParcel); |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 265 | } else { |
| 266 | mPlayer->setAudioStreamType(mStreamType); |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 267 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 | mCurrentState = MEDIA_PLAYER_PREPARING; |
| 269 | return mPlayer->prepareAsync(); |
| 270 | } |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 271 | ALOGE("prepareAsync called in state %d", mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 272 | return INVALID_OPERATION; |
| 273 | } |
| 274 | |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 275 | // TODO: In case of error, prepareAsync provides the caller with 2 error codes, |
| 276 | // one defined in the Android framework and one provided by the implementation |
| 277 | // that generated the error. The sync version of prepare returns only 1 error |
| 278 | // code. |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 279 | status_t MediaPlayer::prepare() |
| 280 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 281 | ALOGV("prepare"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 282 | Mutex::Autolock _l(mLock); |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 283 | mLockThreadId = getThreadId(); |
| 284 | if (mPrepareSync) { |
| 285 | mLockThreadId = 0; |
| 286 | return -EALREADY; |
| 287 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 288 | mPrepareSync = true; |
| 289 | status_t ret = prepareAsync_l(); |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 290 | if (ret != NO_ERROR) { |
| 291 | mLockThreadId = 0; |
| 292 | return ret; |
| 293 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 294 | |
| 295 | if (mPrepareSync) { |
| 296 | mSignal.wait(mLock); // wait for prepare done |
| 297 | mPrepareSync = false; |
| 298 | } |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 299 | ALOGV("prepare complete - status=%d", mPrepareStatus); |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 300 | mLockThreadId = 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 301 | return mPrepareStatus; |
| 302 | } |
| 303 | |
| 304 | status_t MediaPlayer::prepareAsync() |
| 305 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 306 | ALOGV("prepareAsync"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 307 | Mutex::Autolock _l(mLock); |
| 308 | return prepareAsync_l(); |
| 309 | } |
| 310 | |
| 311 | status_t MediaPlayer::start() |
| 312 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 313 | ALOGV("start"); |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 314 | |
| 315 | status_t ret = NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 316 | Mutex::Autolock _l(mLock); |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 317 | |
| 318 | mLockThreadId = getThreadId(); |
| 319 | |
| 320 | if (mCurrentState & MEDIA_PLAYER_STARTED) { |
| 321 | ret = NO_ERROR; |
| 322 | } else if ( (mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_PREPARED | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 323 | MEDIA_PLAYER_PLAYBACK_COMPLETE | MEDIA_PLAYER_PAUSED ) ) ) { |
| 324 | mPlayer->setLooping(mLoop); |
| 325 | mPlayer->setVolume(mLeftVolume, mRightVolume); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 326 | mPlayer->setAuxEffectSendLevel(mSendLevel); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 327 | mCurrentState = MEDIA_PLAYER_STARTED; |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 328 | ret = mPlayer->start(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 329 | if (ret != NO_ERROR) { |
| 330 | mCurrentState = MEDIA_PLAYER_STATE_ERROR; |
| 331 | } else { |
| 332 | if (mCurrentState == MEDIA_PLAYER_PLAYBACK_COMPLETE) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 333 | ALOGV("playback completed immediately following start()"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 334 | } |
| 335 | } |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 336 | } else { |
| 337 | ALOGE("start called in state %d", mCurrentState); |
| 338 | ret = INVALID_OPERATION; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 339 | } |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 340 | |
| 341 | mLockThreadId = 0; |
| 342 | |
| 343 | return ret; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | status_t MediaPlayer::stop() |
| 347 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 348 | ALOGV("stop"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 349 | Mutex::Autolock _l(mLock); |
| 350 | if (mCurrentState & MEDIA_PLAYER_STOPPED) return NO_ERROR; |
| 351 | if ( (mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_STARTED | MEDIA_PLAYER_PREPARED | |
| 352 | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE ) ) ) { |
| 353 | status_t ret = mPlayer->stop(); |
| 354 | if (ret != NO_ERROR) { |
| 355 | mCurrentState = MEDIA_PLAYER_STATE_ERROR; |
| 356 | } else { |
| 357 | mCurrentState = MEDIA_PLAYER_STOPPED; |
| 358 | } |
| 359 | return ret; |
| 360 | } |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 361 | ALOGE("stop called in state %d", mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 362 | return INVALID_OPERATION; |
| 363 | } |
| 364 | |
| 365 | status_t MediaPlayer::pause() |
| 366 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 367 | ALOGV("pause"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 368 | Mutex::Autolock _l(mLock); |
Marco Nelissen | 698f476 | 2010-02-26 13:16:23 -0800 | [diff] [blame] | 369 | if (mCurrentState & (MEDIA_PLAYER_PAUSED|MEDIA_PLAYER_PLAYBACK_COMPLETE)) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 370 | return NO_ERROR; |
| 371 | if ((mPlayer != 0) && (mCurrentState & MEDIA_PLAYER_STARTED)) { |
| 372 | status_t ret = mPlayer->pause(); |
| 373 | if (ret != NO_ERROR) { |
| 374 | mCurrentState = MEDIA_PLAYER_STATE_ERROR; |
| 375 | } else { |
| 376 | mCurrentState = MEDIA_PLAYER_PAUSED; |
| 377 | } |
| 378 | return ret; |
| 379 | } |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 380 | ALOGE("pause called in state %d", mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 381 | return INVALID_OPERATION; |
| 382 | } |
| 383 | |
| 384 | bool MediaPlayer::isPlaying() |
| 385 | { |
| 386 | Mutex::Autolock _l(mLock); |
| 387 | if (mPlayer != 0) { |
| 388 | bool temp = false; |
| 389 | mPlayer->isPlaying(&temp); |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 390 | ALOGV("isPlaying: %d", temp); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 391 | if ((mCurrentState & MEDIA_PLAYER_STARTED) && ! temp) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 392 | ALOGE("internal/external state mismatch corrected"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 393 | mCurrentState = MEDIA_PLAYER_PAUSED; |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 394 | } else if ((mCurrentState & MEDIA_PLAYER_PAUSED) && temp) { |
| 395 | ALOGE("internal/external state mismatch corrected"); |
| 396 | mCurrentState = MEDIA_PLAYER_STARTED; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 397 | } |
| 398 | return temp; |
| 399 | } |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 400 | ALOGV("isPlaying: no active player"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 401 | return false; |
| 402 | } |
| 403 | |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 404 | status_t MediaPlayer::setPlaybackSettings(const AudioPlaybackRate& rate) |
Wei Jia | 9816016 | 2015-02-04 17:01:11 -0800 | [diff] [blame] | 405 | { |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 406 | ALOGV("setPlaybackSettings: %f %f %d %d", |
| 407 | rate.mSpeed, rate.mPitch, rate.mFallbackMode, rate.mStretchMode); |
| 408 | // Negative speed and pitch does not make sense. Further validation will |
| 409 | // be done by the respective mediaplayers. |
| 410 | if (rate.mSpeed < 0.f || rate.mPitch < 0.f) { |
Wei Jia | 9816016 | 2015-02-04 17:01:11 -0800 | [diff] [blame] | 411 | return BAD_VALUE; |
| 412 | } |
| 413 | Mutex::Autolock _l(mLock); |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 414 | if (mPlayer == 0) return INVALID_OPERATION; |
| 415 | status_t err = mPlayer->setPlaybackSettings(rate); |
| 416 | if (err == OK) { |
| 417 | if (rate.mSpeed == 0.f && mCurrentState == MEDIA_PLAYER_STARTED) { |
| 418 | mCurrentState = MEDIA_PLAYER_PAUSED; |
| 419 | } else if (rate.mSpeed != 0.f && mCurrentState == MEDIA_PLAYER_PAUSED) { |
| 420 | mCurrentState = MEDIA_PLAYER_STARTED; |
Wei Jia | 9816016 | 2015-02-04 17:01:11 -0800 | [diff] [blame] | 421 | } |
Wei Jia | 9816016 | 2015-02-04 17:01:11 -0800 | [diff] [blame] | 422 | } |
Lajos Molnar | 3a474aa | 2015-04-24 17:10:07 -0700 | [diff] [blame] | 423 | return err; |
| 424 | } |
| 425 | |
| 426 | status_t MediaPlayer::getPlaybackSettings(AudioPlaybackRate* rate /* nonnull */) |
| 427 | { |
| 428 | Mutex::Autolock _l(mLock); |
| 429 | if (mPlayer == 0) return INVALID_OPERATION; |
| 430 | return mPlayer->getPlaybackSettings(rate); |
| 431 | } |
| 432 | |
| 433 | status_t MediaPlayer::setSyncSettings(const AVSyncSettings& sync, float videoFpsHint) |
| 434 | { |
| 435 | ALOGV("setSyncSettings: %u %u %f %f", |
| 436 | sync.mSource, sync.mAudioAdjustMode, sync.mTolerance, videoFpsHint); |
| 437 | Mutex::Autolock _l(mLock); |
| 438 | if (mPlayer == 0) return INVALID_OPERATION; |
| 439 | return mPlayer->setSyncSettings(sync, videoFpsHint); |
| 440 | } |
| 441 | |
| 442 | status_t MediaPlayer::getSyncSettings( |
| 443 | AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */) |
| 444 | { |
| 445 | Mutex::Autolock _l(mLock); |
| 446 | if (mPlayer == 0) return INVALID_OPERATION; |
| 447 | return mPlayer->getSyncSettings(sync, videoFps); |
Wei Jia | 9816016 | 2015-02-04 17:01:11 -0800 | [diff] [blame] | 448 | } |
| 449 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 450 | status_t MediaPlayer::getVideoWidth(int *w) |
| 451 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 452 | ALOGV("getVideoWidth"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 453 | Mutex::Autolock _l(mLock); |
| 454 | if (mPlayer == 0) return INVALID_OPERATION; |
| 455 | *w = mVideoWidth; |
| 456 | return NO_ERROR; |
| 457 | } |
| 458 | |
| 459 | status_t MediaPlayer::getVideoHeight(int *h) |
| 460 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 461 | ALOGV("getVideoHeight"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 462 | Mutex::Autolock _l(mLock); |
| 463 | if (mPlayer == 0) return INVALID_OPERATION; |
| 464 | *h = mVideoHeight; |
| 465 | return NO_ERROR; |
| 466 | } |
| 467 | |
| 468 | status_t MediaPlayer::getCurrentPosition(int *msec) |
| 469 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 470 | ALOGV("getCurrentPosition"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 471 | Mutex::Autolock _l(mLock); |
| 472 | if (mPlayer != 0) { |
| 473 | if (mCurrentPosition >= 0) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 474 | ALOGV("Using cached seek position: %d", mCurrentPosition); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 475 | *msec = mCurrentPosition; |
| 476 | return NO_ERROR; |
| 477 | } |
| 478 | return mPlayer->getCurrentPosition(msec); |
| 479 | } |
| 480 | return INVALID_OPERATION; |
| 481 | } |
| 482 | |
| 483 | status_t MediaPlayer::getDuration_l(int *msec) |
| 484 | { |
Andreas Huber | a4c5bc0 | 2012-11-27 15:02:53 -0800 | [diff] [blame] | 485 | ALOGV("getDuration_l"); |
Glenn Kasten | b187de1 | 2014-12-30 08:18:15 -0800 | [diff] [blame] | 486 | bool isValidState = (mCurrentState & (MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED | |
| 487 | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_STOPPED | MEDIA_PLAYER_PLAYBACK_COMPLETE)); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 488 | if (mPlayer != 0 && isValidState) { |
Andreas Huber | a4c5bc0 | 2012-11-27 15:02:53 -0800 | [diff] [blame] | 489 | int durationMs; |
| 490 | status_t ret = mPlayer->getDuration(&durationMs); |
Andreas Huber | 2070254 | 2013-04-11 11:07:55 -0700 | [diff] [blame] | 491 | |
| 492 | if (ret != OK) { |
| 493 | // Do not enter error state just because no duration was available. |
| 494 | durationMs = -1; |
| 495 | ret = OK; |
| 496 | } |
| 497 | |
Andreas Huber | a4c5bc0 | 2012-11-27 15:02:53 -0800 | [diff] [blame] | 498 | if (msec) { |
| 499 | *msec = durationMs; |
| 500 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 501 | return ret; |
| 502 | } |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 503 | ALOGE("Attempt to call getDuration without a valid mediaplayer"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 504 | return INVALID_OPERATION; |
| 505 | } |
| 506 | |
| 507 | status_t MediaPlayer::getDuration(int *msec) |
| 508 | { |
| 509 | Mutex::Autolock _l(mLock); |
| 510 | return getDuration_l(msec); |
| 511 | } |
| 512 | |
| 513 | status_t MediaPlayer::seekTo_l(int msec) |
| 514 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 515 | ALOGV("seekTo %d", msec); |
Glenn Kasten | b187de1 | 2014-12-30 08:18:15 -0800 | [diff] [blame] | 516 | if ((mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_STARTED | MEDIA_PLAYER_PREPARED | |
| 517 | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE) ) ) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 518 | if ( msec < 0 ) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 519 | ALOGW("Attempt to seek to invalid position: %d", msec); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 520 | msec = 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 521 | } |
Andreas Huber | a4c5bc0 | 2012-11-27 15:02:53 -0800 | [diff] [blame] | 522 | |
| 523 | int durationMs; |
| 524 | status_t err = mPlayer->getDuration(&durationMs); |
| 525 | |
| 526 | if (err != OK) { |
| 527 | ALOGW("Stream has no duration and is therefore not seekable."); |
| 528 | return err; |
| 529 | } |
| 530 | |
| 531 | if (msec > durationMs) { |
| 532 | ALOGW("Attempt to seek to past end of file: request = %d, " |
| 533 | "durationMs = %d", |
| 534 | msec, |
| 535 | durationMs); |
| 536 | |
| 537 | msec = durationMs; |
| 538 | } |
| 539 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 540 | // cache duration |
| 541 | mCurrentPosition = msec; |
| 542 | if (mSeekPosition < 0) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 543 | mSeekPosition = msec; |
| 544 | return mPlayer->seekTo(msec); |
| 545 | } |
| 546 | else { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 547 | ALOGV("Seek in progress - queue up seekTo[%d]", msec); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 548 | return NO_ERROR; |
| 549 | } |
| 550 | } |
Glenn Kasten | b187de1 | 2014-12-30 08:18:15 -0800 | [diff] [blame] | 551 | ALOGE("Attempt to perform seekTo in wrong state: mPlayer=%p, mCurrentState=%u", mPlayer.get(), |
| 552 | mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 553 | return INVALID_OPERATION; |
| 554 | } |
| 555 | |
| 556 | status_t MediaPlayer::seekTo(int msec) |
| 557 | { |
Andreas Huber | 5cb07aa | 2009-03-24 20:48:51 -0700 | [diff] [blame] | 558 | mLockThreadId = getThreadId(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 559 | Mutex::Autolock _l(mLock); |
Andreas Huber | 5cb07aa | 2009-03-24 20:48:51 -0700 | [diff] [blame] | 560 | status_t result = seekTo_l(msec); |
| 561 | mLockThreadId = 0; |
| 562 | |
| 563 | return result; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 564 | } |
| 565 | |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 566 | status_t MediaPlayer::reset_l() |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 567 | { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 568 | mLoop = false; |
| 569 | if (mCurrentState == MEDIA_PLAYER_IDLE) return NO_ERROR; |
| 570 | mPrepareSync = false; |
| 571 | if (mPlayer != 0) { |
| 572 | status_t ret = mPlayer->reset(); |
| 573 | if (ret != NO_ERROR) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 574 | ALOGE("reset() failed with return code (%d)", ret); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 575 | mCurrentState = MEDIA_PLAYER_STATE_ERROR; |
| 576 | } else { |
Robert Shih | 2b95bda | 2015-07-22 10:11:51 -0700 | [diff] [blame] | 577 | mPlayer->disconnect(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 578 | mCurrentState = MEDIA_PLAYER_IDLE; |
| 579 | } |
James Dong | a1680bc | 2010-11-18 12:23:58 -0800 | [diff] [blame] | 580 | // setDataSource has to be called again to create a |
| 581 | // new mediaplayer. |
| 582 | mPlayer = 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 583 | return ret; |
| 584 | } |
| 585 | clear_l(); |
| 586 | return NO_ERROR; |
| 587 | } |
| 588 | |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 589 | status_t MediaPlayer::doSetRetransmitEndpoint(const sp<IMediaPlayer>& player) { |
| 590 | Mutex::Autolock _l(mLock); |
| 591 | |
| 592 | if (player == NULL) { |
| 593 | return UNKNOWN_ERROR; |
| 594 | } |
| 595 | |
| 596 | if (mRetransmitEndpointValid) { |
| 597 | return player->setRetransmitEndpoint(&mRetransmitEndpoint); |
| 598 | } |
| 599 | |
| 600 | return OK; |
| 601 | } |
| 602 | |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 603 | status_t MediaPlayer::reset() |
| 604 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 605 | ALOGV("reset"); |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 606 | Mutex::Autolock _l(mLock); |
| 607 | return reset_l(); |
| 608 | } |
| 609 | |
Glenn Kasten | fff6d71 | 2012-01-12 16:38:12 -0800 | [diff] [blame] | 610 | status_t MediaPlayer::setAudioStreamType(audio_stream_type_t type) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 611 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 612 | ALOGV("MediaPlayer::setAudioStreamType"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 613 | Mutex::Autolock _l(mLock); |
| 614 | if (mStreamType == type) return NO_ERROR; |
| 615 | if (mCurrentState & ( MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED | |
| 616 | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE ) ) { |
| 617 | // Can't change the stream type after prepare |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 618 | ALOGE("setAudioStream called in state %d", mCurrentState); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 619 | return INVALID_OPERATION; |
| 620 | } |
| 621 | // cache |
| 622 | mStreamType = type; |
| 623 | return OK; |
| 624 | } |
| 625 | |
John Spurlock | de9453f | 2014-03-19 13:05:45 -0400 | [diff] [blame] | 626 | status_t MediaPlayer::getAudioStreamType(audio_stream_type_t *type) |
| 627 | { |
| 628 | ALOGV("getAudioStreamType"); |
| 629 | Mutex::Autolock _l(mLock); |
| 630 | *type = mStreamType; |
| 631 | return OK; |
| 632 | } |
| 633 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 634 | status_t MediaPlayer::setLooping(int loop) |
| 635 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 636 | ALOGV("MediaPlayer::setLooping"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 637 | Mutex::Autolock _l(mLock); |
| 638 | mLoop = (loop != 0); |
| 639 | if (mPlayer != 0) { |
| 640 | return mPlayer->setLooping(loop); |
| 641 | } |
| 642 | return OK; |
| 643 | } |
| 644 | |
| 645 | bool MediaPlayer::isLooping() { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 646 | ALOGV("isLooping"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 647 | Mutex::Autolock _l(mLock); |
| 648 | if (mPlayer != 0) { |
| 649 | return mLoop; |
| 650 | } |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 651 | ALOGV("isLooping: no active player"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 652 | return false; |
| 653 | } |
| 654 | |
| 655 | status_t MediaPlayer::setVolume(float leftVolume, float rightVolume) |
| 656 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 657 | ALOGV("MediaPlayer::setVolume(%f, %f)", leftVolume, rightVolume); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 658 | Mutex::Autolock _l(mLock); |
| 659 | mLeftVolume = leftVolume; |
| 660 | mRightVolume = rightVolume; |
| 661 | if (mPlayer != 0) { |
| 662 | return mPlayer->setVolume(leftVolume, rightVolume); |
| 663 | } |
| 664 | return OK; |
| 665 | } |
| 666 | |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 667 | status_t MediaPlayer::setAudioSessionId(int sessionId) |
| 668 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 669 | ALOGV("MediaPlayer::setAudioSessionId(%d)", sessionId); |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 670 | Mutex::Autolock _l(mLock); |
| 671 | if (!(mCurrentState & MEDIA_PLAYER_IDLE)) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 672 | ALOGE("setAudioSessionId called in state %d", mCurrentState); |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 673 | return INVALID_OPERATION; |
| 674 | } |
| 675 | if (sessionId < 0) { |
| 676 | return BAD_VALUE; |
| 677 | } |
Marco Nelissen | 3a34bef | 2011-08-02 13:33:41 -0700 | [diff] [blame] | 678 | if (sessionId != mAudioSessionId) { |
Marco Nelissen | d457c97 | 2014-02-11 08:47:07 -0800 | [diff] [blame] | 679 | AudioSystem::acquireAudioSessionId(sessionId, -1); |
| 680 | AudioSystem::releaseAudioSessionId(mAudioSessionId, -1); |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 681 | mAudioSessionId = sessionId; |
Marco Nelissen | 3a34bef | 2011-08-02 13:33:41 -0700 | [diff] [blame] | 682 | } |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 683 | return NO_ERROR; |
| 684 | } |
| 685 | |
| 686 | int MediaPlayer::getAudioSessionId() |
| 687 | { |
| 688 | Mutex::Autolock _l(mLock); |
| 689 | return mAudioSessionId; |
| 690 | } |
| 691 | |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 692 | status_t MediaPlayer::setAuxEffectSendLevel(float level) |
| 693 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 694 | ALOGV("MediaPlayer::setAuxEffectSendLevel(%f)", level); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 695 | Mutex::Autolock _l(mLock); |
| 696 | mSendLevel = level; |
| 697 | if (mPlayer != 0) { |
| 698 | return mPlayer->setAuxEffectSendLevel(level); |
| 699 | } |
| 700 | return OK; |
| 701 | } |
| 702 | |
| 703 | status_t MediaPlayer::attachAuxEffect(int effectId) |
| 704 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 705 | ALOGV("MediaPlayer::attachAuxEffect(%d)", effectId); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 706 | Mutex::Autolock _l(mLock); |
| 707 | if (mPlayer == 0 || |
| 708 | (mCurrentState & MEDIA_PLAYER_IDLE) || |
| 709 | (mCurrentState == MEDIA_PLAYER_STATE_ERROR )) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 710 | ALOGE("attachAuxEffect called in state %d", mCurrentState); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 711 | return INVALID_OPERATION; |
| 712 | } |
| 713 | |
| 714 | return mPlayer->attachAuxEffect(effectId); |
| 715 | } |
| 716 | |
Jean-Michel Trivi | d9d7fa0 | 2014-06-24 08:01:46 -0700 | [diff] [blame] | 717 | // always call with lock held |
| 718 | status_t MediaPlayer::checkStateForKeySet_l(int key) |
| 719 | { |
| 720 | switch(key) { |
| 721 | case KEY_PARAMETER_AUDIO_ATTRIBUTES: |
| 722 | if (mCurrentState & ( MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_STARTED | |
| 723 | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE) ) { |
| 724 | // Can't change the audio attributes after prepare |
| 725 | ALOGE("trying to set audio attributes called in state %d", mCurrentState); |
| 726 | return INVALID_OPERATION; |
| 727 | } |
| 728 | break; |
| 729 | default: |
| 730 | // parameter doesn't require player state check |
| 731 | break; |
| 732 | } |
| 733 | return OK; |
| 734 | } |
| 735 | |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 736 | status_t MediaPlayer::setParameter(int key, const Parcel& request) |
| 737 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 738 | ALOGV("MediaPlayer::setParameter(%d)", key); |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 739 | status_t status = INVALID_OPERATION; |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 740 | Mutex::Autolock _l(mLock); |
Jean-Michel Trivi | d9d7fa0 | 2014-06-24 08:01:46 -0700 | [diff] [blame] | 741 | if (checkStateForKeySet_l(key) != OK) { |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 742 | return status; |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 743 | } |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 744 | switch (key) { |
| 745 | case KEY_PARAMETER_AUDIO_ATTRIBUTES: |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 746 | // save the marshalled audio attributes |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 747 | if (mAudioAttributesParcel != NULL) { delete mAudioAttributesParcel; }; |
| 748 | mAudioAttributesParcel = new Parcel(); |
| 749 | mAudioAttributesParcel->appendFrom(&request, 0, request.dataSize()); |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 750 | status = OK; |
| 751 | break; |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 752 | default: |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 753 | ALOGV_IF(mPlayer == NULL, "setParameter: no active player"); |
| 754 | break; |
Jean-Michel Trivi | 640adb3 | 2014-09-05 11:20:11 -0700 | [diff] [blame] | 755 | } |
Eric Laurent | 4356269 | 2015-07-15 16:49:07 -0700 | [diff] [blame] | 756 | |
| 757 | if (mPlayer != NULL) { |
| 758 | status = mPlayer->setParameter(key, request); |
| 759 | } |
| 760 | return status; |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | status_t MediaPlayer::getParameter(int key, Parcel *reply) |
| 764 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 765 | ALOGV("MediaPlayer::getParameter(%d)", key); |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 766 | Mutex::Autolock _l(mLock); |
| 767 | if (mPlayer != NULL) { |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 768 | return mPlayer->getParameter(key, reply); |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 769 | } |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 770 | ALOGV("getParameter: no active player"); |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 771 | return INVALID_OPERATION; |
| 772 | } |
| 773 | |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 774 | status_t MediaPlayer::setRetransmitEndpoint(const char* addrString, |
| 775 | uint16_t port) { |
| 776 | ALOGV("MediaPlayer::setRetransmitEndpoint(%s:%hu)", |
| 777 | addrString ? addrString : "(null)", port); |
| 778 | |
| 779 | Mutex::Autolock _l(mLock); |
| 780 | if ((mPlayer != NULL) || (mCurrentState != MEDIA_PLAYER_IDLE)) |
| 781 | return INVALID_OPERATION; |
| 782 | |
| 783 | if (NULL == addrString) { |
| 784 | mRetransmitEndpointValid = false; |
| 785 | return OK; |
| 786 | } |
| 787 | |
| 788 | struct in_addr saddr; |
| 789 | if(!inet_aton(addrString, &saddr)) { |
| 790 | return BAD_VALUE; |
| 791 | } |
| 792 | |
Glenn Kasten | be08f6a | 2013-12-19 09:09:33 -0800 | [diff] [blame] | 793 | memset(&mRetransmitEndpoint, 0, sizeof(mRetransmitEndpoint)); |
John Grossman | c795b64 | 2012-02-22 15:38:35 -0800 | [diff] [blame] | 794 | mRetransmitEndpoint.sin_family = AF_INET; |
| 795 | mRetransmitEndpoint.sin_addr = saddr; |
| 796 | mRetransmitEndpoint.sin_port = htons(port); |
| 797 | mRetransmitEndpointValid = true; |
| 798 | |
| 799 | return OK; |
| 800 | } |
| 801 | |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 802 | void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 803 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 804 | ALOGV("message received msg=%d, ext1=%d, ext2=%d", msg, ext1, ext2); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 805 | bool send = true; |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 806 | bool locked = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 807 | |
| 808 | // TODO: In the future, we might be on the same thread if the app is |
| 809 | // running in the same process as the media server. In that case, |
| 810 | // this will deadlock. |
Nicolas Catania | 6609518 | 2009-06-11 16:33:49 -0700 | [diff] [blame] | 811 | // |
Chong Zhang | d88adb9 | 2014-07-23 11:43:46 -0700 | [diff] [blame] | 812 | // The threadId hack below works around this for the care of prepare, |
| 813 | // seekTo and start within the same process. |
Andreas Huber | 5cb07aa | 2009-03-24 20:48:51 -0700 | [diff] [blame] | 814 | // FIXME: Remember, this is a hack, it's not even a hack that is applied |
| 815 | // consistently for all use-cases, this needs to be revisited. |
Glenn Kasten | e53b9ea | 2012-03-12 16:29:55 -0700 | [diff] [blame] | 816 | if (mLockThreadId != getThreadId()) { |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 817 | mLock.lock(); |
| 818 | locked = true; |
Nicolas Catania | 6609518 | 2009-06-11 16:33:49 -0700 | [diff] [blame] | 819 | } |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 820 | |
Eric Laurent | 3b26844 | 2010-08-03 07:49:49 -0700 | [diff] [blame] | 821 | // Allows calls from JNI in idle state to notify errors |
| 822 | if (!(msg == MEDIA_ERROR && mCurrentState == MEDIA_PLAYER_IDLE) && mPlayer == 0) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 823 | ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2); |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 824 | if (locked) mLock.unlock(); // release the lock when done. |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 825 | return; |
| 826 | } |
| 827 | |
| 828 | switch (msg) { |
| 829 | case MEDIA_NOP: // interface test message |
| 830 | break; |
| 831 | case MEDIA_PREPARED: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 832 | ALOGV("prepared"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 833 | mCurrentState = MEDIA_PLAYER_PREPARED; |
| 834 | if (mPrepareSync) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 835 | ALOGV("signal application thread"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 836 | mPrepareSync = false; |
| 837 | mPrepareStatus = NO_ERROR; |
| 838 | mSignal.signal(); |
| 839 | } |
| 840 | break; |
| 841 | case MEDIA_PLAYBACK_COMPLETE: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 842 | ALOGV("playback complete"); |
Marco Nelissen | 1c1503c | 2010-09-17 15:04:01 -0700 | [diff] [blame] | 843 | if (mCurrentState == MEDIA_PLAYER_IDLE) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 844 | ALOGE("playback complete in idle state"); |
Marco Nelissen | 1c1503c | 2010-09-17 15:04:01 -0700 | [diff] [blame] | 845 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 846 | if (!mLoop) { |
| 847 | mCurrentState = MEDIA_PLAYER_PLAYBACK_COMPLETE; |
| 848 | } |
| 849 | break; |
| 850 | case MEDIA_ERROR: |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 851 | // Always log errors. |
| 852 | // ext1: Media framework error code. |
| 853 | // ext2: Implementation dependant error code. |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 854 | ALOGE("error (%d, %d)", ext1, ext2); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 855 | mCurrentState = MEDIA_PLAYER_STATE_ERROR; |
| 856 | if (mPrepareSync) |
| 857 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 858 | ALOGV("signal application thread"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 859 | mPrepareSync = false; |
| 860 | mPrepareStatus = ext1; |
| 861 | mSignal.signal(); |
| 862 | send = false; |
| 863 | } |
| 864 | break; |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 865 | case MEDIA_INFO: |
| 866 | // ext1: Media framework error code. |
| 867 | // ext2: Implementation dependant error code. |
Andreas Huber | 145e68f | 2011-01-11 15:05:28 -0800 | [diff] [blame] | 868 | if (ext1 != MEDIA_INFO_VIDEO_TRACK_LAGGING) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 869 | ALOGW("info/warning (%d, %d)", ext1, ext2); |
Andreas Huber | 145e68f | 2011-01-11 15:05:28 -0800 | [diff] [blame] | 870 | } |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 871 | break; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 872 | case MEDIA_SEEK_COMPLETE: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 873 | ALOGV("Received seek complete"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 874 | if (mSeekPosition != mCurrentPosition) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 875 | ALOGV("Executing queued seekTo(%d)", mSeekPosition); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 876 | mSeekPosition = -1; |
| 877 | seekTo_l(mCurrentPosition); |
| 878 | } |
| 879 | else { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 880 | ALOGV("All seeks complete - return to regularly scheduled program"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 881 | mCurrentPosition = mSeekPosition = -1; |
| 882 | } |
| 883 | break; |
| 884 | case MEDIA_BUFFERING_UPDATE: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 885 | ALOGV("buffering %d", ext1); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 886 | break; |
| 887 | case MEDIA_SET_VIDEO_SIZE: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 888 | ALOGV("New video size %d x %d", ext1, ext2); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 889 | mVideoWidth = ext1; |
| 890 | mVideoHeight = ext2; |
| 891 | break; |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 892 | case MEDIA_TIMED_TEXT: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 893 | ALOGV("Received timed text message"); |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 894 | break; |
Chong Zhang | dcb89b3 | 2013-08-06 09:44:47 -0700 | [diff] [blame] | 895 | case MEDIA_SUBTITLE_DATA: |
| 896 | ALOGV("Received subtitle data message"); |
| 897 | break; |
Robert Shih | 0852843 | 2015-04-08 09:06:54 -0700 | [diff] [blame] | 898 | case MEDIA_META_DATA: |
| 899 | ALOGV("Received timed metadata message"); |
| 900 | break; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 901 | default: |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 902 | ALOGV("unrecognized message: (%d, %d, %d)", msg, ext1, ext2); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 903 | break; |
| 904 | } |
| 905 | |
| 906 | sp<MediaPlayerListener> listener = mListener; |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 907 | if (locked) mLock.unlock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 908 | |
| 909 | // this prevents re-entrant calls into client code |
| 910 | if ((listener != 0) && send) { |
| 911 | Mutex::Autolock _l(mNotifyLock); |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 912 | ALOGV("callback application"); |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 913 | listener->notify(msg, ext1, ext2, obj); |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 914 | ALOGV("back from callback"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 915 | } |
| 916 | } |
| 917 | |
James Dong | dd172fc | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 918 | void MediaPlayer::died() |
| 919 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 920 | ALOGV("died"); |
James Dong | dd172fc | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 921 | notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0); |
| 922 | } |
| 923 | |
Marco Nelissen | 6b74d67 | 2012-02-28 16:07:44 -0800 | [diff] [blame] | 924 | status_t MediaPlayer::setNextMediaPlayer(const sp<MediaPlayer>& next) { |
| 925 | if (mPlayer == NULL) { |
| 926 | return NO_INIT; |
| 927 | } |
Marco Nelissen | b13820f | 2013-08-05 12:22:43 -0700 | [diff] [blame] | 928 | |
| 929 | if (next != NULL && !(next->mCurrentState & |
| 930 | (MEDIA_PLAYER_PREPARED | MEDIA_PLAYER_PAUSED | MEDIA_PLAYER_PLAYBACK_COMPLETE))) { |
| 931 | ALOGE("next player is not prepared"); |
| 932 | return INVALID_OPERATION; |
| 933 | } |
| 934 | |
Marco Nelissen | 6b74d67 | 2012-02-28 16:07:44 -0800 | [diff] [blame] | 935 | return mPlayer->setNextPlayer(next == NULL ? NULL : next->mPlayer); |
| 936 | } |
| 937 | |
Glenn Kasten | 40bc906 | 2015-03-20 09:09:33 -0700 | [diff] [blame] | 938 | } // namespace android |