blob: 0b10ae44a3a02d00cab0cd51b42808013e00c43e [file] [log] [blame]
Andreas Huberf9334412010-12-15 15:17:42 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "NuPlayer"
19#include <utils/Log.h>
20
21#include "NuPlayer.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080022
23#include "HTTPLiveSource.h"
Chong Zhang7137ec72014-11-12 16:41:05 -080024#include "NuPlayerCCDecoder.h"
Andreas Huberf9334412010-12-15 15:17:42 -080025#include "NuPlayerDecoder.h"
Chong Zhang7137ec72014-11-12 16:41:05 -080026#include "NuPlayerDecoderBase.h"
Wei Jiabc2fb722014-07-08 16:37:57 -070027#include "NuPlayerDecoderPassThrough.h"
Andreas Huber43c3e6c2011-01-05 12:17:08 -080028#include "NuPlayerDriver.h"
Andreas Huberf9334412010-12-15 15:17:42 -080029#include "NuPlayerRenderer.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080030#include "NuPlayerSource.h"
Andreas Huber2bfdd422011-10-11 15:24:07 -070031#include "RTSPSource.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080032#include "StreamingSource.h"
Andreas Huberafed0e12011-09-20 15:39:58 -070033#include "GenericSource.h"
Robert Shihd3b0bbb2014-07-23 15:00:25 -070034#include "TextDescriptions.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080035
36#include "ATSParser.h"
Andreas Huberf9334412010-12-15 15:17:42 -080037
Lajos Molnard9fd6312014-11-06 11:00:00 -080038#include <cutils/properties.h>
39
Lajos Molnar3a474aa2015-04-24 17:10:07 -070040#include <media/AudioResamplerPublic.h>
41#include <media/AVSyncSettings.h>
42
Andreas Huber3831a062010-12-21 10:22:33 -080043#include <media/stagefright/foundation/hexdump.h>
Andreas Huberf9334412010-12-15 15:17:42 -080044#include <media/stagefright/foundation/ABuffer.h>
45#include <media/stagefright/foundation/ADebug.h>
46#include <media/stagefright/foundation/AMessage.h>
Lajos Molnar09524832014-07-17 14:29:51 -070047#include <media/stagefright/MediaBuffer.h>
Andreas Huber3fe62152011-09-16 15:09:22 -070048#include <media/stagefright/MediaDefs.h>
Andreas Huberf9334412010-12-15 15:17:42 -080049#include <media/stagefright/MediaErrors.h>
50#include <media/stagefright/MetaData.h>
Lajos Molnar1de1e252015-04-30 18:18:34 -070051
Andy McFadden8ba01022012-12-18 09:46:54 -080052#include <gui/IGraphicBufferProducer.h>
Lajos Molnar1de1e252015-04-30 18:18:34 -070053#include <gui/Surface.h>
Andreas Huberf9334412010-12-15 15:17:42 -080054
Andreas Huber3fe62152011-09-16 15:09:22 -070055#include "avc_utils.h"
56
Andreas Huber84066782011-08-16 09:34:26 -070057#include "ESDS.h"
58#include <media/stagefright/Utils.h>
59
Andreas Huberf9334412010-12-15 15:17:42 -080060namespace android {
61
Andreas Hubera1f8ab02012-11-30 10:53:22 -080062struct NuPlayer::Action : public RefBase {
63 Action() {}
64
65 virtual void execute(NuPlayer *player) = 0;
66
67private:
68 DISALLOW_EVIL_CONSTRUCTORS(Action);
69};
70
71struct NuPlayer::SeekAction : public Action {
Wei Jia29840802015-05-15 17:11:38 -070072 SeekAction(int64_t seekTimeUs)
73 : mSeekTimeUs(seekTimeUs) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -080074 }
75
76 virtual void execute(NuPlayer *player) {
Wei Jia29840802015-05-15 17:11:38 -070077 player->performSeek(mSeekTimeUs);
Andreas Hubera1f8ab02012-11-30 10:53:22 -080078 }
79
80private:
81 int64_t mSeekTimeUs;
82
83 DISALLOW_EVIL_CONSTRUCTORS(SeekAction);
84};
85
Chong Zhangf8d71772014-11-26 15:08:34 -080086struct NuPlayer::ResumeDecoderAction : public Action {
87 ResumeDecoderAction(bool needNotify)
88 : mNeedNotify(needNotify) {
89 }
90
91 virtual void execute(NuPlayer *player) {
92 player->performResumeDecoders(mNeedNotify);
93 }
94
95private:
96 bool mNeedNotify;
97
98 DISALLOW_EVIL_CONSTRUCTORS(ResumeDecoderAction);
99};
100
Andreas Huber57a339c2012-12-03 11:18:00 -0800101struct NuPlayer::SetSurfaceAction : public Action {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700102 SetSurfaceAction(const sp<Surface> &surface)
103 : mSurface(surface) {
Andreas Huber57a339c2012-12-03 11:18:00 -0800104 }
105
106 virtual void execute(NuPlayer *player) {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700107 player->performSetSurface(mSurface);
Andreas Huber57a339c2012-12-03 11:18:00 -0800108 }
109
110private:
Lajos Molnar1de1e252015-04-30 18:18:34 -0700111 sp<Surface> mSurface;
Andreas Huber57a339c2012-12-03 11:18:00 -0800112
113 DISALLOW_EVIL_CONSTRUCTORS(SetSurfaceAction);
114};
115
Wei Jiafef808d2014-10-31 17:57:05 -0700116struct NuPlayer::FlushDecoderAction : public Action {
117 FlushDecoderAction(FlushCommand audio, FlushCommand video)
Andreas Huber14f76722013-01-15 09:04:18 -0800118 : mAudio(audio),
119 mVideo(video) {
120 }
121
122 virtual void execute(NuPlayer *player) {
Wei Jiafef808d2014-10-31 17:57:05 -0700123 player->performDecoderFlush(mAudio, mVideo);
Andreas Huber14f76722013-01-15 09:04:18 -0800124 }
125
126private:
Wei Jiafef808d2014-10-31 17:57:05 -0700127 FlushCommand mAudio;
128 FlushCommand mVideo;
Andreas Huber14f76722013-01-15 09:04:18 -0800129
Wei Jiafef808d2014-10-31 17:57:05 -0700130 DISALLOW_EVIL_CONSTRUCTORS(FlushDecoderAction);
Andreas Huber14f76722013-01-15 09:04:18 -0800131};
132
133struct NuPlayer::PostMessageAction : public Action {
134 PostMessageAction(const sp<AMessage> &msg)
135 : mMessage(msg) {
136 }
137
138 virtual void execute(NuPlayer *) {
139 mMessage->post();
140 }
141
142private:
143 sp<AMessage> mMessage;
144
145 DISALLOW_EVIL_CONSTRUCTORS(PostMessageAction);
146};
147
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800148// Use this if there's no state necessary to save in order to execute
149// the action.
150struct NuPlayer::SimpleAction : public Action {
151 typedef void (NuPlayer::*ActionFunc)();
152
153 SimpleAction(ActionFunc func)
154 : mFunc(func) {
155 }
156
157 virtual void execute(NuPlayer *player) {
158 (player->*mFunc)();
159 }
160
161private:
162 ActionFunc mFunc;
163
164 DISALLOW_EVIL_CONSTRUCTORS(SimpleAction);
165};
166
Andreas Huberf9334412010-12-15 15:17:42 -0800167////////////////////////////////////////////////////////////////////////////////
168
Ronghua Wu68845c12015-07-21 09:50:48 -0700169NuPlayer::NuPlayer(pid_t pid)
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700170 : mUIDValid(false),
Ronghua Wu68845c12015-07-21 09:50:48 -0700171 mPID(pid),
Andreas Huber9575c962013-02-05 13:59:56 -0800172 mSourceFlags(0),
Wei Jiabc2fb722014-07-08 16:37:57 -0700173 mOffloadAudio(false),
Wei Jia88703c32014-08-06 11:24:07 -0700174 mAudioDecoderGeneration(0),
175 mVideoDecoderGeneration(0),
Wei Jia57568df2014-09-22 10:16:29 -0700176 mRendererGeneration(0),
Robert Shih1a5c8592015-08-04 18:07:44 -0700177 mPreviousSeekTimeUs(0),
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700178 mAudioEOS(false),
Andreas Huberf9334412010-12-15 15:17:42 -0800179 mVideoEOS(false),
Andreas Huber5bc087c2010-12-23 10:27:40 -0800180 mScanSourcesPending(false),
Andreas Huber1aef2112011-01-04 14:01:29 -0800181 mScanSourcesGeneration(0),
Andreas Huberb7c8e912012-11-27 15:02:53 -0800182 mPollDurationGeneration(0),
Robert Shihd3b0bbb2014-07-23 15:00:25 -0700183 mTimedTextGeneration(0),
Andreas Huberf9334412010-12-15 15:17:42 -0800184 mFlushingAudio(NONE),
Andreas Huber1aef2112011-01-04 14:01:29 -0800185 mFlushingVideo(NONE),
Chong Zhangf8d71772014-11-26 15:08:34 -0800186 mResumePending(false),
Andreas Huber57a339c2012-12-03 11:18:00 -0800187 mVideoScalingMode(NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW),
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700188 mPlaybackSettings(AUDIO_PLAYBACK_RATE_DEFAULT),
189 mVideoFpsHint(-1.f),
Chong Zhangefbb6192015-01-30 17:13:27 -0800190 mStarted(false),
Wei Jia8a092d32016-06-03 14:57:24 -0700191 mPrepared(false),
Ronghua Wu64c2d172015-10-07 16:52:19 -0700192 mResetting(false),
Robert Shih0c61a0d2015-07-06 15:09:10 -0700193 mSourceStarted(false),
Chong Zhangefbb6192015-01-30 17:13:27 -0800194 mPaused(false),
Wei Jia71c75e02016-02-04 09:40:47 -0800195 mPausedByClient(true),
Chong Zhang8a048332015-05-06 15:16:28 -0700196 mPausedForBuffering(false) {
Andy Hung8d121d42014-10-03 09:53:53 -0700197 clearFlushComplete();
Andreas Huberf9334412010-12-15 15:17:42 -0800198}
199
200NuPlayer::~NuPlayer() {
201}
202
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700203void NuPlayer::setUID(uid_t uid) {
204 mUIDValid = true;
205 mUID = uid;
206}
207
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800208void NuPlayer::setDriver(const wp<NuPlayerDriver> &driver) {
209 mDriver = driver;
Andreas Huberf9334412010-12-15 15:17:42 -0800210}
211
Andreas Huber9575c962013-02-05 13:59:56 -0800212void NuPlayer::setDataSourceAsync(const sp<IStreamSource> &source) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800213 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this);
Andreas Huberf9334412010-12-15 15:17:42 -0800214
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800215 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
Andreas Huberb5f25f02013-02-05 10:14:26 -0800216
Andreas Huber240abcc2014-02-13 13:32:37 -0800217 msg->setObject("source", new StreamingSource(notify, source));
Andreas Huber5bc087c2010-12-23 10:27:40 -0800218 msg->post();
219}
Andreas Huberf9334412010-12-15 15:17:42 -0800220
Andreas Huberafed0e12011-09-20 15:39:58 -0700221static bool IsHTTPLiveURL(const char *url) {
222 if (!strncasecmp("http://", url, 7)
Andreas Huber99759402013-04-01 14:28:31 -0700223 || !strncasecmp("https://", url, 8)
224 || !strncasecmp("file://", url, 7)) {
Andreas Huberafed0e12011-09-20 15:39:58 -0700225 size_t len = strlen(url);
226 if (len >= 5 && !strcasecmp(".m3u8", &url[len - 5])) {
227 return true;
228 }
229
230 if (strstr(url,"m3u8")) {
231 return true;
232 }
233 }
234
235 return false;
236}
237
Andreas Huber9575c962013-02-05 13:59:56 -0800238void NuPlayer::setDataSourceAsync(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800239 const sp<IMediaHTTPService> &httpService,
240 const char *url,
241 const KeyedVector<String8, String8> *headers) {
Chong Zhang3de157d2014-08-05 20:54:44 -0700242
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800243 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this);
Oscar Rydhé7a33b772012-02-20 10:15:48 +0100244 size_t len = strlen(url);
Andreas Huber5bc087c2010-12-23 10:27:40 -0800245
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800246 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
Andreas Huberb5f25f02013-02-05 10:14:26 -0800247
Andreas Huberafed0e12011-09-20 15:39:58 -0700248 sp<Source> source;
249 if (IsHTTPLiveURL(url)) {
Andreas Huber81e68442014-02-05 11:52:33 -0800250 source = new HTTPLiveSource(notify, httpService, url, headers);
Andreas Huberafed0e12011-09-20 15:39:58 -0700251 } else if (!strncasecmp(url, "rtsp://", 7)) {
Andreas Huber1b86fe02014-01-29 11:13:26 -0800252 source = new RTSPSource(
253 notify, httpService, url, headers, mUIDValid, mUID);
Oscar Rydhé7a33b772012-02-20 10:15:48 +0100254 } else if ((!strncasecmp(url, "http://", 7)
255 || !strncasecmp(url, "https://", 8))
256 && ((len >= 4 && !strcasecmp(".sdp", &url[len - 4]))
257 || strstr(url, ".sdp?"))) {
Andreas Huber1b86fe02014-01-29 11:13:26 -0800258 source = new RTSPSource(
259 notify, httpService, url, headers, mUIDValid, mUID, true);
Andreas Huber2bfdd422011-10-11 15:24:07 -0700260 } else {
Chong Zhang3de157d2014-08-05 20:54:44 -0700261 sp<GenericSource> genericSource =
262 new GenericSource(notify, mUIDValid, mUID);
263 // Don't set FLAG_SECURE on mSourceFlags here for widevine.
264 // The correct flags will be updated in Source::kWhatFlagsChanged
265 // handler when GenericSource is prepared.
Andreas Huber2bfdd422011-10-11 15:24:07 -0700266
Chong Zhanga19f33e2014-08-07 15:35:07 -0700267 status_t err = genericSource->setDataSource(httpService, url, headers);
Chong Zhang3de157d2014-08-05 20:54:44 -0700268
269 if (err == OK) {
270 source = genericSource;
271 } else {
Chong Zhanga19f33e2014-08-07 15:35:07 -0700272 ALOGE("Failed to set data source!");
Chong Zhang3de157d2014-08-05 20:54:44 -0700273 }
274 }
Andreas Huberafed0e12011-09-20 15:39:58 -0700275 msg->setObject("source", source);
276 msg->post();
277}
278
Andreas Huber9575c962013-02-05 13:59:56 -0800279void NuPlayer::setDataSourceAsync(int fd, int64_t offset, int64_t length) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800280 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this);
Andreas Huberafed0e12011-09-20 15:39:58 -0700281
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800282 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
Andreas Huberb5f25f02013-02-05 10:14:26 -0800283
Chong Zhang3de157d2014-08-05 20:54:44 -0700284 sp<GenericSource> source =
285 new GenericSource(notify, mUIDValid, mUID);
286
Chong Zhanga19f33e2014-08-07 15:35:07 -0700287 status_t err = source->setDataSource(fd, offset, length);
Chong Zhang3de157d2014-08-05 20:54:44 -0700288
289 if (err != OK) {
Chong Zhanga19f33e2014-08-07 15:35:07 -0700290 ALOGE("Failed to set data source!");
Chong Zhang3de157d2014-08-05 20:54:44 -0700291 source = NULL;
292 }
293
Andreas Huberafed0e12011-09-20 15:39:58 -0700294 msg->setObject("source", source);
Andreas Huberf9334412010-12-15 15:17:42 -0800295 msg->post();
296}
297
Chris Watkins99f31602015-03-20 13:06:33 -0700298void NuPlayer::setDataSourceAsync(const sp<DataSource> &dataSource) {
299 sp<AMessage> msg = new AMessage(kWhatSetDataSource, this);
300 sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
301
302 sp<GenericSource> source = new GenericSource(notify, mUIDValid, mUID);
303 status_t err = source->setDataSource(dataSource);
304
305 if (err != OK) {
306 ALOGE("Failed to set data source!");
307 source = NULL;
308 }
309
310 msg->setObject("source", source);
311 msg->post();
312}
313
Andreas Huber9575c962013-02-05 13:59:56 -0800314void NuPlayer::prepareAsync() {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800315 (new AMessage(kWhatPrepare, this))->post();
Andreas Huber9575c962013-02-05 13:59:56 -0800316}
317
Andreas Huber57a339c2012-12-03 11:18:00 -0800318void NuPlayer::setVideoSurfaceTextureAsync(
Andy McFadden8ba01022012-12-18 09:46:54 -0800319 const sp<IGraphicBufferProducer> &bufferProducer) {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700320 sp<AMessage> msg = new AMessage(kWhatSetVideoSurface, this);
Andreas Huber57a339c2012-12-03 11:18:00 -0800321
Andy McFadden8ba01022012-12-18 09:46:54 -0800322 if (bufferProducer == NULL) {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700323 msg->setObject("surface", NULL);
Andreas Huber57a339c2012-12-03 11:18:00 -0800324 } else {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700325 msg->setObject("surface", new Surface(bufferProducer, true /* controlledByApp */));
Andreas Huber57a339c2012-12-03 11:18:00 -0800326 }
327
Andreas Huberf9334412010-12-15 15:17:42 -0800328 msg->post();
329}
330
331void NuPlayer::setAudioSink(const sp<MediaPlayerBase::AudioSink> &sink) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800332 sp<AMessage> msg = new AMessage(kWhatSetAudioSink, this);
Andreas Huberf9334412010-12-15 15:17:42 -0800333 msg->setObject("sink", sink);
334 msg->post();
335}
336
337void NuPlayer::start() {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800338 (new AMessage(kWhatStart, this))->post();
Andreas Huberf9334412010-12-15 15:17:42 -0800339}
340
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700341status_t NuPlayer::setPlaybackSettings(const AudioPlaybackRate &rate) {
342 // do some cursory validation of the settings here. audio modes are
343 // only validated when set on the audiosink.
344 if ((rate.mSpeed != 0.f && rate.mSpeed < AUDIO_TIMESTRETCH_SPEED_MIN)
345 || rate.mSpeed > AUDIO_TIMESTRETCH_SPEED_MAX
346 || rate.mPitch < AUDIO_TIMESTRETCH_SPEED_MIN
347 || rate.mPitch > AUDIO_TIMESTRETCH_SPEED_MAX) {
348 return BAD_VALUE;
349 }
350 sp<AMessage> msg = new AMessage(kWhatConfigPlayback, this);
351 writeToAMessage(msg, rate);
352 sp<AMessage> response;
353 status_t err = msg->postAndAwaitResponse(&response);
354 if (err == OK && response != NULL) {
355 CHECK(response->findInt32("err", &err));
356 }
357 return err;
358}
359
360status_t NuPlayer::getPlaybackSettings(AudioPlaybackRate *rate /* nonnull */) {
361 sp<AMessage> msg = new AMessage(kWhatGetPlaybackSettings, this);
362 sp<AMessage> response;
363 status_t err = msg->postAndAwaitResponse(&response);
364 if (err == OK && response != NULL) {
365 CHECK(response->findInt32("err", &err));
366 if (err == OK) {
367 readFromAMessage(response, rate);
368 }
369 }
370 return err;
371}
372
373status_t NuPlayer::setSyncSettings(const AVSyncSettings &sync, float videoFpsHint) {
374 sp<AMessage> msg = new AMessage(kWhatConfigSync, this);
375 writeToAMessage(msg, sync, videoFpsHint);
376 sp<AMessage> response;
377 status_t err = msg->postAndAwaitResponse(&response);
378 if (err == OK && response != NULL) {
379 CHECK(response->findInt32("err", &err));
380 }
381 return err;
382}
383
384status_t NuPlayer::getSyncSettings(
385 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
386 sp<AMessage> msg = new AMessage(kWhatGetSyncSettings, this);
387 sp<AMessage> response;
388 status_t err = msg->postAndAwaitResponse(&response);
389 if (err == OK && response != NULL) {
390 CHECK(response->findInt32("err", &err));
391 if (err == OK) {
392 readFromAMessage(response, sync, videoFps);
393 }
394 }
395 return err;
Wei Jia98160162015-02-04 17:01:11 -0800396}
397
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800398void NuPlayer::pause() {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800399 (new AMessage(kWhatPause, this))->post();
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800400}
401
Andreas Huber1aef2112011-01-04 14:01:29 -0800402void NuPlayer::resetAsync() {
Wei Jiac45a4b22016-04-15 15:30:23 -0700403 sp<Source> source;
404 {
405 Mutex::Autolock autoLock(mSourceLock);
406 source = mSource;
407 }
408
409 if (source != NULL) {
Chong Zhang48296b72014-09-14 14:28:45 -0700410 // During a reset, the data source might be unresponsive already, we need to
411 // disconnect explicitly so that reads exit promptly.
412 // We can't queue the disconnect request to the looper, as it might be
413 // queued behind a stuck read and never gets processed.
414 // Doing a disconnect outside the looper to allows the pending reads to exit
415 // (either successfully or with error).
Wei Jiac45a4b22016-04-15 15:30:23 -0700416 source->disconnect();
Chong Zhang48296b72014-09-14 14:28:45 -0700417 }
418
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800419 (new AMessage(kWhatReset, this))->post();
Andreas Huber1aef2112011-01-04 14:01:29 -0800420}
421
Wei Jiae427abf2014-09-22 15:21:11 -0700422void NuPlayer::seekToAsync(int64_t seekTimeUs, bool needNotify) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -0800423 sp<AMessage> msg = new AMessage(kWhatSeek, this);
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800424 msg->setInt64("seekTimeUs", seekTimeUs);
Wei Jiae427abf2014-09-22 15:21:11 -0700425 msg->setInt32("needNotify", needNotify);
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800426 msg->post();
427}
428
Andreas Huber53df1a42010-12-22 10:03:04 -0800429
Chong Zhang404fced2014-06-11 14:45:31 -0700430void NuPlayer::writeTrackInfo(
431 Parcel* reply, const sp<AMessage> format) const {
Marco Nelissenc367ca12015-09-15 09:51:59 -0700432 if (format == NULL) {
433 ALOGE("NULL format");
434 return;
435 }
Chong Zhang404fced2014-06-11 14:45:31 -0700436 int32_t trackType;
Marco Nelissen9436e482015-09-15 10:21:53 -0700437 if (!format->findInt32("type", &trackType)) {
Marco Nelissenc367ca12015-09-15 09:51:59 -0700438 ALOGE("no track type");
439 return;
440 }
Chong Zhang404fced2014-06-11 14:45:31 -0700441
Robert Shih755106e2015-04-30 14:36:45 -0700442 AString mime;
Robert Shih2e3a4252015-05-06 10:21:15 -0700443 if (!format->findString("mime", &mime)) {
444 // Java MediaPlayer only uses mimetype for subtitle and timedtext tracks.
445 // If we can't find the mimetype here it means that we wouldn't be needing
446 // the mimetype on the Java end. We still write a placeholder mime to keep the
447 // (de)serialization logic simple.
448 if (trackType == MEDIA_TRACK_TYPE_AUDIO) {
449 mime = "audio/";
450 } else if (trackType == MEDIA_TRACK_TYPE_VIDEO) {
451 mime = "video/";
452 } else {
Marco Nelissenc367ca12015-09-15 09:51:59 -0700453 ALOGE("unknown track type: %d", trackType);
454 return;
Robert Shih2e3a4252015-05-06 10:21:15 -0700455 }
456 }
Robert Shih755106e2015-04-30 14:36:45 -0700457
Chong Zhang404fced2014-06-11 14:45:31 -0700458 AString lang;
Marco Nelissen9436e482015-09-15 10:21:53 -0700459 if (!format->findString("language", &lang)) {
Marco Nelissenc367ca12015-09-15 09:51:59 -0700460 ALOGE("no language");
461 return;
462 }
Chong Zhang404fced2014-06-11 14:45:31 -0700463
464 reply->writeInt32(2); // write something non-zero
465 reply->writeInt32(trackType);
Robert Shih755106e2015-04-30 14:36:45 -0700466 reply->writeString16(String16(mime.c_str()));
Chong Zhang404fced2014-06-11 14:45:31 -0700467 reply->writeString16(String16(lang.c_str()));
468
469 if (trackType == MEDIA_TRACK_TYPE_SUBTITLE) {
Chong Zhang404fced2014-06-11 14:45:31 -0700470 int32_t isAuto, isDefault, isForced;
471 CHECK(format->findInt32("auto", &isAuto));
472 CHECK(format->findInt32("default", &isDefault));
473 CHECK(format->findInt32("forced", &isForced));
474
Chong Zhang404fced2014-06-11 14:45:31 -0700475 reply->writeInt32(isAuto);
476 reply->writeInt32(isDefault);
477 reply->writeInt32(isForced);
478 }
479}
480
Andreas Huberf9334412010-12-15 15:17:42 -0800481void NuPlayer::onMessageReceived(const sp<AMessage> &msg) {
482 switch (msg->what()) {
483 case kWhatSetDataSource:
484 {
Steve Block3856b092011-10-20 11:56:00 +0100485 ALOGV("kWhatSetDataSource");
Andreas Huberf9334412010-12-15 15:17:42 -0800486
487 CHECK(mSource == NULL);
488
Chong Zhang3de157d2014-08-05 20:54:44 -0700489 status_t err = OK;
Andreas Huber5bc087c2010-12-23 10:27:40 -0800490 sp<RefBase> obj;
491 CHECK(msg->findObject("source", &obj));
Chong Zhang3de157d2014-08-05 20:54:44 -0700492 if (obj != NULL) {
Wei Jiac45a4b22016-04-15 15:30:23 -0700493 Mutex::Autolock autoLock(mSourceLock);
Chong Zhang3de157d2014-08-05 20:54:44 -0700494 mSource = static_cast<Source *>(obj.get());
Chong Zhang3de157d2014-08-05 20:54:44 -0700495 } else {
496 err = UNKNOWN_ERROR;
497 }
Andreas Huber9575c962013-02-05 13:59:56 -0800498
499 CHECK(mDriver != NULL);
500 sp<NuPlayerDriver> driver = mDriver.promote();
501 if (driver != NULL) {
Chong Zhang3de157d2014-08-05 20:54:44 -0700502 driver->notifySetDataSourceCompleted(err);
Andreas Huber9575c962013-02-05 13:59:56 -0800503 }
504 break;
505 }
506
507 case kWhatPrepare:
508 {
509 mSource->prepareAsync();
Andreas Huberf9334412010-12-15 15:17:42 -0800510 break;
511 }
512
Chong Zhangdcb89b32013-08-06 09:44:47 -0700513 case kWhatGetTrackInfo:
514 {
Lajos Molnar3f274362015-03-05 14:35:41 -0800515 sp<AReplyToken> replyID;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700516 CHECK(msg->senderAwaitsResponse(&replyID));
517
Chong Zhang404fced2014-06-11 14:45:31 -0700518 Parcel* reply;
519 CHECK(msg->findPointer("reply", (void**)&reply));
520
521 size_t inbandTracks = 0;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700522 if (mSource != NULL) {
Chong Zhang404fced2014-06-11 14:45:31 -0700523 inbandTracks = mSource->getTrackCount();
524 }
525
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700526 size_t ccTracks = 0;
527 if (mCCDecoder != NULL) {
528 ccTracks = mCCDecoder->getTrackCount();
529 }
530
Chong Zhang404fced2014-06-11 14:45:31 -0700531 // total track count
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700532 reply->writeInt32(inbandTracks + ccTracks);
Chong Zhang404fced2014-06-11 14:45:31 -0700533
534 // write inband tracks
535 for (size_t i = 0; i < inbandTracks; ++i) {
536 writeTrackInfo(reply, mSource->getTrackInfo(i));
Chong Zhangdcb89b32013-08-06 09:44:47 -0700537 }
538
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700539 // write CC track
540 for (size_t i = 0; i < ccTracks; ++i) {
541 writeTrackInfo(reply, mCCDecoder->getTrackInfo(i));
542 }
543
Chong Zhangdcb89b32013-08-06 09:44:47 -0700544 sp<AMessage> response = new AMessage;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700545 response->postReply(replyID);
546 break;
547 }
548
Robert Shih7c4f0d72014-07-09 18:53:31 -0700549 case kWhatGetSelectedTrack:
550 {
551 status_t err = INVALID_OPERATION;
552 if (mSource != NULL) {
553 err = OK;
554
555 int32_t type32;
556 CHECK(msg->findInt32("type", (int32_t*)&type32));
557 media_track_type type = (media_track_type)type32;
558 ssize_t selectedTrack = mSource->getSelectedTrack(type);
559
560 Parcel* reply;
561 CHECK(msg->findPointer("reply", (void**)&reply));
562 reply->writeInt32(selectedTrack);
563 }
564
565 sp<AMessage> response = new AMessage;
566 response->setInt32("err", err);
567
Lajos Molnar3f274362015-03-05 14:35:41 -0800568 sp<AReplyToken> replyID;
Robert Shih7c4f0d72014-07-09 18:53:31 -0700569 CHECK(msg->senderAwaitsResponse(&replyID));
570 response->postReply(replyID);
571 break;
572 }
573
Chong Zhangdcb89b32013-08-06 09:44:47 -0700574 case kWhatSelectTrack:
575 {
Lajos Molnar3f274362015-03-05 14:35:41 -0800576 sp<AReplyToken> replyID;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700577 CHECK(msg->senderAwaitsResponse(&replyID));
578
Chong Zhang404fced2014-06-11 14:45:31 -0700579 size_t trackIndex;
580 int32_t select;
Robert Shih6ffb1fd2014-10-29 16:24:32 -0700581 int64_t timeUs;
Chong Zhang404fced2014-06-11 14:45:31 -0700582 CHECK(msg->findSize("trackIndex", &trackIndex));
583 CHECK(msg->findInt32("select", &select));
Robert Shih6ffb1fd2014-10-29 16:24:32 -0700584 CHECK(msg->findInt64("timeUs", &timeUs));
Chong Zhang404fced2014-06-11 14:45:31 -0700585
Chong Zhangdcb89b32013-08-06 09:44:47 -0700586 status_t err = INVALID_OPERATION;
Chong Zhang404fced2014-06-11 14:45:31 -0700587
588 size_t inbandTracks = 0;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700589 if (mSource != NULL) {
Chong Zhang404fced2014-06-11 14:45:31 -0700590 inbandTracks = mSource->getTrackCount();
591 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700592 size_t ccTracks = 0;
593 if (mCCDecoder != NULL) {
594 ccTracks = mCCDecoder->getTrackCount();
595 }
Chong Zhang404fced2014-06-11 14:45:31 -0700596
597 if (trackIndex < inbandTracks) {
Robert Shih6ffb1fd2014-10-29 16:24:32 -0700598 err = mSource->selectTrack(trackIndex, select, timeUs);
Robert Shihd3b0bbb2014-07-23 15:00:25 -0700599
600 if (!select && err == OK) {
601 int32_t type;
602 sp<AMessage> info = mSource->getTrackInfo(trackIndex);
603 if (info != NULL
604 && info->findInt32("type", &type)
605 && type == MEDIA_TRACK_TYPE_TIMEDTEXT) {
606 ++mTimedTextGeneration;
607 }
608 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700609 } else {
610 trackIndex -= inbandTracks;
611
612 if (trackIndex < ccTracks) {
613 err = mCCDecoder->selectTrack(trackIndex, select);
614 }
Chong Zhangdcb89b32013-08-06 09:44:47 -0700615 }
616
617 sp<AMessage> response = new AMessage;
618 response->setInt32("err", err);
619
620 response->postReply(replyID);
621 break;
622 }
623
Andreas Huberb7c8e912012-11-27 15:02:53 -0800624 case kWhatPollDuration:
625 {
626 int32_t generation;
627 CHECK(msg->findInt32("generation", &generation));
628
629 if (generation != mPollDurationGeneration) {
630 // stale
631 break;
632 }
633
634 int64_t durationUs;
635 if (mDriver != NULL && mSource->getDuration(&durationUs) == OK) {
636 sp<NuPlayerDriver> driver = mDriver.promote();
637 if (driver != NULL) {
638 driver->notifyDuration(durationUs);
639 }
640 }
641
642 msg->post(1000000ll); // poll again in a second.
643 break;
644 }
645
Lajos Molnar1de1e252015-04-30 18:18:34 -0700646 case kWhatSetVideoSurface:
Andreas Huberf9334412010-12-15 15:17:42 -0800647 {
Andreas Huberf9334412010-12-15 15:17:42 -0800648
649 sp<RefBase> obj;
Lajos Molnar1de1e252015-04-30 18:18:34 -0700650 CHECK(msg->findObject("surface", &obj));
651 sp<Surface> surface = static_cast<Surface *>(obj.get());
Lajos Molnara81c6222015-07-10 19:17:45 -0700652
653 ALOGD("onSetVideoSurface(%p, %s video decoder)",
654 surface.get(),
Wei Jia6b7d2ed2015-08-10 15:11:54 -0700655 (mSource != NULL && mStarted && mSource->getFormat(false /* audio */) != NULL
Lajos Molnara81c6222015-07-10 19:17:45 -0700656 && mVideoDecoder != NULL) ? "have" : "no");
657
Wei Jia6b7d2ed2015-08-10 15:11:54 -0700658 // Need to check mStarted before calling mSource->getFormat because NuPlayer might
659 // be in preparing state and it could take long time.
660 // When mStarted is true, mSource must have been set.
661 if (mSource == NULL || !mStarted || mSource->getFormat(false /* audio */) == NULL
Lajos Molnara81c6222015-07-10 19:17:45 -0700662 // NOTE: mVideoDecoder's mSurface is always non-null
663 || (mVideoDecoder != NULL && mVideoDecoder->setVideoSurface(surface) == OK)) {
Lajos Molnar1de1e252015-04-30 18:18:34 -0700664 performSetSurface(surface);
Wei Jiafef808d2014-10-31 17:57:05 -0700665 break;
666 }
667
668 mDeferredActions.push_back(
669 new FlushDecoderAction(FLUSH_CMD_FLUSH /* audio */,
670 FLUSH_CMD_SHUTDOWN /* video */));
671
Lajos Molnar1de1e252015-04-30 18:18:34 -0700672 mDeferredActions.push_back(new SetSurfaceAction(surface));
James Dong0d268a32012-08-31 12:18:27 -0700673
Wei Jiac6e58412015-07-10 18:04:55 -0700674 if (obj != NULL || mAudioDecoder != NULL) {
Wei Jiafef808d2014-10-31 17:57:05 -0700675 if (mStarted) {
Andy Hung73535852014-09-05 11:42:58 -0700676 // Issue a seek to refresh the video screen only if started otherwise
677 // the extractor may not yet be started and will assert.
678 // If the video decoder is not set (perhaps audio only in this case)
679 // do not perform a seek as it is not needed.
Ronghua Wua73d9e02014-10-08 15:13:29 -0700680 int64_t currentPositionUs = 0;
681 if (getCurrentPosition(&currentPositionUs) == OK) {
682 mDeferredActions.push_back(
Wei Jia29840802015-05-15 17:11:38 -0700683 new SeekAction(currentPositionUs));
Ronghua Wua73d9e02014-10-08 15:13:29 -0700684 }
Andy Hung73535852014-09-05 11:42:58 -0700685 }
Wei Jiaac428aa2014-09-02 19:01:34 -0700686
Andreas Huber57a339c2012-12-03 11:18:00 -0800687 // If there is a new surface texture, instantiate decoders
688 // again if possible.
689 mDeferredActions.push_back(
690 new SimpleAction(&NuPlayer::performScanSources));
691 }
692
Chong Zhangf8d71772014-11-26 15:08:34 -0800693 // After a flush without shutdown, decoder is paused.
694 // Don't resume it until source seek is done, otherwise it could
Chong Zhang7137ec72014-11-12 16:41:05 -0800695 // start pulling stale data too soon.
696 mDeferredActions.push_back(
Chong Zhangf8d71772014-11-26 15:08:34 -0800697 new ResumeDecoderAction(false /* needNotify */));
Chong Zhang7137ec72014-11-12 16:41:05 -0800698
Andreas Huber57a339c2012-12-03 11:18:00 -0800699 processDeferredActions();
Andreas Huberf9334412010-12-15 15:17:42 -0800700 break;
701 }
702
703 case kWhatSetAudioSink:
704 {
Steve Block3856b092011-10-20 11:56:00 +0100705 ALOGV("kWhatSetAudioSink");
Andreas Huberf9334412010-12-15 15:17:42 -0800706
707 sp<RefBase> obj;
708 CHECK(msg->findObject("sink", &obj));
709
710 mAudioSink = static_cast<MediaPlayerBase::AudioSink *>(obj.get());
711 break;
712 }
713
714 case kWhatStart:
715 {
Steve Block3856b092011-10-20 11:56:00 +0100716 ALOGV("kWhatStart");
Wei Jia94211742014-10-28 17:09:06 -0700717 if (mStarted) {
Chong Zhang8a048332015-05-06 15:16:28 -0700718 // do not resume yet if the source is still buffering
719 if (!mPausedForBuffering) {
720 onResume();
721 }
Wei Jia94211742014-10-28 17:09:06 -0700722 } else {
723 onStart();
Lajos Molnar09524832014-07-17 14:29:51 -0700724 }
Chong Zhangefbb6192015-01-30 17:13:27 -0800725 mPausedByClient = false;
Andreas Huberf9334412010-12-15 15:17:42 -0800726 break;
727 }
728
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700729 case kWhatConfigPlayback:
Wei Jia98160162015-02-04 17:01:11 -0800730 {
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700731 sp<AReplyToken> replyID;
732 CHECK(msg->senderAwaitsResponse(&replyID));
733 AudioPlaybackRate rate /* sanitized */;
734 readFromAMessage(msg, &rate);
735 status_t err = OK;
Wei Jia98160162015-02-04 17:01:11 -0800736 if (mRenderer != NULL) {
Wei Jiabf70feb2016-02-19 15:47:16 -0800737 // AudioSink allows only 1.f and 0.f for offload mode.
738 // For other speed, switch to non-offload mode.
739 if (mOffloadAudio && ((rate.mSpeed != 0.f && rate.mSpeed != 1.f)
740 || rate.mPitch != 1.f)) {
741 int64_t currentPositionUs;
742 if (getCurrentPosition(&currentPositionUs) != OK) {
743 currentPositionUs = mPreviousSeekTimeUs;
744 }
745
746 // Set mPlaybackSettings so that the new audio decoder can
747 // be created correctly.
748 mPlaybackSettings = rate;
749 if (!mPaused) {
750 mRenderer->pause();
751 }
Wei Jia5031b2f2016-02-25 11:19:31 -0800752 restartAudio(
Wei Jiabf70feb2016-02-19 15:47:16 -0800753 currentPositionUs, true /* forceNonOffload */,
754 true /* needsToCreateAudioDecoder */);
755 if (!mPaused) {
756 mRenderer->resume();
757 }
758 }
759
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700760 err = mRenderer->setPlaybackSettings(rate);
761 }
762 if (err == OK) {
763 if (rate.mSpeed == 0.f) {
764 onPause();
Wei Jia351ce872016-02-10 13:21:59 -0800765 mPausedByClient = true;
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700766 // save all other settings (using non-paused speed)
767 // so we can restore them on start
768 AudioPlaybackRate newRate = rate;
769 newRate.mSpeed = mPlaybackSettings.mSpeed;
770 mPlaybackSettings = newRate;
771 } else { /* rate.mSpeed != 0.f */
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700772 mPlaybackSettings = rate;
Wei Jia8a092d32016-06-03 14:57:24 -0700773 if (mStarted) {
774 // do not resume yet if the source is still buffering
775 if (!mPausedForBuffering) {
776 onResume();
777 }
778 } else if (mPrepared) {
779 onStart();
780 }
781
782 mPausedByClient = false;
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700783 }
Wei Jia98160162015-02-04 17:01:11 -0800784 }
Ronghua Wu8db88132015-04-22 13:51:35 -0700785
786 if (mVideoDecoder != NULL) {
Ronghua Wuc8a70d32015-04-29 16:26:34 -0700787 float rate = getFrameRate();
788 if (rate > 0) {
Ronghua Wu8db88132015-04-22 13:51:35 -0700789 sp<AMessage> params = new AMessage();
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700790 params->setFloat("operating-rate", rate * mPlaybackSettings.mSpeed);
Ronghua Wu8db88132015-04-22 13:51:35 -0700791 mVideoDecoder->setParameters(params);
792 }
793 }
794
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700795 sp<AMessage> response = new AMessage;
796 response->setInt32("err", err);
797 response->postReply(replyID);
798 break;
799 }
800
801 case kWhatGetPlaybackSettings:
802 {
803 sp<AReplyToken> replyID;
804 CHECK(msg->senderAwaitsResponse(&replyID));
805 AudioPlaybackRate rate = mPlaybackSettings;
806 status_t err = OK;
807 if (mRenderer != NULL) {
808 err = mRenderer->getPlaybackSettings(&rate);
809 }
810 if (err == OK) {
811 // get playback settings used by renderer, as it may be
812 // slightly off due to audiosink not taking small changes.
813 mPlaybackSettings = rate;
814 if (mPaused) {
815 rate.mSpeed = 0.f;
816 }
817 }
818 sp<AMessage> response = new AMessage;
819 if (err == OK) {
820 writeToAMessage(response, rate);
821 }
822 response->setInt32("err", err);
823 response->postReply(replyID);
824 break;
825 }
826
827 case kWhatConfigSync:
828 {
829 sp<AReplyToken> replyID;
830 CHECK(msg->senderAwaitsResponse(&replyID));
831
832 ALOGV("kWhatConfigSync");
833 AVSyncSettings sync;
834 float videoFpsHint;
835 readFromAMessage(msg, &sync, &videoFpsHint);
836 status_t err = OK;
837 if (mRenderer != NULL) {
838 err = mRenderer->setSyncSettings(sync, videoFpsHint);
839 }
840 if (err == OK) {
841 mSyncSettings = sync;
842 mVideoFpsHint = videoFpsHint;
843 }
844 sp<AMessage> response = new AMessage;
845 response->setInt32("err", err);
846 response->postReply(replyID);
847 break;
848 }
849
850 case kWhatGetSyncSettings:
851 {
852 sp<AReplyToken> replyID;
853 CHECK(msg->senderAwaitsResponse(&replyID));
854 AVSyncSettings sync = mSyncSettings;
855 float videoFps = mVideoFpsHint;
856 status_t err = OK;
857 if (mRenderer != NULL) {
858 err = mRenderer->getSyncSettings(&sync, &videoFps);
859 if (err == OK) {
860 mSyncSettings = sync;
861 mVideoFpsHint = videoFps;
862 }
863 }
864 sp<AMessage> response = new AMessage;
865 if (err == OK) {
866 writeToAMessage(response, sync, videoFps);
867 }
868 response->setInt32("err", err);
869 response->postReply(replyID);
Wei Jia98160162015-02-04 17:01:11 -0800870 break;
871 }
872
Andreas Huberf9334412010-12-15 15:17:42 -0800873 case kWhatScanSources:
874 {
Andreas Huber1aef2112011-01-04 14:01:29 -0800875 int32_t generation;
876 CHECK(msg->findInt32("generation", &generation));
877 if (generation != mScanSourcesGeneration) {
878 // Drop obsolete msg.
879 break;
880 }
881
Andreas Huber5bc087c2010-12-23 10:27:40 -0800882 mScanSourcesPending = false;
883
Steve Block3856b092011-10-20 11:56:00 +0100884 ALOGV("scanning sources haveAudio=%d, haveVideo=%d",
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800885 mAudioDecoder != NULL, mVideoDecoder != NULL);
886
Andreas Huberb7c8e912012-11-27 15:02:53 -0800887 bool mHadAnySourcesBefore =
888 (mAudioDecoder != NULL) || (mVideoDecoder != NULL);
Robert Shih7350b052015-10-01 15:50:14 -0700889 bool rescan = false;
Andreas Huberb7c8e912012-11-27 15:02:53 -0800890
Andy Hung282a7e32014-08-14 15:56:34 -0700891 // initialize video before audio because successful initialization of
892 // video may change deep buffer mode of audio.
Lajos Molnar1de1e252015-04-30 18:18:34 -0700893 if (mSurface != NULL) {
Robert Shih7350b052015-10-01 15:50:14 -0700894 if (instantiateDecoder(false, &mVideoDecoder) == -EWOULDBLOCK) {
895 rescan = true;
896 }
Haynes Mathew George5d246ef2012-07-09 10:36:57 -0700897 }
Andreas Huberf9334412010-12-15 15:17:42 -0800898
Ronghua Wua10fd232014-11-06 16:15:20 -0800899 // Don't try to re-open audio sink if there's an existing decoder.
900 if (mAudioSink != NULL && mAudioDecoder == NULL) {
Robert Shih7350b052015-10-01 15:50:14 -0700901 if (instantiateDecoder(true, &mAudioDecoder) == -EWOULDBLOCK) {
902 rescan = true;
903 }
Andreas Huberf9334412010-12-15 15:17:42 -0800904 }
905
Andreas Huberb7c8e912012-11-27 15:02:53 -0800906 if (!mHadAnySourcesBefore
907 && (mAudioDecoder != NULL || mVideoDecoder != NULL)) {
908 // This is the first time we've found anything playable.
909
Andreas Huber9575c962013-02-05 13:59:56 -0800910 if (mSourceFlags & Source::FLAG_DYNAMIC_DURATION) {
Andreas Huberb7c8e912012-11-27 15:02:53 -0800911 schedulePollDuration();
912 }
913 }
914
Andreas Hubereac68ba2011-09-27 12:12:25 -0700915 status_t err;
916 if ((err = mSource->feedMoreTSData()) != OK) {
Andreas Huber1aef2112011-01-04 14:01:29 -0800917 if (mAudioDecoder == NULL && mVideoDecoder == NULL) {
918 // We're not currently decoding anything (no audio or
919 // video tracks found) and we just ran out of input data.
Andreas Hubereac68ba2011-09-27 12:12:25 -0700920
921 if (err == ERROR_END_OF_STREAM) {
922 notifyListener(MEDIA_PLAYBACK_COMPLETE, 0, 0);
923 } else {
924 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
925 }
Andreas Huber1aef2112011-01-04 14:01:29 -0800926 }
Andreas Huberf9334412010-12-15 15:17:42 -0800927 break;
928 }
929
Robert Shih7350b052015-10-01 15:50:14 -0700930 if (rescan) {
Andreas Huberf9334412010-12-15 15:17:42 -0800931 msg->post(100000ll);
Andreas Huber5bc087c2010-12-23 10:27:40 -0800932 mScanSourcesPending = true;
Andreas Huberf9334412010-12-15 15:17:42 -0800933 }
934 break;
935 }
936
937 case kWhatVideoNotify:
938 case kWhatAudioNotify:
939 {
940 bool audio = msg->what() == kWhatAudioNotify;
941
Wei Jia88703c32014-08-06 11:24:07 -0700942 int32_t currentDecoderGeneration =
943 (audio? mAudioDecoderGeneration : mVideoDecoderGeneration);
944 int32_t requesterGeneration = currentDecoderGeneration - 1;
945 CHECK(msg->findInt32("generation", &requesterGeneration));
946
947 if (requesterGeneration != currentDecoderGeneration) {
948 ALOGV("got message from old %s decoder, generation(%d:%d)",
949 audio ? "audio" : "video", requesterGeneration,
950 currentDecoderGeneration);
951 sp<AMessage> reply;
952 if (!(msg->findMessage("reply", &reply))) {
953 return;
954 }
955
956 reply->setInt32("err", INFO_DISCONTINUITY);
957 reply->post();
958 return;
959 }
960
Andreas Huberf9334412010-12-15 15:17:42 -0800961 int32_t what;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800962 CHECK(msg->findInt32("what", &what));
Andreas Huberf9334412010-12-15 15:17:42 -0800963
Chong Zhang7137ec72014-11-12 16:41:05 -0800964 if (what == DecoderBase::kWhatInputDiscontinuity) {
965 int32_t formatChange;
966 CHECK(msg->findInt32("formatChange", &formatChange));
Andreas Huberf9334412010-12-15 15:17:42 -0800967
Chong Zhang7137ec72014-11-12 16:41:05 -0800968 ALOGV("%s discontinuity: formatChange %d",
969 audio ? "audio" : "video", formatChange);
970
971 if (formatChange) {
972 mDeferredActions.push_back(
973 new FlushDecoderAction(
974 audio ? FLUSH_CMD_SHUTDOWN : FLUSH_CMD_NONE,
975 audio ? FLUSH_CMD_NONE : FLUSH_CMD_SHUTDOWN));
Andreas Huberf9334412010-12-15 15:17:42 -0800976 }
Chong Zhang7137ec72014-11-12 16:41:05 -0800977
978 mDeferredActions.push_back(
979 new SimpleAction(
980 &NuPlayer::performScanSources));
981
982 processDeferredActions();
983 } else if (what == DecoderBase::kWhatEOS) {
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700984 int32_t err;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800985 CHECK(msg->findInt32("err", &err));
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700986
987 if (err == ERROR_END_OF_STREAM) {
Steve Block3856b092011-10-20 11:56:00 +0100988 ALOGV("got %s decoder EOS", audio ? "audio" : "video");
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700989 } else {
Steve Block3856b092011-10-20 11:56:00 +0100990 ALOGV("got %s decoder EOS w/ error %d",
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700991 audio ? "audio" : "video",
992 err);
993 }
994
995 mRenderer->queueEOS(audio, err);
Chong Zhang7137ec72014-11-12 16:41:05 -0800996 } else if (what == DecoderBase::kWhatFlushCompleted) {
Steve Block3856b092011-10-20 11:56:00 +0100997 ALOGV("decoder %s flush completed", audio ? "audio" : "video");
Andreas Huberf9334412010-12-15 15:17:42 -0800998
Andy Hung8d121d42014-10-03 09:53:53 -0700999 handleFlushComplete(audio, true /* isDecoder */);
Andreas Huber3831a062010-12-21 10:22:33 -08001000 finishFlushIfPossible();
Chong Zhang7137ec72014-11-12 16:41:05 -08001001 } else if (what == DecoderBase::kWhatVideoSizeChanged) {
Lajos Molnar1cd13982014-01-17 15:12:51 -08001002 sp<AMessage> format;
1003 CHECK(msg->findMessage("format", &format));
1004
Wei Jiac6cfd702014-11-11 16:33:20 -08001005 sp<AMessage> inputFormat =
1006 mSource->getFormat(false /* audio */);
Andreas Huber3831a062010-12-21 10:22:33 -08001007
Wei Jiac6cfd702014-11-11 16:33:20 -08001008 updateVideoSize(inputFormat, format);
Chong Zhang7137ec72014-11-12 16:41:05 -08001009 } else if (what == DecoderBase::kWhatShutdownCompleted) {
Steve Block3856b092011-10-20 11:56:00 +01001010 ALOGV("%s shutdown completed", audio ? "audio" : "video");
Andreas Huber3831a062010-12-21 10:22:33 -08001011 if (audio) {
1012 mAudioDecoder.clear();
Wei Jia57568df2014-09-22 10:16:29 -07001013 ++mAudioDecoderGeneration;
Andreas Huber3831a062010-12-21 10:22:33 -08001014
1015 CHECK_EQ((int)mFlushingAudio, (int)SHUTTING_DOWN_DECODER);
1016 mFlushingAudio = SHUT_DOWN;
1017 } else {
1018 mVideoDecoder.clear();
Wei Jia57568df2014-09-22 10:16:29 -07001019 ++mVideoDecoderGeneration;
Andreas Huber3831a062010-12-21 10:22:33 -08001020
1021 CHECK_EQ((int)mFlushingVideo, (int)SHUTTING_DOWN_DECODER);
1022 mFlushingVideo = SHUT_DOWN;
1023 }
1024
1025 finishFlushIfPossible();
Chong Zhangf8d71772014-11-26 15:08:34 -08001026 } else if (what == DecoderBase::kWhatResumeCompleted) {
1027 finishResume();
Chong Zhang7137ec72014-11-12 16:41:05 -08001028 } else if (what == DecoderBase::kWhatError) {
Chong Zhangf4c0a942014-08-11 15:14:10 -07001029 status_t err;
Andy Hung2abde2c2014-09-30 14:40:32 -07001030 if (!msg->findInt32("err", &err) || err == OK) {
Chong Zhangf4c0a942014-08-11 15:14:10 -07001031 err = UNKNOWN_ERROR;
1032 }
Andy Hungcf31f1e2014-09-23 14:59:01 -07001033
Andy Hung2abde2c2014-09-30 14:40:32 -07001034 // Decoder errors can be due to Source (e.g. from streaming),
1035 // or from decoding corrupted bitstreams, or from other decoder
1036 // MediaCodec operations (e.g. from an ongoing reset or seek).
Andy Hung202bce12014-12-03 11:47:36 -08001037 // They may also be due to openAudioSink failure at
1038 // decoder start or after a format change.
Andy Hung2abde2c2014-09-30 14:40:32 -07001039 //
1040 // We try to gracefully shut down the affected decoder if possible,
1041 // rather than trying to force the shutdown with something
1042 // similar to performReset(). This method can lead to a hang
1043 // if MediaCodec functions block after an error, but they should
1044 // typically return INVALID_OPERATION instead of blocking.
1045
1046 FlushStatus *flushing = audio ? &mFlushingAudio : &mFlushingVideo;
1047 ALOGE("received error(%#x) from %s decoder, flushing(%d), now shutting down",
1048 err, audio ? "audio" : "video", *flushing);
1049
1050 switch (*flushing) {
1051 case NONE:
1052 mDeferredActions.push_back(
Wei Jiafef808d2014-10-31 17:57:05 -07001053 new FlushDecoderAction(
1054 audio ? FLUSH_CMD_SHUTDOWN : FLUSH_CMD_NONE,
1055 audio ? FLUSH_CMD_NONE : FLUSH_CMD_SHUTDOWN));
Andy Hung2abde2c2014-09-30 14:40:32 -07001056 processDeferredActions();
1057 break;
1058 case FLUSHING_DECODER:
1059 *flushing = FLUSHING_DECODER_SHUTDOWN; // initiate shutdown after flush.
1060 break; // Wait for flush to complete.
1061 case FLUSHING_DECODER_SHUTDOWN:
1062 break; // Wait for flush to complete.
1063 case SHUTTING_DOWN_DECODER:
1064 break; // Wait for shutdown to complete.
1065 case FLUSHED:
1066 // Widevine source reads must stop before releasing the video decoder.
1067 if (!audio && mSource != NULL && mSourceFlags & Source::FLAG_SECURE) {
1068 mSource->stop();
Robert Shih0c61a0d2015-07-06 15:09:10 -07001069 mSourceStarted = false;
Andy Hung2abde2c2014-09-30 14:40:32 -07001070 }
1071 getDecoder(audio)->initiateShutdown(); // In the middle of a seek.
1072 *flushing = SHUTTING_DOWN_DECODER; // Shut down.
1073 break;
1074 case SHUT_DOWN:
1075 finishFlushIfPossible(); // Should not occur.
1076 break; // Finish anyways.
Marco Nelissen9e2b7912014-08-18 16:13:03 -07001077 }
Andy Hung2abde2c2014-09-30 14:40:32 -07001078 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
Lajos Molnar1cd13982014-01-17 15:12:51 -08001079 } else {
1080 ALOGV("Unhandled decoder notification %d '%c%c%c%c'.",
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001081 what,
1082 what >> 24,
1083 (what >> 16) & 0xff,
1084 (what >> 8) & 0xff,
1085 what & 0xff);
Andreas Huberf9334412010-12-15 15:17:42 -08001086 }
1087
1088 break;
1089 }
1090
1091 case kWhatRendererNotify:
1092 {
Wei Jia57568df2014-09-22 10:16:29 -07001093 int32_t requesterGeneration = mRendererGeneration - 1;
1094 CHECK(msg->findInt32("generation", &requesterGeneration));
1095 if (requesterGeneration != mRendererGeneration) {
1096 ALOGV("got message from old renderer, generation(%d:%d)",
1097 requesterGeneration, mRendererGeneration);
1098 return;
1099 }
1100
Andreas Huberf9334412010-12-15 15:17:42 -08001101 int32_t what;
1102 CHECK(msg->findInt32("what", &what));
1103
1104 if (what == Renderer::kWhatEOS) {
1105 int32_t audio;
1106 CHECK(msg->findInt32("audio", &audio));
1107
Andreas Huberc92fd242011-08-16 13:48:44 -07001108 int32_t finalResult;
1109 CHECK(msg->findInt32("finalResult", &finalResult));
1110
Andreas Huberf9334412010-12-15 15:17:42 -08001111 if (audio) {
1112 mAudioEOS = true;
1113 } else {
1114 mVideoEOS = true;
1115 }
1116
Andreas Huberc92fd242011-08-16 13:48:44 -07001117 if (finalResult == ERROR_END_OF_STREAM) {
Steve Block3856b092011-10-20 11:56:00 +01001118 ALOGV("reached %s EOS", audio ? "audio" : "video");
Andreas Huberc92fd242011-08-16 13:48:44 -07001119 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001120 ALOGE("%s track encountered an error (%d)",
Andreas Huberc92fd242011-08-16 13:48:44 -07001121 audio ? "audio" : "video", finalResult);
1122
1123 notifyListener(
1124 MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, finalResult);
1125 }
Andreas Huberf9334412010-12-15 15:17:42 -08001126
1127 if ((mAudioEOS || mAudioDecoder == NULL)
1128 && (mVideoEOS || mVideoDecoder == NULL)) {
1129 notifyListener(MEDIA_PLAYBACK_COMPLETE, 0, 0);
1130 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001131 } else if (what == Renderer::kWhatFlushComplete) {
Andreas Huberf9334412010-12-15 15:17:42 -08001132 int32_t audio;
1133 CHECK(msg->findInt32("audio", &audio));
1134
Wei Jia3261f0d2015-10-08 13:58:33 -07001135 if (audio) {
1136 mAudioEOS = false;
1137 } else {
1138 mVideoEOS = false;
1139 }
1140
Steve Block3856b092011-10-20 11:56:00 +01001141 ALOGV("renderer %s flush completed.", audio ? "audio" : "video");
Wei Jiada4252f2015-07-14 18:15:28 -07001142 if (audio && (mFlushingAudio == NONE || mFlushingAudio == FLUSHED
1143 || mFlushingAudio == SHUT_DOWN)) {
1144 // Flush has been handled by tear down.
1145 break;
1146 }
Andy Hung8d121d42014-10-03 09:53:53 -07001147 handleFlushComplete(audio, false /* isDecoder */);
1148 finishFlushIfPossible();
James Dongf57b4ea2012-07-20 13:38:36 -07001149 } else if (what == Renderer::kWhatVideoRenderingStart) {
1150 notifyListener(MEDIA_INFO, MEDIA_INFO_RENDERING_START, 0);
Lajos Molnarcbaffcf2013-08-14 18:30:38 -07001151 } else if (what == Renderer::kWhatMediaRenderingStart) {
1152 ALOGV("media rendering started");
1153 notifyListener(MEDIA_STARTED, 0, 0);
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001154 } else if (what == Renderer::kWhatAudioTearDown) {
Ronghua Wu08529172014-10-02 16:55:52 -07001155 int32_t reason;
1156 CHECK(msg->findInt32("reason", &reason));
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001157 ALOGV("Tear down audio with reason %d.", reason);
Wei Jia8456ddd2016-04-22 14:46:43 -07001158 if (reason == Renderer::kDueToTimeout && !(mPaused && mOffloadAudio)) {
1159 // TimeoutWhenPaused is only for offload mode.
1160 ALOGW("Receive a stale message for teardown.");
1161 break;
1162 }
Wei Jiada4252f2015-07-14 18:15:28 -07001163 int64_t positionUs;
Robert Shih1a5c8592015-08-04 18:07:44 -07001164 if (!msg->findInt64("positionUs", &positionUs)) {
1165 positionUs = mPreviousSeekTimeUs;
1166 }
Ronghua Wufaeb0f22015-05-21 12:20:21 -07001167
Wei Jia5031b2f2016-02-25 11:19:31 -08001168 restartAudio(
Wei Jiaa05f1e32016-03-25 16:31:22 -07001169 positionUs, reason == Renderer::kForceNonOffload /* forceNonOffload */,
1170 reason != Renderer::kDueToTimeout /* needsToCreateAudioDecoder */);
Andreas Huberf9334412010-12-15 15:17:42 -08001171 }
1172 break;
1173 }
1174
1175 case kWhatMoreDataQueued:
1176 {
1177 break;
1178 }
1179
Andreas Huber1aef2112011-01-04 14:01:29 -08001180 case kWhatReset:
1181 {
Steve Block3856b092011-10-20 11:56:00 +01001182 ALOGV("kWhatReset");
Andreas Huber1aef2112011-01-04 14:01:29 -08001183
Ronghua Wu64c2d172015-10-07 16:52:19 -07001184 mResetting = true;
1185
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001186 mDeferredActions.push_back(
Wei Jiafef808d2014-10-31 17:57:05 -07001187 new FlushDecoderAction(
1188 FLUSH_CMD_SHUTDOWN /* audio */,
1189 FLUSH_CMD_SHUTDOWN /* video */));
Andreas Huberb7c8e912012-11-27 15:02:53 -08001190
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001191 mDeferredActions.push_back(
1192 new SimpleAction(&NuPlayer::performReset));
Andreas Huberb58ce9f2011-11-28 16:27:35 -08001193
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001194 processDeferredActions();
Andreas Huber1aef2112011-01-04 14:01:29 -08001195 break;
1196 }
1197
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001198 case kWhatSeek:
1199 {
1200 int64_t seekTimeUs;
Wei Jiae427abf2014-09-22 15:21:11 -07001201 int32_t needNotify;
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001202 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
Wei Jiae427abf2014-09-22 15:21:11 -07001203 CHECK(msg->findInt32("needNotify", &needNotify));
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001204
Wei Jiae427abf2014-09-22 15:21:11 -07001205 ALOGV("kWhatSeek seekTimeUs=%lld us, needNotify=%d",
Lajos Molnar6d339f12015-04-17 16:15:53 -07001206 (long long)seekTimeUs, needNotify);
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001207
Wei Jia1061c9c2015-05-19 16:02:17 -07001208 if (!mStarted) {
1209 // Seek before the player is started. In order to preview video,
1210 // need to start the player and pause it. This branch is called
1211 // only once if needed. After the player is started, any seek
1212 // operation will go through normal path.
Robert Shih0c61a0d2015-07-06 15:09:10 -07001213 // Audio-only cases are handled separately.
Wei Jia1061c9c2015-05-19 16:02:17 -07001214 onStart(seekTimeUs);
Robert Shih0c61a0d2015-07-06 15:09:10 -07001215 if (mStarted) {
1216 onPause();
1217 mPausedByClient = true;
1218 }
Wei Jia1061c9c2015-05-19 16:02:17 -07001219 if (needNotify) {
1220 notifyDriverSeekComplete();
1221 }
1222 break;
1223 }
1224
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001225 mDeferredActions.push_back(
Wei Jiafef808d2014-10-31 17:57:05 -07001226 new FlushDecoderAction(FLUSH_CMD_FLUSH /* audio */,
1227 FLUSH_CMD_FLUSH /* video */));
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001228
Wei Jiae427abf2014-09-22 15:21:11 -07001229 mDeferredActions.push_back(
Wei Jia29840802015-05-15 17:11:38 -07001230 new SeekAction(seekTimeUs));
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001231
Chong Zhangf8d71772014-11-26 15:08:34 -08001232 // After a flush without shutdown, decoder is paused.
1233 // Don't resume it until source seek is done, otherwise it could
Chong Zhang7137ec72014-11-12 16:41:05 -08001234 // start pulling stale data too soon.
1235 mDeferredActions.push_back(
Chong Zhangf8d71772014-11-26 15:08:34 -08001236 new ResumeDecoderAction(needNotify));
Chong Zhang7137ec72014-11-12 16:41:05 -08001237
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001238 processDeferredActions();
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001239 break;
1240 }
1241
Andreas Huberb4082222011-01-20 15:23:04 -08001242 case kWhatPause:
1243 {
Chong Zhangefbb6192015-01-30 17:13:27 -08001244 onPause();
1245 mPausedByClient = true;
Andreas Huberb4082222011-01-20 15:23:04 -08001246 break;
1247 }
1248
Andreas Huberb5f25f02013-02-05 10:14:26 -08001249 case kWhatSourceNotify:
1250 {
Andreas Huber9575c962013-02-05 13:59:56 -08001251 onSourceNotify(msg);
Andreas Huberb5f25f02013-02-05 10:14:26 -08001252 break;
1253 }
1254
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001255 case kWhatClosedCaptionNotify:
1256 {
1257 onClosedCaptionNotify(msg);
1258 break;
1259 }
1260
Andreas Huberf9334412010-12-15 15:17:42 -08001261 default:
1262 TRESPASS();
1263 break;
1264 }
1265}
1266
Wei Jia94211742014-10-28 17:09:06 -07001267void NuPlayer::onResume() {
Ronghua Wu64c2d172015-10-07 16:52:19 -07001268 if (!mPaused || mResetting) {
1269 ALOGD_IF(mResetting, "resetting, onResume discarded");
Chong Zhangefbb6192015-01-30 17:13:27 -08001270 return;
1271 }
1272 mPaused = false;
Wei Jia94211742014-10-28 17:09:06 -07001273 if (mSource != NULL) {
1274 mSource->resume();
1275 } else {
1276 ALOGW("resume called when source is gone or not set");
1277 }
1278 // |mAudioDecoder| may have been released due to the pause timeout, so re-create it if
1279 // needed.
1280 if (audioDecoderStillNeeded() && mAudioDecoder == NULL) {
1281 instantiateDecoder(true /* audio */, &mAudioDecoder);
1282 }
1283 if (mRenderer != NULL) {
1284 mRenderer->resume();
1285 } else {
1286 ALOGW("resume called when renderer is gone or not set");
1287 }
1288}
1289
Lajos Molnarfcd3e942015-03-31 10:06:48 -07001290status_t NuPlayer::onInstantiateSecureDecoders() {
1291 status_t err;
1292 if (!(mSourceFlags & Source::FLAG_SECURE)) {
1293 return BAD_TYPE;
1294 }
1295
1296 if (mRenderer != NULL) {
1297 ALOGE("renderer should not be set when instantiating secure decoders");
1298 return UNKNOWN_ERROR;
1299 }
1300
1301 // TRICKY: We rely on mRenderer being null, so that decoder does not start requesting
1302 // data on instantiation.
Lajos Molnar1de1e252015-04-30 18:18:34 -07001303 if (mSurface != NULL) {
Lajos Molnarfcd3e942015-03-31 10:06:48 -07001304 err = instantiateDecoder(false, &mVideoDecoder);
1305 if (err != OK) {
1306 return err;
1307 }
1308 }
1309
1310 if (mAudioSink != NULL) {
1311 err = instantiateDecoder(true, &mAudioDecoder);
1312 if (err != OK) {
1313 return err;
1314 }
1315 }
1316 return OK;
1317}
1318
Wei Jia1061c9c2015-05-19 16:02:17 -07001319void NuPlayer::onStart(int64_t startPositionUs) {
Robert Shih0c61a0d2015-07-06 15:09:10 -07001320 if (!mSourceStarted) {
1321 mSourceStarted = true;
1322 mSource->start();
1323 }
1324 if (startPositionUs > 0) {
1325 performSeek(startPositionUs);
1326 if (mSource->getFormat(false /* audio */) == NULL) {
1327 return;
1328 }
1329 }
1330
Wei Jia94211742014-10-28 17:09:06 -07001331 mOffloadAudio = false;
1332 mAudioEOS = false;
1333 mVideoEOS = false;
Wei Jia94211742014-10-28 17:09:06 -07001334 mStarted = true;
Wei Jiafe8fe7d2016-06-08 10:29:25 -07001335 mPaused = false;
Wei Jia94211742014-10-28 17:09:06 -07001336
Wei Jia94211742014-10-28 17:09:06 -07001337 uint32_t flags = 0;
1338
1339 if (mSource->isRealTime()) {
1340 flags |= Renderer::FLAG_REAL_TIME;
1341 }
1342
1343 sp<MetaData> audioMeta = mSource->getFormatMeta(true /* audio */);
Andy Hung12a84132015-10-20 16:09:21 -07001344 ALOGV_IF(audioMeta == NULL, "no metadata for audio source"); // video only stream
Wei Jia94211742014-10-28 17:09:06 -07001345 audio_stream_type_t streamType = AUDIO_STREAM_MUSIC;
1346 if (mAudioSink != NULL) {
1347 streamType = mAudioSink->getAudioStreamType();
1348 }
1349
1350 sp<AMessage> videoFormat = mSource->getFormat(false /* audio */);
1351
1352 mOffloadAudio =
Wei Jiabf70feb2016-02-19 15:47:16 -08001353 canOffloadStream(audioMeta, (videoFormat != NULL), mSource->isStreaming(), streamType)
1354 && (mPlaybackSettings.mSpeed == 1.f && mPlaybackSettings.mPitch == 1.f);
Wei Jia94211742014-10-28 17:09:06 -07001355 if (mOffloadAudio) {
1356 flags |= Renderer::FLAG_OFFLOAD_AUDIO;
1357 }
1358
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001359 sp<AMessage> notify = new AMessage(kWhatRendererNotify, this);
Wei Jia94211742014-10-28 17:09:06 -07001360 ++mRendererGeneration;
1361 notify->setInt32("generation", mRendererGeneration);
1362 mRenderer = new Renderer(mAudioSink, notify, flags);
Wei Jia94211742014-10-28 17:09:06 -07001363 mRendererLooper = new ALooper;
1364 mRendererLooper->setName("NuPlayerRenderer");
1365 mRendererLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
1366 mRendererLooper->registerHandler(mRenderer);
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001367
1368 status_t err = mRenderer->setPlaybackSettings(mPlaybackSettings);
1369 if (err != OK) {
1370 mSource->stop();
Robert Shih0c61a0d2015-07-06 15:09:10 -07001371 mSourceStarted = false;
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001372 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
1373 return;
Wei Jiac8206ff2015-03-04 13:59:37 -08001374 }
Wei Jia94211742014-10-28 17:09:06 -07001375
Ronghua Wuc8a70d32015-04-29 16:26:34 -07001376 float rate = getFrameRate();
1377 if (rate > 0) {
Wei Jia94211742014-10-28 17:09:06 -07001378 mRenderer->setVideoFrameRate(rate);
1379 }
1380
Wei Jiac6cfd702014-11-11 16:33:20 -08001381 if (mVideoDecoder != NULL) {
1382 mVideoDecoder->setRenderer(mRenderer);
1383 }
1384 if (mAudioDecoder != NULL) {
1385 mAudioDecoder->setRenderer(mRenderer);
1386 }
1387
Wei Jia94211742014-10-28 17:09:06 -07001388 postScanSources();
1389}
1390
Chong Zhangefbb6192015-01-30 17:13:27 -08001391void NuPlayer::onPause() {
1392 if (mPaused) {
1393 return;
1394 }
1395 mPaused = true;
1396 if (mSource != NULL) {
1397 mSource->pause();
1398 } else {
1399 ALOGW("pause called when source is gone or not set");
1400 }
1401 if (mRenderer != NULL) {
1402 mRenderer->pause();
1403 } else {
1404 ALOGW("pause called when renderer is gone or not set");
1405 }
1406}
1407
Ronghua Wud7988b12014-10-03 15:19:10 -07001408bool NuPlayer::audioDecoderStillNeeded() {
1409 // Audio decoder is no longer needed if it's in shut/shutting down status.
1410 return ((mFlushingAudio != SHUT_DOWN) && (mFlushingAudio != SHUTTING_DOWN_DECODER));
1411}
1412
Andy Hung8d121d42014-10-03 09:53:53 -07001413void NuPlayer::handleFlushComplete(bool audio, bool isDecoder) {
1414 // We wait for both the decoder flush and the renderer flush to complete
1415 // before entering either the FLUSHED or the SHUTTING_DOWN_DECODER state.
1416
1417 mFlushComplete[audio][isDecoder] = true;
1418 if (!mFlushComplete[audio][!isDecoder]) {
1419 return;
1420 }
1421
1422 FlushStatus *state = audio ? &mFlushingAudio : &mFlushingVideo;
1423 switch (*state) {
1424 case FLUSHING_DECODER:
1425 {
1426 *state = FLUSHED;
Andy Hung8d121d42014-10-03 09:53:53 -07001427 break;
1428 }
1429
1430 case FLUSHING_DECODER_SHUTDOWN:
1431 {
1432 *state = SHUTTING_DOWN_DECODER;
1433
1434 ALOGV("initiating %s decoder shutdown", audio ? "audio" : "video");
1435 if (!audio) {
Andy Hung8d121d42014-10-03 09:53:53 -07001436 // Widevine source reads must stop before releasing the video decoder.
1437 if (mSource != NULL && mSourceFlags & Source::FLAG_SECURE) {
1438 mSource->stop();
Robert Shih0c61a0d2015-07-06 15:09:10 -07001439 mSourceStarted = false;
Andy Hung8d121d42014-10-03 09:53:53 -07001440 }
1441 }
1442 getDecoder(audio)->initiateShutdown();
1443 break;
1444 }
1445
1446 default:
1447 // decoder flush completes only occur in a flushing state.
1448 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1449 break;
1450 }
1451}
1452
Andreas Huber3831a062010-12-21 10:22:33 -08001453void NuPlayer::finishFlushIfPossible() {
Wei Jia53904f32014-07-29 10:22:53 -07001454 if (mFlushingAudio != NONE && mFlushingAudio != FLUSHED
1455 && mFlushingAudio != SHUT_DOWN) {
Andreas Huber3831a062010-12-21 10:22:33 -08001456 return;
1457 }
1458
Wei Jia53904f32014-07-29 10:22:53 -07001459 if (mFlushingVideo != NONE && mFlushingVideo != FLUSHED
1460 && mFlushingVideo != SHUT_DOWN) {
Andreas Huber3831a062010-12-21 10:22:33 -08001461 return;
1462 }
1463
Steve Block3856b092011-10-20 11:56:00 +01001464 ALOGV("both audio and video are flushed now.");
Andreas Huber3831a062010-12-21 10:22:33 -08001465
Andreas Huber3831a062010-12-21 10:22:33 -08001466 mFlushingAudio = NONE;
1467 mFlushingVideo = NONE;
Andreas Huber3831a062010-12-21 10:22:33 -08001468
Andy Hung8d121d42014-10-03 09:53:53 -07001469 clearFlushComplete();
1470
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001471 processDeferredActions();
Andreas Huber1aef2112011-01-04 14:01:29 -08001472}
1473
1474void NuPlayer::postScanSources() {
1475 if (mScanSourcesPending) {
1476 return;
1477 }
1478
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001479 sp<AMessage> msg = new AMessage(kWhatScanSources, this);
Andreas Huber1aef2112011-01-04 14:01:29 -08001480 msg->setInt32("generation", mScanSourcesGeneration);
1481 msg->post();
1482
1483 mScanSourcesPending = true;
1484}
1485
Wei Jia41cd4632016-05-13 10:53:30 -07001486void NuPlayer::tryOpenAudioSinkForOffload(
1487 const sp<AMessage> &format, const sp<MetaData> &audioMeta, bool hasVideo) {
Andy Hung202bce12014-12-03 11:47:36 -08001488 // Note: This is called early in NuPlayer to determine whether offloading
1489 // is possible; otherwise the decoders call the renderer openAudioSink directly.
Andy Hung282a7e32014-08-14 15:56:34 -07001490
Andy Hung202bce12014-12-03 11:47:36 -08001491 status_t err = mRenderer->openAudioSink(
1492 format, true /* offloadOnly */, hasVideo, AUDIO_OUTPUT_FLAG_NONE, &mOffloadAudio);
1493 if (err != OK) {
1494 // Any failure we turn off mOffloadAudio.
1495 mOffloadAudio = false;
1496 } else if (mOffloadAudio) {
Chong Zhang3b9eb1f2014-10-15 17:05:08 -07001497 sendMetaDataToHal(mAudioSink, audioMeta);
Andy Hung282a7e32014-08-14 15:56:34 -07001498 }
1499}
1500
1501void NuPlayer::closeAudioSink() {
Chong Zhang3b9eb1f2014-10-15 17:05:08 -07001502 mRenderer->closeAudioSink();
Andy Hung282a7e32014-08-14 15:56:34 -07001503}
1504
Wei Jia5031b2f2016-02-25 11:19:31 -08001505void NuPlayer::restartAudio(
Wei Jiabf70feb2016-02-19 15:47:16 -08001506 int64_t currentPositionUs, bool forceNonOffload, bool needsToCreateAudioDecoder) {
Wei Jiaa05f1e32016-03-25 16:31:22 -07001507 if (mAudioDecoder != NULL) {
1508 mAudioDecoder->pause();
1509 mAudioDecoder.clear();
1510 ++mAudioDecoderGeneration;
1511 }
Wei Jiabf70feb2016-02-19 15:47:16 -08001512 if (mFlushingAudio == FLUSHING_DECODER) {
1513 mFlushComplete[1 /* audio */][1 /* isDecoder */] = true;
1514 mFlushingAudio = FLUSHED;
1515 finishFlushIfPossible();
1516 } else if (mFlushingAudio == FLUSHING_DECODER_SHUTDOWN
1517 || mFlushingAudio == SHUTTING_DOWN_DECODER) {
1518 mFlushComplete[1 /* audio */][1 /* isDecoder */] = true;
1519 mFlushingAudio = SHUT_DOWN;
1520 finishFlushIfPossible();
1521 needsToCreateAudioDecoder = false;
1522 }
1523 if (mRenderer == NULL) {
1524 return;
1525 }
1526 closeAudioSink();
1527 mRenderer->flush(true /* audio */, false /* notifyComplete */);
1528 if (mVideoDecoder != NULL) {
1529 mRenderer->flush(false /* audio */, false /* notifyComplete */);
1530 }
1531
1532 performSeek(currentPositionUs);
1533
1534 if (forceNonOffload) {
1535 mRenderer->signalDisableOffloadAudio();
1536 mOffloadAudio = false;
1537 }
1538 if (needsToCreateAudioDecoder) {
Wei Jiaa05f1e32016-03-25 16:31:22 -07001539 instantiateDecoder(true /* audio */, &mAudioDecoder, !forceNonOffload);
Wei Jiabf70feb2016-02-19 15:47:16 -08001540 }
1541}
1542
Wei Jia41cd4632016-05-13 10:53:30 -07001543void NuPlayer::determineAudioModeChange(const sp<AMessage> &audioFormat) {
Wei Jiae4d18c72015-07-13 17:58:11 -07001544 if (mSource == NULL || mAudioSink == NULL) {
1545 return;
1546 }
1547
1548 if (mRenderer == NULL) {
1549 ALOGW("No renderer can be used to determine audio mode. Use non-offload for safety.");
1550 mOffloadAudio = false;
1551 return;
1552 }
1553
1554 sp<MetaData> audioMeta = mSource->getFormatMeta(true /* audio */);
1555 sp<AMessage> videoFormat = mSource->getFormat(false /* audio */);
1556 audio_stream_type_t streamType = mAudioSink->getAudioStreamType();
1557 const bool hasVideo = (videoFormat != NULL);
1558 const bool canOffload = canOffloadStream(
Wei Jiabf70feb2016-02-19 15:47:16 -08001559 audioMeta, hasVideo, mSource->isStreaming(), streamType)
1560 && (mPlaybackSettings.mSpeed == 1.f && mPlaybackSettings.mPitch == 1.f);
Wei Jiae4d18c72015-07-13 17:58:11 -07001561 if (canOffload) {
1562 if (!mOffloadAudio) {
1563 mRenderer->signalEnableOffloadAudio();
1564 }
1565 // open audio sink early under offload mode.
Wei Jia41cd4632016-05-13 10:53:30 -07001566 tryOpenAudioSinkForOffload(audioFormat, audioMeta, hasVideo);
Wei Jiae4d18c72015-07-13 17:58:11 -07001567 } else {
Robert Shihe1d70192015-07-23 17:54:13 -07001568 if (mOffloadAudio) {
1569 mRenderer->signalDisableOffloadAudio();
1570 mOffloadAudio = false;
1571 }
Wei Jiae4d18c72015-07-13 17:58:11 -07001572 }
1573}
1574
Wei Jiaa05f1e32016-03-25 16:31:22 -07001575status_t NuPlayer::instantiateDecoder(
1576 bool audio, sp<DecoderBase> *decoder, bool checkAudioModeChange) {
Wei Jia566da802015-08-27 13:59:30 -07001577 // The audio decoder could be cleared by tear down. If still in shut down
1578 // process, no need to create a new audio decoder.
1579 if (*decoder != NULL || (audio && mFlushingAudio == SHUT_DOWN)) {
Andreas Huberf9334412010-12-15 15:17:42 -08001580 return OK;
1581 }
1582
Andreas Huber84066782011-08-16 09:34:26 -07001583 sp<AMessage> format = mSource->getFormat(audio);
Andreas Huberf9334412010-12-15 15:17:42 -08001584
Andreas Huber84066782011-08-16 09:34:26 -07001585 if (format == NULL) {
Robert Shih7350b052015-10-01 15:50:14 -07001586 return UNKNOWN_ERROR;
1587 } else {
1588 status_t err;
1589 if (format->findInt32("err", &err) && err) {
1590 return err;
1591 }
Andreas Huberf9334412010-12-15 15:17:42 -08001592 }
1593
Ronghua Wu8db88132015-04-22 13:51:35 -07001594 format->setInt32("priority", 0 /* realtime */);
1595
Andreas Huber3fe62152011-09-16 15:09:22 -07001596 if (!audio) {
Andreas Huber84066782011-08-16 09:34:26 -07001597 AString mime;
1598 CHECK(format->findString("mime", &mime));
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001599
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001600 sp<AMessage> ccNotify = new AMessage(kWhatClosedCaptionNotify, this);
Chong Zhang341ab6e2015-02-04 13:37:18 -08001601 if (mCCDecoder == NULL) {
1602 mCCDecoder = new CCDecoder(ccNotify);
1603 }
Lajos Molnar09524832014-07-17 14:29:51 -07001604
1605 if (mSourceFlags & Source::FLAG_SECURE) {
1606 format->setInt32("secure", true);
1607 }
Chong Zhang17134602015-01-07 16:14:34 -08001608
1609 if (mSourceFlags & Source::FLAG_PROTECTED) {
1610 format->setInt32("protected", true);
1611 }
Ronghua Wu8db88132015-04-22 13:51:35 -07001612
Ronghua Wuc8a70d32015-04-29 16:26:34 -07001613 float rate = getFrameRate();
1614 if (rate > 0) {
Lajos Molnar3a474aa2015-04-24 17:10:07 -07001615 format->setFloat("operating-rate", rate * mPlaybackSettings.mSpeed);
Ronghua Wu8db88132015-04-22 13:51:35 -07001616 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001617 }
1618
Wei Jiabc2fb722014-07-08 16:37:57 -07001619 if (audio) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001620 sp<AMessage> notify = new AMessage(kWhatAudioNotify, this);
Wei Jia88703c32014-08-06 11:24:07 -07001621 ++mAudioDecoderGeneration;
1622 notify->setInt32("generation", mAudioDecoderGeneration);
1623
Wei Jiaa05f1e32016-03-25 16:31:22 -07001624 if (checkAudioModeChange) {
Wei Jia41cd4632016-05-13 10:53:30 -07001625 determineAudioModeChange(format);
Wei Jiaa05f1e32016-03-25 16:31:22 -07001626 }
Wei Jiabc2fb722014-07-08 16:37:57 -07001627 if (mOffloadAudio) {
Wei Jia14532f22015-12-29 11:28:15 -08001628 mSource->setOffloadAudio(true /* offload */);
1629
Haynes Mathew George8b635332015-03-30 17:59:47 -07001630 const bool hasVideo = (mSource->getFormat(false /*audio */) != NULL);
1631 format->setInt32("has-video", hasVideo);
Wei Jiac6cfd702014-11-11 16:33:20 -08001632 *decoder = new DecoderPassThrough(notify, mSource, mRenderer);
Wei Jiabc2fb722014-07-08 16:37:57 -07001633 } else {
Wei Jia14532f22015-12-29 11:28:15 -08001634 mSource->setOffloadAudio(false /* offload */);
1635
Ronghua Wu68845c12015-07-21 09:50:48 -07001636 *decoder = new Decoder(notify, mSource, mPID, mRenderer);
Wei Jiabc2fb722014-07-08 16:37:57 -07001637 }
1638 } else {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001639 sp<AMessage> notify = new AMessage(kWhatVideoNotify, this);
Wei Jia88703c32014-08-06 11:24:07 -07001640 ++mVideoDecoderGeneration;
1641 notify->setInt32("generation", mVideoDecoderGeneration);
1642
Chong Zhang7137ec72014-11-12 16:41:05 -08001643 *decoder = new Decoder(
Ronghua Wu68845c12015-07-21 09:50:48 -07001644 notify, mSource, mPID, mRenderer, mSurface, mCCDecoder);
Lajos Molnard9fd6312014-11-06 11:00:00 -08001645
1646 // enable FRC if high-quality AV sync is requested, even if not
Lajos Molnar1de1e252015-04-30 18:18:34 -07001647 // directly queuing to display, as this will even improve textureview
Lajos Molnard9fd6312014-11-06 11:00:00 -08001648 // playback.
1649 {
1650 char value[PROPERTY_VALUE_MAX];
1651 if (property_get("persist.sys.media.avsync", value, NULL) &&
1652 (!strcmp("1", value) || !strcasecmp("true", value))) {
1653 format->setInt32("auto-frc", 1);
1654 }
1655 }
Wei Jiabc2fb722014-07-08 16:37:57 -07001656 }
Lajos Molnar1cd13982014-01-17 15:12:51 -08001657 (*decoder)->init();
Andreas Huber84066782011-08-16 09:34:26 -07001658 (*decoder)->configure(format);
Andreas Huberf9334412010-12-15 15:17:42 -08001659
Lajos Molnar09524832014-07-17 14:29:51 -07001660 // allocate buffers to decrypt widevine source buffers
1661 if (!audio && (mSourceFlags & Source::FLAG_SECURE)) {
1662 Vector<sp<ABuffer> > inputBufs;
1663 CHECK_EQ((*decoder)->getInputBuffers(&inputBufs), (status_t)OK);
1664
1665 Vector<MediaBuffer *> mediaBufs;
1666 for (size_t i = 0; i < inputBufs.size(); i++) {
1667 const sp<ABuffer> &buffer = inputBufs[i];
1668 MediaBuffer *mbuf = new MediaBuffer(buffer->data(), buffer->size());
1669 mediaBufs.push(mbuf);
1670 }
1671
1672 status_t err = mSource->setBuffers(audio, mediaBufs);
1673 if (err != OK) {
1674 for (size_t i = 0; i < mediaBufs.size(); ++i) {
1675 mediaBufs[i]->release();
1676 }
1677 mediaBufs.clear();
1678 ALOGE("Secure source didn't support secure mediaBufs.");
1679 return err;
1680 }
1681 }
Andreas Huberf9334412010-12-15 15:17:42 -08001682 return OK;
1683}
1684
Chong Zhangced1c2f2014-08-08 15:22:35 -07001685void NuPlayer::updateVideoSize(
1686 const sp<AMessage> &inputFormat,
1687 const sp<AMessage> &outputFormat) {
1688 if (inputFormat == NULL) {
1689 ALOGW("Unknown video size, reporting 0x0!");
1690 notifyListener(MEDIA_SET_VIDEO_SIZE, 0, 0);
1691 return;
1692 }
1693
1694 int32_t displayWidth, displayHeight;
Chong Zhangced1c2f2014-08-08 15:22:35 -07001695 if (outputFormat != NULL) {
1696 int32_t width, height;
1697 CHECK(outputFormat->findInt32("width", &width));
1698 CHECK(outputFormat->findInt32("height", &height));
1699
1700 int32_t cropLeft, cropTop, cropRight, cropBottom;
1701 CHECK(outputFormat->findRect(
1702 "crop",
1703 &cropLeft, &cropTop, &cropRight, &cropBottom));
1704
1705 displayWidth = cropRight - cropLeft + 1;
1706 displayHeight = cropBottom - cropTop + 1;
1707
1708 ALOGV("Video output format changed to %d x %d "
1709 "(crop: %d x %d @ (%d, %d))",
1710 width, height,
1711 displayWidth,
1712 displayHeight,
1713 cropLeft, cropTop);
1714 } else {
1715 CHECK(inputFormat->findInt32("width", &displayWidth));
1716 CHECK(inputFormat->findInt32("height", &displayHeight));
1717
1718 ALOGV("Video input format %d x %d", displayWidth, displayHeight);
1719 }
1720
1721 // Take into account sample aspect ratio if necessary:
1722 int32_t sarWidth, sarHeight;
1723 if (inputFormat->findInt32("sar-width", &sarWidth)
1724 && inputFormat->findInt32("sar-height", &sarHeight)) {
1725 ALOGV("Sample aspect ratio %d : %d", sarWidth, sarHeight);
1726
1727 displayWidth = (displayWidth * sarWidth) / sarHeight;
1728
1729 ALOGV("display dimensions %d x %d", displayWidth, displayHeight);
1730 }
1731
1732 int32_t rotationDegrees;
1733 if (!inputFormat->findInt32("rotation-degrees", &rotationDegrees)) {
1734 rotationDegrees = 0;
1735 }
1736
1737 if (rotationDegrees == 90 || rotationDegrees == 270) {
1738 int32_t tmp = displayWidth;
1739 displayWidth = displayHeight;
1740 displayHeight = tmp;
1741 }
1742
1743 notifyListener(
1744 MEDIA_SET_VIDEO_SIZE,
1745 displayWidth,
1746 displayHeight);
1747}
1748
Chong Zhangdcb89b32013-08-06 09:44:47 -07001749void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) {
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001750 if (mDriver == NULL) {
Andreas Huberf9334412010-12-15 15:17:42 -08001751 return;
1752 }
1753
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001754 sp<NuPlayerDriver> driver = mDriver.promote();
Andreas Huberf9334412010-12-15 15:17:42 -08001755
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001756 if (driver == NULL) {
Andreas Huberf9334412010-12-15 15:17:42 -08001757 return;
1758 }
1759
Chong Zhangdcb89b32013-08-06 09:44:47 -07001760 driver->notifyListener(msg, ext1, ext2, in);
Andreas Huberf9334412010-12-15 15:17:42 -08001761}
1762
Chong Zhang7137ec72014-11-12 16:41:05 -08001763void NuPlayer::flushDecoder(bool audio, bool needShutdown) {
Andreas Huber14f76722013-01-15 09:04:18 -08001764 ALOGV("[%s] flushDecoder needShutdown=%d",
1765 audio ? "audio" : "video", needShutdown);
1766
Chong Zhang7137ec72014-11-12 16:41:05 -08001767 const sp<DecoderBase> &decoder = getDecoder(audio);
Lajos Molnar87603c02014-08-20 19:25:30 -07001768 if (decoder == NULL) {
Steve Blockdf64d152012-01-04 20:05:49 +00001769 ALOGI("flushDecoder %s without decoder present",
Andreas Huber6e3d3112011-11-28 12:36:11 -08001770 audio ? "audio" : "video");
Lajos Molnar87603c02014-08-20 19:25:30 -07001771 return;
Andreas Huber6e3d3112011-11-28 12:36:11 -08001772 }
1773
Andreas Huber1aef2112011-01-04 14:01:29 -08001774 // Make sure we don't continue to scan sources until we finish flushing.
1775 ++mScanSourcesGeneration;
Chong Zhang3b032b32015-04-17 15:49:06 -07001776 if (mScanSourcesPending) {
1777 mDeferredActions.push_back(
1778 new SimpleAction(&NuPlayer::performScanSources));
1779 mScanSourcesPending = false;
1780 }
Andreas Huber1aef2112011-01-04 14:01:29 -08001781
Chong Zhang7137ec72014-11-12 16:41:05 -08001782 decoder->signalFlush();
Andreas Huber1aef2112011-01-04 14:01:29 -08001783
1784 FlushStatus newStatus =
1785 needShutdown ? FLUSHING_DECODER_SHUTDOWN : FLUSHING_DECODER;
1786
Lajos Molnarfcd3e942015-03-31 10:06:48 -07001787 mFlushComplete[audio][false /* isDecoder */] = (mRenderer == NULL);
Andy Hung8d121d42014-10-03 09:53:53 -07001788 mFlushComplete[audio][true /* isDecoder */] = false;
Andreas Huber1aef2112011-01-04 14:01:29 -08001789 if (audio) {
Wei Jia53904f32014-07-29 10:22:53 -07001790 ALOGE_IF(mFlushingAudio != NONE,
1791 "audio flushDecoder() is called in state %d", mFlushingAudio);
Andreas Huber1aef2112011-01-04 14:01:29 -08001792 mFlushingAudio = newStatus;
Andreas Huber1aef2112011-01-04 14:01:29 -08001793 } else {
Wei Jia53904f32014-07-29 10:22:53 -07001794 ALOGE_IF(mFlushingVideo != NONE,
1795 "video flushDecoder() is called in state %d", mFlushingVideo);
Andreas Huber1aef2112011-01-04 14:01:29 -08001796 mFlushingVideo = newStatus;
Andreas Huber1aef2112011-01-04 14:01:29 -08001797 }
1798}
1799
Chong Zhangced1c2f2014-08-08 15:22:35 -07001800void NuPlayer::queueDecoderShutdown(
1801 bool audio, bool video, const sp<AMessage> &reply) {
1802 ALOGI("queueDecoderShutdown audio=%d, video=%d", audio, video);
Andreas Huber84066782011-08-16 09:34:26 -07001803
Chong Zhangced1c2f2014-08-08 15:22:35 -07001804 mDeferredActions.push_back(
Wei Jiafef808d2014-10-31 17:57:05 -07001805 new FlushDecoderAction(
1806 audio ? FLUSH_CMD_SHUTDOWN : FLUSH_CMD_NONE,
1807 video ? FLUSH_CMD_SHUTDOWN : FLUSH_CMD_NONE));
Andreas Huber84066782011-08-16 09:34:26 -07001808
Chong Zhangced1c2f2014-08-08 15:22:35 -07001809 mDeferredActions.push_back(
1810 new SimpleAction(&NuPlayer::performScanSources));
Andreas Huber84066782011-08-16 09:34:26 -07001811
Chong Zhangced1c2f2014-08-08 15:22:35 -07001812 mDeferredActions.push_back(new PostMessageAction(reply));
1813
1814 processDeferredActions();
Andreas Huber84066782011-08-16 09:34:26 -07001815}
1816
James Dong0d268a32012-08-31 12:18:27 -07001817status_t NuPlayer::setVideoScalingMode(int32_t mode) {
1818 mVideoScalingMode = mode;
Lajos Molnar1de1e252015-04-30 18:18:34 -07001819 if (mSurface != NULL) {
1820 status_t ret = native_window_set_scaling_mode(mSurface.get(), mVideoScalingMode);
James Dong0d268a32012-08-31 12:18:27 -07001821 if (ret != OK) {
1822 ALOGE("Failed to set scaling mode (%d): %s",
1823 -ret, strerror(-ret));
1824 return ret;
1825 }
1826 }
1827 return OK;
1828}
1829
Chong Zhangdcb89b32013-08-06 09:44:47 -07001830status_t NuPlayer::getTrackInfo(Parcel* reply) const {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001831 sp<AMessage> msg = new AMessage(kWhatGetTrackInfo, this);
Chong Zhangdcb89b32013-08-06 09:44:47 -07001832 msg->setPointer("reply", reply);
1833
1834 sp<AMessage> response;
1835 status_t err = msg->postAndAwaitResponse(&response);
1836 return err;
1837}
1838
Robert Shih7c4f0d72014-07-09 18:53:31 -07001839status_t NuPlayer::getSelectedTrack(int32_t type, Parcel* reply) const {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001840 sp<AMessage> msg = new AMessage(kWhatGetSelectedTrack, this);
Robert Shih7c4f0d72014-07-09 18:53:31 -07001841 msg->setPointer("reply", reply);
1842 msg->setInt32("type", type);
1843
1844 sp<AMessage> response;
1845 status_t err = msg->postAndAwaitResponse(&response);
1846 if (err == OK && response != NULL) {
1847 CHECK(response->findInt32("err", &err));
1848 }
1849 return err;
1850}
1851
Robert Shih6ffb1fd2014-10-29 16:24:32 -07001852status_t NuPlayer::selectTrack(size_t trackIndex, bool select, int64_t timeUs) {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001853 sp<AMessage> msg = new AMessage(kWhatSelectTrack, this);
Chong Zhangdcb89b32013-08-06 09:44:47 -07001854 msg->setSize("trackIndex", trackIndex);
1855 msg->setInt32("select", select);
Robert Shih6ffb1fd2014-10-29 16:24:32 -07001856 msg->setInt64("timeUs", timeUs);
Chong Zhangdcb89b32013-08-06 09:44:47 -07001857
1858 sp<AMessage> response;
1859 status_t err = msg->postAndAwaitResponse(&response);
1860
Chong Zhang404fced2014-06-11 14:45:31 -07001861 if (err != OK) {
1862 return err;
1863 }
1864
1865 if (!response->findInt32("err", &err)) {
1866 err = OK;
1867 }
1868
Chong Zhangdcb89b32013-08-06 09:44:47 -07001869 return err;
1870}
1871
Ronghua Wua73d9e02014-10-08 15:13:29 -07001872status_t NuPlayer::getCurrentPosition(int64_t *mediaUs) {
1873 sp<Renderer> renderer = mRenderer;
1874 if (renderer == NULL) {
1875 return NO_INIT;
1876 }
1877
1878 return renderer->getCurrentPosition(mediaUs);
1879}
1880
Praveen Chavane1e5d7a2015-05-19 19:09:48 -07001881void NuPlayer::getStats(Vector<sp<AMessage> > *mTrackStats) {
1882 CHECK(mTrackStats != NULL);
1883
1884 mTrackStats->clear();
1885 if (mVideoDecoder != NULL) {
1886 mTrackStats->push_back(mVideoDecoder->getStats());
1887 }
1888 if (mAudioDecoder != NULL) {
1889 mTrackStats->push_back(mAudioDecoder->getStats());
Chong Zhang7137ec72014-11-12 16:41:05 -08001890 }
Ronghua Wua73d9e02014-10-08 15:13:29 -07001891}
1892
Marco Nelissenf0b72b52014-09-16 15:43:44 -07001893sp<MetaData> NuPlayer::getFileMeta() {
1894 return mSource->getFileFormatMeta();
1895}
1896
Ronghua Wuc8a70d32015-04-29 16:26:34 -07001897float NuPlayer::getFrameRate() {
1898 sp<MetaData> meta = mSource->getFormatMeta(false /* audio */);
1899 if (meta == NULL) {
1900 return 0;
1901 }
1902 int32_t rate;
1903 if (!meta->findInt32(kKeyFrameRate, &rate)) {
1904 // fall back to try file meta
1905 sp<MetaData> fileMeta = getFileMeta();
1906 if (fileMeta == NULL) {
1907 ALOGW("source has video meta but not file meta");
1908 return -1;
1909 }
1910 int32_t fileMetaRate;
1911 if (!fileMeta->findInt32(kKeyFrameRate, &fileMetaRate)) {
1912 return -1;
1913 }
1914 return fileMetaRate;
1915 }
1916 return rate;
1917}
1918
Andreas Huberb7c8e912012-11-27 15:02:53 -08001919void NuPlayer::schedulePollDuration() {
Lajos Molnar1d15ab52015-03-04 16:46:34 -08001920 sp<AMessage> msg = new AMessage(kWhatPollDuration, this);
Andreas Huberb7c8e912012-11-27 15:02:53 -08001921 msg->setInt32("generation", mPollDurationGeneration);
1922 msg->post();
1923}
1924
1925void NuPlayer::cancelPollDuration() {
1926 ++mPollDurationGeneration;
1927}
1928
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001929void NuPlayer::processDeferredActions() {
1930 while (!mDeferredActions.empty()) {
1931 // We won't execute any deferred actions until we're no longer in
1932 // an intermediate state, i.e. one more more decoders are currently
1933 // flushing or shutting down.
1934
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001935 if (mFlushingAudio != NONE || mFlushingVideo != NONE) {
1936 // We're currently flushing, postpone the reset until that's
1937 // completed.
1938
1939 ALOGV("postponing action mFlushingAudio=%d, mFlushingVideo=%d",
1940 mFlushingAudio, mFlushingVideo);
1941
1942 break;
1943 }
1944
1945 sp<Action> action = *mDeferredActions.begin();
1946 mDeferredActions.erase(mDeferredActions.begin());
1947
1948 action->execute(this);
1949 }
1950}
1951
Wei Jia29840802015-05-15 17:11:38 -07001952void NuPlayer::performSeek(int64_t seekTimeUs) {
1953 ALOGV("performSeek seekTimeUs=%lld us (%.2f secs)",
Lajos Molnar6d339f12015-04-17 16:15:53 -07001954 (long long)seekTimeUs,
Wei Jia29840802015-05-15 17:11:38 -07001955 seekTimeUs / 1E6);
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001956
Andy Hungadf34bf2014-09-03 18:22:22 -07001957 if (mSource == NULL) {
1958 // This happens when reset occurs right before the loop mode
1959 // asynchronously seeks to the start of the stream.
1960 LOG_ALWAYS_FATAL_IF(mAudioDecoder != NULL || mVideoDecoder != NULL,
1961 "mSource is NULL and decoders not NULL audio(%p) video(%p)",
1962 mAudioDecoder.get(), mVideoDecoder.get());
1963 return;
1964 }
Robert Shih1a5c8592015-08-04 18:07:44 -07001965 mPreviousSeekTimeUs = seekTimeUs;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001966 mSource->seekTo(seekTimeUs);
Robert Shihd3b0bbb2014-07-23 15:00:25 -07001967 ++mTimedTextGeneration;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001968
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001969 // everything's flushed, continue playback.
1970}
1971
Wei Jiafef808d2014-10-31 17:57:05 -07001972void NuPlayer::performDecoderFlush(FlushCommand audio, FlushCommand video) {
1973 ALOGV("performDecoderFlush audio=%d, video=%d", audio, video);
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001974
Wei Jiafef808d2014-10-31 17:57:05 -07001975 if ((audio == FLUSH_CMD_NONE || mAudioDecoder == NULL)
1976 && (video == FLUSH_CMD_NONE || mVideoDecoder == NULL)) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001977 return;
1978 }
1979
Wei Jiafef808d2014-10-31 17:57:05 -07001980 if (audio != FLUSH_CMD_NONE && mAudioDecoder != NULL) {
1981 flushDecoder(true /* audio */, (audio == FLUSH_CMD_SHUTDOWN));
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001982 }
1983
Wei Jiafef808d2014-10-31 17:57:05 -07001984 if (video != FLUSH_CMD_NONE && mVideoDecoder != NULL) {
1985 flushDecoder(false /* audio */, (video == FLUSH_CMD_SHUTDOWN));
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001986 }
1987}
1988
1989void NuPlayer::performReset() {
1990 ALOGV("performReset");
1991
1992 CHECK(mAudioDecoder == NULL);
1993 CHECK(mVideoDecoder == NULL);
1994
1995 cancelPollDuration();
1996
1997 ++mScanSourcesGeneration;
1998 mScanSourcesPending = false;
1999
Lajos Molnar09524832014-07-17 14:29:51 -07002000 if (mRendererLooper != NULL) {
2001 if (mRenderer != NULL) {
2002 mRendererLooper->unregisterHandler(mRenderer->id());
2003 }
2004 mRendererLooper->stop();
2005 mRendererLooper.clear();
2006 }
Andreas Hubera1f8ab02012-11-30 10:53:22 -08002007 mRenderer.clear();
Wei Jia57568df2014-09-22 10:16:29 -07002008 ++mRendererGeneration;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08002009
2010 if (mSource != NULL) {
2011 mSource->stop();
Andreas Huberb5f25f02013-02-05 10:14:26 -08002012
Wei Jiac45a4b22016-04-15 15:30:23 -07002013 Mutex::Autolock autoLock(mSourceLock);
Andreas Hubera1f8ab02012-11-30 10:53:22 -08002014 mSource.clear();
2015 }
2016
2017 if (mDriver != NULL) {
2018 sp<NuPlayerDriver> driver = mDriver.promote();
2019 if (driver != NULL) {
2020 driver->notifyResetComplete();
2021 }
2022 }
Andreas Huber57a339c2012-12-03 11:18:00 -08002023
2024 mStarted = false;
Wei Jia8a092d32016-06-03 14:57:24 -07002025 mPrepared = false;
Ronghua Wu64c2d172015-10-07 16:52:19 -07002026 mResetting = false;
Robert Shih0c61a0d2015-07-06 15:09:10 -07002027 mSourceStarted = false;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08002028}
2029
2030void NuPlayer::performScanSources() {
2031 ALOGV("performScanSources");
2032
Andreas Huber57a339c2012-12-03 11:18:00 -08002033 if (!mStarted) {
2034 return;
2035 }
2036
Andreas Hubera1f8ab02012-11-30 10:53:22 -08002037 if (mAudioDecoder == NULL || mVideoDecoder == NULL) {
2038 postScanSources();
2039 }
2040}
2041
Lajos Molnar1de1e252015-04-30 18:18:34 -07002042void NuPlayer::performSetSurface(const sp<Surface> &surface) {
Andreas Huber57a339c2012-12-03 11:18:00 -08002043 ALOGV("performSetSurface");
2044
Lajos Molnar1de1e252015-04-30 18:18:34 -07002045 mSurface = surface;
Andreas Huber57a339c2012-12-03 11:18:00 -08002046
2047 // XXX - ignore error from setVideoScalingMode for now
2048 setVideoScalingMode(mVideoScalingMode);
Chong Zhang13d6faa2014-08-22 15:35:28 -07002049
2050 if (mDriver != NULL) {
2051 sp<NuPlayerDriver> driver = mDriver.promote();
2052 if (driver != NULL) {
2053 driver->notifySetSurfaceComplete();
2054 }
2055 }
Andreas Huber57a339c2012-12-03 11:18:00 -08002056}
2057
Chong Zhangf8d71772014-11-26 15:08:34 -08002058void NuPlayer::performResumeDecoders(bool needNotify) {
2059 if (needNotify) {
2060 mResumePending = true;
2061 if (mVideoDecoder == NULL) {
2062 // if audio-only, we can notify seek complete now,
2063 // as the resume operation will be relatively fast.
2064 finishResume();
2065 }
2066 }
2067
Chong Zhang7137ec72014-11-12 16:41:05 -08002068 if (mVideoDecoder != NULL) {
Chong Zhangf8d71772014-11-26 15:08:34 -08002069 // When there is continuous seek, MediaPlayer will cache the seek
2070 // position, and send down new seek request when previous seek is
2071 // complete. Let's wait for at least one video output frame before
2072 // notifying seek complete, so that the video thumbnail gets updated
2073 // when seekbar is dragged.
2074 mVideoDecoder->signalResume(needNotify);
Chong Zhang7137ec72014-11-12 16:41:05 -08002075 }
2076
2077 if (mAudioDecoder != NULL) {
Chong Zhangf8d71772014-11-26 15:08:34 -08002078 mAudioDecoder->signalResume(false /* needNotify */);
2079 }
2080}
2081
2082void NuPlayer::finishResume() {
2083 if (mResumePending) {
2084 mResumePending = false;
Wei Jia1061c9c2015-05-19 16:02:17 -07002085 notifyDriverSeekComplete();
2086 }
2087}
2088
2089void NuPlayer::notifyDriverSeekComplete() {
2090 if (mDriver != NULL) {
2091 sp<NuPlayerDriver> driver = mDriver.promote();
2092 if (driver != NULL) {
2093 driver->notifySeekComplete();
Chong Zhangf8d71772014-11-26 15:08:34 -08002094 }
Chong Zhang7137ec72014-11-12 16:41:05 -08002095 }
2096}
2097
Andreas Huber9575c962013-02-05 13:59:56 -08002098void NuPlayer::onSourceNotify(const sp<AMessage> &msg) {
2099 int32_t what;
2100 CHECK(msg->findInt32("what", &what));
2101
2102 switch (what) {
Lajos Molnarfcd3e942015-03-31 10:06:48 -07002103 case Source::kWhatInstantiateSecureDecoders:
2104 {
2105 if (mSource == NULL) {
2106 // This is a stale notification from a source that was
2107 // asynchronously preparing when the client called reset().
2108 // We handled the reset, the source is gone.
2109 break;
2110 }
2111
2112 sp<AMessage> reply;
2113 CHECK(msg->findMessage("reply", &reply));
2114 status_t err = onInstantiateSecureDecoders();
2115 reply->setInt32("err", err);
2116 reply->post();
2117 break;
2118 }
2119
Andreas Huber9575c962013-02-05 13:59:56 -08002120 case Source::kWhatPrepared:
2121 {
Andreas Huberb5f28d42013-04-25 15:11:19 -07002122 if (mSource == NULL) {
2123 // This is a stale notification from a source that was
2124 // asynchronously preparing when the client called reset().
2125 // We handled the reset, the source is gone.
2126 break;
2127 }
2128
Andreas Huberec0c5972013-02-05 14:47:13 -08002129 int32_t err;
2130 CHECK(msg->findInt32("err", &err));
2131
Lajos Molnarfcd3e942015-03-31 10:06:48 -07002132 if (err != OK) {
2133 // shut down potential secure codecs in case client never calls reset
2134 mDeferredActions.push_back(
2135 new FlushDecoderAction(FLUSH_CMD_SHUTDOWN /* audio */,
2136 FLUSH_CMD_SHUTDOWN /* video */));
2137 processDeferredActions();
Wei Jia8a092d32016-06-03 14:57:24 -07002138 } else {
2139 mPrepared = true;
Lajos Molnarfcd3e942015-03-31 10:06:48 -07002140 }
2141
Andreas Huber9575c962013-02-05 13:59:56 -08002142 sp<NuPlayerDriver> driver = mDriver.promote();
2143 if (driver != NULL) {
Marco Nelissendd114d12014-05-28 15:23:14 -07002144 // notify duration first, so that it's definitely set when
2145 // the app received the "prepare complete" callback.
2146 int64_t durationUs;
2147 if (mSource->getDuration(&durationUs) == OK) {
2148 driver->notifyDuration(durationUs);
2149 }
Andreas Huberec0c5972013-02-05 14:47:13 -08002150 driver->notifyPrepareCompleted(err);
Andreas Huber9575c962013-02-05 13:59:56 -08002151 }
Andreas Huber99759402013-04-01 14:28:31 -07002152
Andreas Huber9575c962013-02-05 13:59:56 -08002153 break;
2154 }
2155
2156 case Source::kWhatFlagsChanged:
2157 {
2158 uint32_t flags;
2159 CHECK(msg->findInt32("flags", (int32_t *)&flags));
2160
Chong Zhang4b7069d2013-09-11 12:52:43 -07002161 sp<NuPlayerDriver> driver = mDriver.promote();
2162 if (driver != NULL) {
Wei Jia895651b2014-12-10 17:31:52 -08002163 if ((flags & NuPlayer::Source::FLAG_CAN_SEEK) == 0) {
2164 driver->notifyListener(
2165 MEDIA_INFO, MEDIA_INFO_NOT_SEEKABLE, 0);
2166 }
Chong Zhang4b7069d2013-09-11 12:52:43 -07002167 driver->notifyFlagsChanged(flags);
2168 }
2169
Andreas Huber9575c962013-02-05 13:59:56 -08002170 if ((mSourceFlags & Source::FLAG_DYNAMIC_DURATION)
2171 && (!(flags & Source::FLAG_DYNAMIC_DURATION))) {
2172 cancelPollDuration();
2173 } else if (!(mSourceFlags & Source::FLAG_DYNAMIC_DURATION)
2174 && (flags & Source::FLAG_DYNAMIC_DURATION)
2175 && (mAudioDecoder != NULL || mVideoDecoder != NULL)) {
2176 schedulePollDuration();
2177 }
2178
2179 mSourceFlags = flags;
2180 break;
2181 }
2182
2183 case Source::kWhatVideoSizeChanged:
2184 {
Chong Zhangced1c2f2014-08-08 15:22:35 -07002185 sp<AMessage> format;
2186 CHECK(msg->findMessage("format", &format));
Andreas Huber9575c962013-02-05 13:59:56 -08002187
Chong Zhangced1c2f2014-08-08 15:22:35 -07002188 updateVideoSize(format);
Andreas Huber9575c962013-02-05 13:59:56 -08002189 break;
2190 }
2191
Chong Zhang2a3cc9a2014-08-21 17:48:26 -07002192 case Source::kWhatBufferingUpdate:
2193 {
2194 int32_t percentage;
2195 CHECK(msg->findInt32("percentage", &percentage));
2196
2197 notifyListener(MEDIA_BUFFERING_UPDATE, percentage, 0);
2198 break;
2199 }
2200
Chong Zhangefbb6192015-01-30 17:13:27 -08002201 case Source::kWhatPauseOnBufferingStart:
2202 {
2203 // ignore if not playing
Chong Zhang8a048332015-05-06 15:16:28 -07002204 if (mStarted) {
Chong Zhangefbb6192015-01-30 17:13:27 -08002205 ALOGI("buffer low, pausing...");
2206
Chong Zhang8a048332015-05-06 15:16:28 -07002207 mPausedForBuffering = true;
Chong Zhangefbb6192015-01-30 17:13:27 -08002208 onPause();
2209 }
Wei Jiabfe82072016-05-20 09:21:50 -07002210 notifyListener(MEDIA_INFO, MEDIA_INFO_BUFFERING_START, 0);
Roger Jönssonb50e83e2013-01-21 16:26:41 +01002211 break;
2212 }
2213
Chong Zhangefbb6192015-01-30 17:13:27 -08002214 case Source::kWhatResumeOnBufferingEnd:
2215 {
2216 // ignore if not playing
Chong Zhang8a048332015-05-06 15:16:28 -07002217 if (mStarted) {
Chong Zhangefbb6192015-01-30 17:13:27 -08002218 ALOGI("buffer ready, resuming...");
2219
Chong Zhang8a048332015-05-06 15:16:28 -07002220 mPausedForBuffering = false;
2221
2222 // do not resume yet if client didn't unpause
2223 if (!mPausedByClient) {
2224 onResume();
2225 }
Chong Zhangefbb6192015-01-30 17:13:27 -08002226 }
Wei Jia3bed45a2016-02-17 11:06:47 -08002227 notifyListener(MEDIA_INFO, MEDIA_INFO_BUFFERING_END, 0);
Roger Jönssonb50e83e2013-01-21 16:26:41 +01002228 break;
2229 }
2230
Chong Zhangefbb6192015-01-30 17:13:27 -08002231 case Source::kWhatCacheStats:
2232 {
2233 int32_t kbps;
2234 CHECK(msg->findInt32("bandwidth", &kbps));
2235
2236 notifyListener(MEDIA_INFO, MEDIA_INFO_NETWORK_BANDWIDTH, kbps);
2237 break;
2238 }
2239
Chong Zhangdcb89b32013-08-06 09:44:47 -07002240 case Source::kWhatSubtitleData:
2241 {
2242 sp<ABuffer> buffer;
2243 CHECK(msg->findBuffer("buffer", &buffer));
2244
Chong Zhang404fced2014-06-11 14:45:31 -07002245 sendSubtitleData(buffer, 0 /* baseIndex */);
Chong Zhangdcb89b32013-08-06 09:44:47 -07002246 break;
2247 }
2248
Robert Shih08528432015-04-08 09:06:54 -07002249 case Source::kWhatTimedMetaData:
2250 {
2251 sp<ABuffer> buffer;
2252 if (!msg->findBuffer("buffer", &buffer)) {
2253 notifyListener(MEDIA_INFO, MEDIA_INFO_METADATA_UPDATE, 0);
2254 } else {
2255 sendTimedMetaData(buffer);
2256 }
2257 break;
2258 }
2259
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002260 case Source::kWhatTimedTextData:
2261 {
2262 int32_t generation;
2263 if (msg->findInt32("generation", &generation)
2264 && generation != mTimedTextGeneration) {
2265 break;
2266 }
2267
2268 sp<ABuffer> buffer;
2269 CHECK(msg->findBuffer("buffer", &buffer));
2270
2271 sp<NuPlayerDriver> driver = mDriver.promote();
2272 if (driver == NULL) {
2273 break;
2274 }
2275
2276 int posMs;
2277 int64_t timeUs, posUs;
2278 driver->getCurrentPosition(&posMs);
Patrik2 Carlsson24d484b2015-01-27 16:49:45 +01002279 posUs = (int64_t) posMs * 1000ll;
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002280 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2281
2282 if (posUs < timeUs) {
2283 if (!msg->findInt32("generation", &generation)) {
2284 msg->setInt32("generation", mTimedTextGeneration);
2285 }
2286 msg->post(timeUs - posUs);
2287 } else {
2288 sendTimedTextData(buffer);
2289 }
2290 break;
2291 }
2292
Andreas Huber14f76722013-01-15 09:04:18 -08002293 case Source::kWhatQueueDecoderShutdown:
2294 {
2295 int32_t audio, video;
2296 CHECK(msg->findInt32("audio", &audio));
2297 CHECK(msg->findInt32("video", &video));
2298
2299 sp<AMessage> reply;
2300 CHECK(msg->findMessage("reply", &reply));
2301
2302 queueDecoderShutdown(audio, video, reply);
2303 break;
2304 }
2305
Ronghua Wu80276872014-08-28 15:50:29 -07002306 case Source::kWhatDrmNoLicense:
2307 {
2308 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, ERROR_DRM_NO_LICENSE);
2309 break;
2310 }
2311
Andreas Huber9575c962013-02-05 13:59:56 -08002312 default:
2313 TRESPASS();
2314 }
2315}
2316
Chong Zhanga7fa1d92014-06-11 14:49:23 -07002317void NuPlayer::onClosedCaptionNotify(const sp<AMessage> &msg) {
2318 int32_t what;
2319 CHECK(msg->findInt32("what", &what));
2320
2321 switch (what) {
2322 case NuPlayer::CCDecoder::kWhatClosedCaptionData:
2323 {
2324 sp<ABuffer> buffer;
2325 CHECK(msg->findBuffer("buffer", &buffer));
2326
2327 size_t inbandTracks = 0;
2328 if (mSource != NULL) {
2329 inbandTracks = mSource->getTrackCount();
2330 }
2331
2332 sendSubtitleData(buffer, inbandTracks);
2333 break;
2334 }
2335
2336 case NuPlayer::CCDecoder::kWhatTrackAdded:
2337 {
2338 notifyListener(MEDIA_INFO, MEDIA_INFO_METADATA_UPDATE, 0);
2339
2340 break;
2341 }
2342
2343 default:
2344 TRESPASS();
2345 }
2346
2347
2348}
2349
Chong Zhang404fced2014-06-11 14:45:31 -07002350void NuPlayer::sendSubtitleData(const sp<ABuffer> &buffer, int32_t baseIndex) {
2351 int32_t trackIndex;
2352 int64_t timeUs, durationUs;
2353 CHECK(buffer->meta()->findInt32("trackIndex", &trackIndex));
2354 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2355 CHECK(buffer->meta()->findInt64("durationUs", &durationUs));
2356
2357 Parcel in;
2358 in.writeInt32(trackIndex + baseIndex);
2359 in.writeInt64(timeUs);
2360 in.writeInt64(durationUs);
2361 in.writeInt32(buffer->size());
2362 in.writeInt32(buffer->size());
2363 in.write(buffer->data(), buffer->size());
2364
2365 notifyListener(MEDIA_SUBTITLE_DATA, 0, 0, &in);
2366}
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002367
Robert Shih08528432015-04-08 09:06:54 -07002368void NuPlayer::sendTimedMetaData(const sp<ABuffer> &buffer) {
2369 int64_t timeUs;
2370 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2371
2372 Parcel in;
2373 in.writeInt64(timeUs);
2374 in.writeInt32(buffer->size());
2375 in.writeInt32(buffer->size());
2376 in.write(buffer->data(), buffer->size());
2377
2378 notifyListener(MEDIA_META_DATA, 0, 0, &in);
2379}
2380
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002381void NuPlayer::sendTimedTextData(const sp<ABuffer> &buffer) {
2382 const void *data;
2383 size_t size = 0;
2384 int64_t timeUs;
Marco Nelissen55e2f4c2015-09-04 15:57:15 -07002385 int32_t flag = TextDescriptions::IN_BAND_TEXT_3GPP;
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002386
2387 AString mime;
2388 CHECK(buffer->meta()->findString("mime", &mime));
2389 CHECK(strcasecmp(mime.c_str(), MEDIA_MIMETYPE_TEXT_3GPP) == 0);
2390
2391 data = buffer->data();
2392 size = buffer->size();
2393
2394 Parcel parcel;
2395 if (size > 0) {
2396 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
Marco Nelissen55e2f4c2015-09-04 15:57:15 -07002397 int32_t global = 0;
2398 if (buffer->meta()->findInt32("global", &global) && global) {
2399 flag |= TextDescriptions::GLOBAL_DESCRIPTIONS;
2400 } else {
2401 flag |= TextDescriptions::LOCAL_DESCRIPTIONS;
2402 }
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002403 TextDescriptions::getParcelOfDescriptions(
2404 (const uint8_t *)data, size, flag, timeUs / 1000, &parcel);
2405 }
2406
2407 if ((parcel.dataSize() > 0)) {
2408 notifyListener(MEDIA_TIMED_TEXT, 0, 0, &parcel);
2409 } else { // send an empty timed text
2410 notifyListener(MEDIA_TIMED_TEXT, 0, 0);
2411 }
2412}
Andreas Huberb5f25f02013-02-05 10:14:26 -08002413////////////////////////////////////////////////////////////////////////////////
2414
Chong Zhangced1c2f2014-08-08 15:22:35 -07002415sp<AMessage> NuPlayer::Source::getFormat(bool audio) {
2416 sp<MetaData> meta = getFormatMeta(audio);
2417
2418 if (meta == NULL) {
2419 return NULL;
2420 }
2421
2422 sp<AMessage> msg = new AMessage;
2423
2424 if(convertMetaDataToMessage(meta, &msg) == OK) {
2425 return msg;
2426 }
2427 return NULL;
2428}
2429
Andreas Huber9575c962013-02-05 13:59:56 -08002430void NuPlayer::Source::notifyFlagsChanged(uint32_t flags) {
2431 sp<AMessage> notify = dupNotify();
2432 notify->setInt32("what", kWhatFlagsChanged);
2433 notify->setInt32("flags", flags);
2434 notify->post();
2435}
2436
Chong Zhangced1c2f2014-08-08 15:22:35 -07002437void NuPlayer::Source::notifyVideoSizeChanged(const sp<AMessage> &format) {
Andreas Huber9575c962013-02-05 13:59:56 -08002438 sp<AMessage> notify = dupNotify();
2439 notify->setInt32("what", kWhatVideoSizeChanged);
Chong Zhangced1c2f2014-08-08 15:22:35 -07002440 notify->setMessage("format", format);
Andreas Huber9575c962013-02-05 13:59:56 -08002441 notify->post();
2442}
2443
Andreas Huberec0c5972013-02-05 14:47:13 -08002444void NuPlayer::Source::notifyPrepared(status_t err) {
Andreas Huber9575c962013-02-05 13:59:56 -08002445 sp<AMessage> notify = dupNotify();
2446 notify->setInt32("what", kWhatPrepared);
Andreas Huberec0c5972013-02-05 14:47:13 -08002447 notify->setInt32("err", err);
Andreas Huber9575c962013-02-05 13:59:56 -08002448 notify->post();
2449}
2450
Lajos Molnarfcd3e942015-03-31 10:06:48 -07002451void NuPlayer::Source::notifyInstantiateSecureDecoders(const sp<AMessage> &reply) {
2452 sp<AMessage> notify = dupNotify();
2453 notify->setInt32("what", kWhatInstantiateSecureDecoders);
2454 notify->setMessage("reply", reply);
2455 notify->post();
2456}
2457
Andreas Huber84333e02014-02-07 15:36:10 -08002458void NuPlayer::Source::onMessageReceived(const sp<AMessage> & /* msg */) {
Andreas Huberb5f25f02013-02-05 10:14:26 -08002459 TRESPASS();
2460}
2461
Andreas Huberf9334412010-12-15 15:17:42 -08002462} // namespace android