blob: c8bf8f0674063c44d80ea48aef5ef61b44681be2 [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"
Andreas Huberf9334412010-12-15 15:17:42 -080024#include "NuPlayerDecoder.h"
Wei Jiabc2fb722014-07-08 16:37:57 -070025#include "NuPlayerDecoderPassThrough.h"
Andreas Huber43c3e6c2011-01-05 12:17:08 -080026#include "NuPlayerDriver.h"
Andreas Huberf9334412010-12-15 15:17:42 -080027#include "NuPlayerRenderer.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080028#include "NuPlayerSource.h"
Andreas Huber2bfdd422011-10-11 15:24:07 -070029#include "RTSPSource.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080030#include "StreamingSource.h"
Andreas Huberafed0e12011-09-20 15:39:58 -070031#include "GenericSource.h"
Robert Shihd3b0bbb2014-07-23 15:00:25 -070032#include "TextDescriptions.h"
Andreas Huber5bc087c2010-12-23 10:27:40 -080033
34#include "ATSParser.h"
Andreas Huberf9334412010-12-15 15:17:42 -080035
Andreas Huber3831a062010-12-21 10:22:33 -080036#include <media/stagefright/foundation/hexdump.h>
Andreas Huberf9334412010-12-15 15:17:42 -080037#include <media/stagefright/foundation/ABuffer.h>
38#include <media/stagefright/foundation/ADebug.h>
39#include <media/stagefright/foundation/AMessage.h>
Lajos Molnar09524832014-07-17 14:29:51 -070040#include <media/stagefright/MediaBuffer.h>
Andreas Huber3fe62152011-09-16 15:09:22 -070041#include <media/stagefright/MediaDefs.h>
Andreas Huberf9334412010-12-15 15:17:42 -080042#include <media/stagefright/MediaErrors.h>
43#include <media/stagefright/MetaData.h>
Andy McFadden8ba01022012-12-18 09:46:54 -080044#include <gui/IGraphicBufferProducer.h>
Andreas Huberf9334412010-12-15 15:17:42 -080045
Andreas Huber3fe62152011-09-16 15:09:22 -070046#include "avc_utils.h"
47
Andreas Huber84066782011-08-16 09:34:26 -070048#include "ESDS.h"
49#include <media/stagefright/Utils.h>
50
Andreas Huberf9334412010-12-15 15:17:42 -080051namespace android {
52
Andreas Hubera1f8ab02012-11-30 10:53:22 -080053struct NuPlayer::Action : public RefBase {
54 Action() {}
55
56 virtual void execute(NuPlayer *player) = 0;
57
58private:
59 DISALLOW_EVIL_CONSTRUCTORS(Action);
60};
61
62struct NuPlayer::SeekAction : public Action {
63 SeekAction(int64_t seekTimeUs)
64 : mSeekTimeUs(seekTimeUs) {
65 }
66
67 virtual void execute(NuPlayer *player) {
68 player->performSeek(mSeekTimeUs);
69 }
70
71private:
72 int64_t mSeekTimeUs;
73
74 DISALLOW_EVIL_CONSTRUCTORS(SeekAction);
75};
76
Andreas Huber57a339c2012-12-03 11:18:00 -080077struct NuPlayer::SetSurfaceAction : public Action {
78 SetSurfaceAction(const sp<NativeWindowWrapper> &wrapper)
79 : mWrapper(wrapper) {
80 }
81
82 virtual void execute(NuPlayer *player) {
83 player->performSetSurface(mWrapper);
84 }
85
86private:
87 sp<NativeWindowWrapper> mWrapper;
88
89 DISALLOW_EVIL_CONSTRUCTORS(SetSurfaceAction);
90};
91
Andreas Huber14f76722013-01-15 09:04:18 -080092struct NuPlayer::ShutdownDecoderAction : public Action {
93 ShutdownDecoderAction(bool audio, bool video)
94 : mAudio(audio),
95 mVideo(video) {
96 }
97
98 virtual void execute(NuPlayer *player) {
99 player->performDecoderShutdown(mAudio, mVideo);
100 }
101
102private:
103 bool mAudio;
104 bool mVideo;
105
106 DISALLOW_EVIL_CONSTRUCTORS(ShutdownDecoderAction);
107};
108
109struct NuPlayer::PostMessageAction : public Action {
110 PostMessageAction(const sp<AMessage> &msg)
111 : mMessage(msg) {
112 }
113
114 virtual void execute(NuPlayer *) {
115 mMessage->post();
116 }
117
118private:
119 sp<AMessage> mMessage;
120
121 DISALLOW_EVIL_CONSTRUCTORS(PostMessageAction);
122};
123
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800124// Use this if there's no state necessary to save in order to execute
125// the action.
126struct NuPlayer::SimpleAction : public Action {
127 typedef void (NuPlayer::*ActionFunc)();
128
129 SimpleAction(ActionFunc func)
130 : mFunc(func) {
131 }
132
133 virtual void execute(NuPlayer *player) {
134 (player->*mFunc)();
135 }
136
137private:
138 ActionFunc mFunc;
139
140 DISALLOW_EVIL_CONSTRUCTORS(SimpleAction);
141};
142
Andreas Huberf9334412010-12-15 15:17:42 -0800143////////////////////////////////////////////////////////////////////////////////
144
145NuPlayer::NuPlayer()
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700146 : mUIDValid(false),
Andreas Huber9575c962013-02-05 13:59:56 -0800147 mSourceFlags(0),
Wei Jiaac428aa2014-09-02 19:01:34 -0700148 mCurrentPositionUs(0),
Andreas Huber3fe62152011-09-16 15:09:22 -0700149 mVideoIsAVC(false),
Wei Jiabc2fb722014-07-08 16:37:57 -0700150 mOffloadAudio(false),
Andy Hung282a7e32014-08-14 15:56:34 -0700151 mCurrentOffloadInfo(AUDIO_INFO_INITIALIZER),
Wei Jia88703c32014-08-06 11:24:07 -0700152 mAudioDecoderGeneration(0),
153 mVideoDecoderGeneration(0),
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700154 mAudioEOS(false),
Andreas Huberf9334412010-12-15 15:17:42 -0800155 mVideoEOS(false),
Andreas Huber5bc087c2010-12-23 10:27:40 -0800156 mScanSourcesPending(false),
Andreas Huber1aef2112011-01-04 14:01:29 -0800157 mScanSourcesGeneration(0),
Andreas Huberb7c8e912012-11-27 15:02:53 -0800158 mPollDurationGeneration(0),
Robert Shihd3b0bbb2014-07-23 15:00:25 -0700159 mTimedTextGeneration(0),
Andreas Huber6e3d3112011-11-28 12:36:11 -0800160 mTimeDiscontinuityPending(false),
Andreas Huberf9334412010-12-15 15:17:42 -0800161 mFlushingAudio(NONE),
Andreas Huber1aef2112011-01-04 14:01:29 -0800162 mFlushingVideo(NONE),
Andreas Huber3fe62152011-09-16 15:09:22 -0700163 mSkipRenderingAudioUntilMediaTimeUs(-1ll),
164 mSkipRenderingVideoUntilMediaTimeUs(-1ll),
165 mVideoLateByUs(0ll),
166 mNumFramesTotal(0ll),
James Dong0d268a32012-08-31 12:18:27 -0700167 mNumFramesDropped(0ll),
Andreas Huber57a339c2012-12-03 11:18:00 -0800168 mVideoScalingMode(NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW),
169 mStarted(false) {
Andreas Huberf9334412010-12-15 15:17:42 -0800170}
171
172NuPlayer::~NuPlayer() {
173}
174
Andreas Huber9b80c2b2011-06-30 15:47:02 -0700175void NuPlayer::setUID(uid_t uid) {
176 mUIDValid = true;
177 mUID = uid;
178}
179
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800180void NuPlayer::setDriver(const wp<NuPlayerDriver> &driver) {
181 mDriver = driver;
Andreas Huberf9334412010-12-15 15:17:42 -0800182}
183
Andreas Huber9575c962013-02-05 13:59:56 -0800184void NuPlayer::setDataSourceAsync(const sp<IStreamSource> &source) {
Andreas Huberf9334412010-12-15 15:17:42 -0800185 sp<AMessage> msg = new AMessage(kWhatSetDataSource, id());
186
Andreas Huberb5f25f02013-02-05 10:14:26 -0800187 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
188
Andreas Huber240abcc2014-02-13 13:32:37 -0800189 msg->setObject("source", new StreamingSource(notify, source));
Andreas Huber5bc087c2010-12-23 10:27:40 -0800190 msg->post();
191}
Andreas Huberf9334412010-12-15 15:17:42 -0800192
Andreas Huberafed0e12011-09-20 15:39:58 -0700193static bool IsHTTPLiveURL(const char *url) {
194 if (!strncasecmp("http://", url, 7)
Andreas Huber99759402013-04-01 14:28:31 -0700195 || !strncasecmp("https://", url, 8)
196 || !strncasecmp("file://", url, 7)) {
Andreas Huberafed0e12011-09-20 15:39:58 -0700197 size_t len = strlen(url);
198 if (len >= 5 && !strcasecmp(".m3u8", &url[len - 5])) {
199 return true;
200 }
201
202 if (strstr(url,"m3u8")) {
203 return true;
204 }
205 }
206
207 return false;
208}
209
Andreas Huber9575c962013-02-05 13:59:56 -0800210void NuPlayer::setDataSourceAsync(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800211 const sp<IMediaHTTPService> &httpService,
212 const char *url,
213 const KeyedVector<String8, String8> *headers) {
Chong Zhang3de157d2014-08-05 20:54:44 -0700214
Andreas Huber5bc087c2010-12-23 10:27:40 -0800215 sp<AMessage> msg = new AMessage(kWhatSetDataSource, id());
Oscar Rydhé7a33b772012-02-20 10:15:48 +0100216 size_t len = strlen(url);
Andreas Huber5bc087c2010-12-23 10:27:40 -0800217
Andreas Huberb5f25f02013-02-05 10:14:26 -0800218 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
219
Andreas Huberafed0e12011-09-20 15:39:58 -0700220 sp<Source> source;
221 if (IsHTTPLiveURL(url)) {
Andreas Huber81e68442014-02-05 11:52:33 -0800222 source = new HTTPLiveSource(notify, httpService, url, headers);
Andreas Huberafed0e12011-09-20 15:39:58 -0700223 } else if (!strncasecmp(url, "rtsp://", 7)) {
Andreas Huber1b86fe02014-01-29 11:13:26 -0800224 source = new RTSPSource(
225 notify, httpService, url, headers, mUIDValid, mUID);
Oscar Rydhé7a33b772012-02-20 10:15:48 +0100226 } else if ((!strncasecmp(url, "http://", 7)
227 || !strncasecmp(url, "https://", 8))
228 && ((len >= 4 && !strcasecmp(".sdp", &url[len - 4]))
229 || strstr(url, ".sdp?"))) {
Andreas Huber1b86fe02014-01-29 11:13:26 -0800230 source = new RTSPSource(
231 notify, httpService, url, headers, mUIDValid, mUID, true);
Andreas Huber2bfdd422011-10-11 15:24:07 -0700232 } else {
Chong Zhang3de157d2014-08-05 20:54:44 -0700233 sp<GenericSource> genericSource =
234 new GenericSource(notify, mUIDValid, mUID);
235 // Don't set FLAG_SECURE on mSourceFlags here for widevine.
236 // The correct flags will be updated in Source::kWhatFlagsChanged
237 // handler when GenericSource is prepared.
Andreas Huber2bfdd422011-10-11 15:24:07 -0700238
Chong Zhanga19f33e2014-08-07 15:35:07 -0700239 status_t err = genericSource->setDataSource(httpService, url, headers);
Chong Zhang3de157d2014-08-05 20:54:44 -0700240
241 if (err == OK) {
242 source = genericSource;
243 } else {
Chong Zhanga19f33e2014-08-07 15:35:07 -0700244 ALOGE("Failed to set data source!");
Chong Zhang3de157d2014-08-05 20:54:44 -0700245 }
246 }
Andreas Huberafed0e12011-09-20 15:39:58 -0700247 msg->setObject("source", source);
248 msg->post();
249}
250
Andreas Huber9575c962013-02-05 13:59:56 -0800251void NuPlayer::setDataSourceAsync(int fd, int64_t offset, int64_t length) {
Andreas Huberafed0e12011-09-20 15:39:58 -0700252 sp<AMessage> msg = new AMessage(kWhatSetDataSource, id());
253
Andreas Huberb5f25f02013-02-05 10:14:26 -0800254 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
255
Chong Zhang3de157d2014-08-05 20:54:44 -0700256 sp<GenericSource> source =
257 new GenericSource(notify, mUIDValid, mUID);
258
Chong Zhanga19f33e2014-08-07 15:35:07 -0700259 status_t err = source->setDataSource(fd, offset, length);
Chong Zhang3de157d2014-08-05 20:54:44 -0700260
261 if (err != OK) {
Chong Zhanga19f33e2014-08-07 15:35:07 -0700262 ALOGE("Failed to set data source!");
Chong Zhang3de157d2014-08-05 20:54:44 -0700263 source = NULL;
264 }
265
Andreas Huberafed0e12011-09-20 15:39:58 -0700266 msg->setObject("source", source);
Andreas Huberf9334412010-12-15 15:17:42 -0800267 msg->post();
268}
269
Andreas Huber9575c962013-02-05 13:59:56 -0800270void NuPlayer::prepareAsync() {
271 (new AMessage(kWhatPrepare, id()))->post();
272}
273
Andreas Huber57a339c2012-12-03 11:18:00 -0800274void NuPlayer::setVideoSurfaceTextureAsync(
Andy McFadden8ba01022012-12-18 09:46:54 -0800275 const sp<IGraphicBufferProducer> &bufferProducer) {
Glenn Kasten11731182011-02-08 17:26:17 -0800276 sp<AMessage> msg = new AMessage(kWhatSetVideoNativeWindow, id());
Andreas Huber57a339c2012-12-03 11:18:00 -0800277
Andy McFadden8ba01022012-12-18 09:46:54 -0800278 if (bufferProducer == NULL) {
Andreas Huber57a339c2012-12-03 11:18:00 -0800279 msg->setObject("native-window", NULL);
280 } else {
281 msg->setObject(
282 "native-window",
283 new NativeWindowWrapper(
Wei Jia9c03a402014-08-26 15:24:43 -0700284 new Surface(bufferProducer, true /* controlledByApp */)));
Andreas Huber57a339c2012-12-03 11:18:00 -0800285 }
286
Andreas Huberf9334412010-12-15 15:17:42 -0800287 msg->post();
288}
289
290void NuPlayer::setAudioSink(const sp<MediaPlayerBase::AudioSink> &sink) {
291 sp<AMessage> msg = new AMessage(kWhatSetAudioSink, id());
292 msg->setObject("sink", sink);
293 msg->post();
294}
295
296void NuPlayer::start() {
297 (new AMessage(kWhatStart, id()))->post();
298}
299
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800300void NuPlayer::pause() {
Andreas Huberb4082222011-01-20 15:23:04 -0800301 (new AMessage(kWhatPause, id()))->post();
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800302}
303
304void NuPlayer::resume() {
Andreas Huberb4082222011-01-20 15:23:04 -0800305 (new AMessage(kWhatResume, id()))->post();
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800306}
307
Andreas Huber1aef2112011-01-04 14:01:29 -0800308void NuPlayer::resetAsync() {
309 (new AMessage(kWhatReset, id()))->post();
310}
311
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800312void NuPlayer::seekToAsync(int64_t seekTimeUs) {
313 sp<AMessage> msg = new AMessage(kWhatSeek, id());
314 msg->setInt64("seekTimeUs", seekTimeUs);
315 msg->post();
316}
317
Andreas Huber53df1a42010-12-22 10:03:04 -0800318// static
Andreas Huber1aef2112011-01-04 14:01:29 -0800319bool NuPlayer::IsFlushingState(FlushStatus state, bool *needShutdown) {
Andreas Huber53df1a42010-12-22 10:03:04 -0800320 switch (state) {
321 case FLUSHING_DECODER:
Andreas Huber1aef2112011-01-04 14:01:29 -0800322 if (needShutdown != NULL) {
323 *needShutdown = false;
Andreas Huber53df1a42010-12-22 10:03:04 -0800324 }
325 return true;
326
Andreas Huber1aef2112011-01-04 14:01:29 -0800327 case FLUSHING_DECODER_SHUTDOWN:
328 if (needShutdown != NULL) {
329 *needShutdown = true;
Andreas Huber53df1a42010-12-22 10:03:04 -0800330 }
331 return true;
332
333 default:
334 return false;
335 }
336}
337
Chong Zhang404fced2014-06-11 14:45:31 -0700338void NuPlayer::writeTrackInfo(
339 Parcel* reply, const sp<AMessage> format) const {
340 int32_t trackType;
341 CHECK(format->findInt32("type", &trackType));
342
343 AString lang;
344 CHECK(format->findString("language", &lang));
345
346 reply->writeInt32(2); // write something non-zero
347 reply->writeInt32(trackType);
348 reply->writeString16(String16(lang.c_str()));
349
350 if (trackType == MEDIA_TRACK_TYPE_SUBTITLE) {
351 AString mime;
352 CHECK(format->findString("mime", &mime));
353
354 int32_t isAuto, isDefault, isForced;
355 CHECK(format->findInt32("auto", &isAuto));
356 CHECK(format->findInt32("default", &isDefault));
357 CHECK(format->findInt32("forced", &isForced));
358
359 reply->writeString16(String16(mime.c_str()));
360 reply->writeInt32(isAuto);
361 reply->writeInt32(isDefault);
362 reply->writeInt32(isForced);
363 }
364}
365
Andreas Huberf9334412010-12-15 15:17:42 -0800366void NuPlayer::onMessageReceived(const sp<AMessage> &msg) {
367 switch (msg->what()) {
368 case kWhatSetDataSource:
369 {
Steve Block3856b092011-10-20 11:56:00 +0100370 ALOGV("kWhatSetDataSource");
Andreas Huberf9334412010-12-15 15:17:42 -0800371
372 CHECK(mSource == NULL);
373
Chong Zhang3de157d2014-08-05 20:54:44 -0700374 status_t err = OK;
Andreas Huber5bc087c2010-12-23 10:27:40 -0800375 sp<RefBase> obj;
376 CHECK(msg->findObject("source", &obj));
Chong Zhang3de157d2014-08-05 20:54:44 -0700377 if (obj != NULL) {
378 mSource = static_cast<Source *>(obj.get());
Chong Zhang3de157d2014-08-05 20:54:44 -0700379 } else {
380 err = UNKNOWN_ERROR;
381 }
Andreas Huber9575c962013-02-05 13:59:56 -0800382
383 CHECK(mDriver != NULL);
384 sp<NuPlayerDriver> driver = mDriver.promote();
385 if (driver != NULL) {
Chong Zhang3de157d2014-08-05 20:54:44 -0700386 driver->notifySetDataSourceCompleted(err);
Andreas Huber9575c962013-02-05 13:59:56 -0800387 }
388 break;
389 }
390
391 case kWhatPrepare:
392 {
393 mSource->prepareAsync();
Andreas Huberf9334412010-12-15 15:17:42 -0800394 break;
395 }
396
Chong Zhangdcb89b32013-08-06 09:44:47 -0700397 case kWhatGetTrackInfo:
398 {
399 uint32_t replyID;
400 CHECK(msg->senderAwaitsResponse(&replyID));
401
Chong Zhang404fced2014-06-11 14:45:31 -0700402 Parcel* reply;
403 CHECK(msg->findPointer("reply", (void**)&reply));
404
405 size_t inbandTracks = 0;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700406 if (mSource != NULL) {
Chong Zhang404fced2014-06-11 14:45:31 -0700407 inbandTracks = mSource->getTrackCount();
408 }
409
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700410 size_t ccTracks = 0;
411 if (mCCDecoder != NULL) {
412 ccTracks = mCCDecoder->getTrackCount();
413 }
414
Chong Zhang404fced2014-06-11 14:45:31 -0700415 // total track count
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700416 reply->writeInt32(inbandTracks + ccTracks);
Chong Zhang404fced2014-06-11 14:45:31 -0700417
418 // write inband tracks
419 for (size_t i = 0; i < inbandTracks; ++i) {
420 writeTrackInfo(reply, mSource->getTrackInfo(i));
Chong Zhangdcb89b32013-08-06 09:44:47 -0700421 }
422
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700423 // write CC track
424 for (size_t i = 0; i < ccTracks; ++i) {
425 writeTrackInfo(reply, mCCDecoder->getTrackInfo(i));
426 }
427
Chong Zhangdcb89b32013-08-06 09:44:47 -0700428 sp<AMessage> response = new AMessage;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700429 response->postReply(replyID);
430 break;
431 }
432
Robert Shih7c4f0d72014-07-09 18:53:31 -0700433 case kWhatGetSelectedTrack:
434 {
435 status_t err = INVALID_OPERATION;
436 if (mSource != NULL) {
437 err = OK;
438
439 int32_t type32;
440 CHECK(msg->findInt32("type", (int32_t*)&type32));
441 media_track_type type = (media_track_type)type32;
442 ssize_t selectedTrack = mSource->getSelectedTrack(type);
443
444 Parcel* reply;
445 CHECK(msg->findPointer("reply", (void**)&reply));
446 reply->writeInt32(selectedTrack);
447 }
448
449 sp<AMessage> response = new AMessage;
450 response->setInt32("err", err);
451
452 uint32_t replyID;
453 CHECK(msg->senderAwaitsResponse(&replyID));
454 response->postReply(replyID);
455 break;
456 }
457
Chong Zhangdcb89b32013-08-06 09:44:47 -0700458 case kWhatSelectTrack:
459 {
460 uint32_t replyID;
461 CHECK(msg->senderAwaitsResponse(&replyID));
462
Chong Zhang404fced2014-06-11 14:45:31 -0700463 size_t trackIndex;
464 int32_t select;
465 CHECK(msg->findSize("trackIndex", &trackIndex));
466 CHECK(msg->findInt32("select", &select));
467
Chong Zhangdcb89b32013-08-06 09:44:47 -0700468 status_t err = INVALID_OPERATION;
Chong Zhang404fced2014-06-11 14:45:31 -0700469
470 size_t inbandTracks = 0;
Chong Zhangdcb89b32013-08-06 09:44:47 -0700471 if (mSource != NULL) {
Chong Zhang404fced2014-06-11 14:45:31 -0700472 inbandTracks = mSource->getTrackCount();
473 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700474 size_t ccTracks = 0;
475 if (mCCDecoder != NULL) {
476 ccTracks = mCCDecoder->getTrackCount();
477 }
Chong Zhang404fced2014-06-11 14:45:31 -0700478
479 if (trackIndex < inbandTracks) {
Chong Zhangdcb89b32013-08-06 09:44:47 -0700480 err = mSource->selectTrack(trackIndex, select);
Robert Shihd3b0bbb2014-07-23 15:00:25 -0700481
482 if (!select && err == OK) {
483 int32_t type;
484 sp<AMessage> info = mSource->getTrackInfo(trackIndex);
485 if (info != NULL
486 && info->findInt32("type", &type)
487 && type == MEDIA_TRACK_TYPE_TIMEDTEXT) {
488 ++mTimedTextGeneration;
489 }
490 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700491 } else {
492 trackIndex -= inbandTracks;
493
494 if (trackIndex < ccTracks) {
495 err = mCCDecoder->selectTrack(trackIndex, select);
496 }
Chong Zhangdcb89b32013-08-06 09:44:47 -0700497 }
498
499 sp<AMessage> response = new AMessage;
500 response->setInt32("err", err);
501
502 response->postReply(replyID);
503 break;
504 }
505
Andreas Huberb7c8e912012-11-27 15:02:53 -0800506 case kWhatPollDuration:
507 {
508 int32_t generation;
509 CHECK(msg->findInt32("generation", &generation));
510
511 if (generation != mPollDurationGeneration) {
512 // stale
513 break;
514 }
515
516 int64_t durationUs;
517 if (mDriver != NULL && mSource->getDuration(&durationUs) == OK) {
518 sp<NuPlayerDriver> driver = mDriver.promote();
519 if (driver != NULL) {
520 driver->notifyDuration(durationUs);
521 }
522 }
523
524 msg->post(1000000ll); // poll again in a second.
525 break;
526 }
527
Glenn Kasten11731182011-02-08 17:26:17 -0800528 case kWhatSetVideoNativeWindow:
Andreas Huberf9334412010-12-15 15:17:42 -0800529 {
Steve Block3856b092011-10-20 11:56:00 +0100530 ALOGV("kWhatSetVideoNativeWindow");
Andreas Huberf9334412010-12-15 15:17:42 -0800531
Andreas Huber57a339c2012-12-03 11:18:00 -0800532 mDeferredActions.push_back(
Andreas Huber14f76722013-01-15 09:04:18 -0800533 new ShutdownDecoderAction(
534 false /* audio */, true /* video */));
Andreas Huber57a339c2012-12-03 11:18:00 -0800535
Andreas Huberf9334412010-12-15 15:17:42 -0800536 sp<RefBase> obj;
Glenn Kasten11731182011-02-08 17:26:17 -0800537 CHECK(msg->findObject("native-window", &obj));
Andreas Huberf9334412010-12-15 15:17:42 -0800538
Andreas Huber57a339c2012-12-03 11:18:00 -0800539 mDeferredActions.push_back(
540 new SetSurfaceAction(
541 static_cast<NativeWindowWrapper *>(obj.get())));
James Dong0d268a32012-08-31 12:18:27 -0700542
Andreas Huber57a339c2012-12-03 11:18:00 -0800543 if (obj != NULL) {
Andy Hung73535852014-09-05 11:42:58 -0700544 if (mStarted && mVideoDecoder != NULL) {
545 // Issue a seek to refresh the video screen only if started otherwise
546 // the extractor may not yet be started and will assert.
547 // If the video decoder is not set (perhaps audio only in this case)
548 // do not perform a seek as it is not needed.
549 mDeferredActions.push_back(new SeekAction(mCurrentPositionUs));
550 }
Wei Jiaac428aa2014-09-02 19:01:34 -0700551
Andreas Huber57a339c2012-12-03 11:18:00 -0800552 // If there is a new surface texture, instantiate decoders
553 // again if possible.
554 mDeferredActions.push_back(
555 new SimpleAction(&NuPlayer::performScanSources));
556 }
557
558 processDeferredActions();
Andreas Huberf9334412010-12-15 15:17:42 -0800559 break;
560 }
561
562 case kWhatSetAudioSink:
563 {
Steve Block3856b092011-10-20 11:56:00 +0100564 ALOGV("kWhatSetAudioSink");
Andreas Huberf9334412010-12-15 15:17:42 -0800565
566 sp<RefBase> obj;
567 CHECK(msg->findObject("sink", &obj));
568
569 mAudioSink = static_cast<MediaPlayerBase::AudioSink *>(obj.get());
570 break;
571 }
572
573 case kWhatStart:
574 {
Steve Block3856b092011-10-20 11:56:00 +0100575 ALOGV("kWhatStart");
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800576
Andreas Huber3fe62152011-09-16 15:09:22 -0700577 mVideoIsAVC = false;
Wei Jiabc2fb722014-07-08 16:37:57 -0700578 mOffloadAudio = false;
Andreas Huber1aef2112011-01-04 14:01:29 -0800579 mAudioEOS = false;
580 mVideoEOS = false;
Andreas Huber32f3cef2011-03-02 15:34:46 -0800581 mSkipRenderingAudioUntilMediaTimeUs = -1;
582 mSkipRenderingVideoUntilMediaTimeUs = -1;
Andreas Huber3fe62152011-09-16 15:09:22 -0700583 mVideoLateByUs = 0;
584 mNumFramesTotal = 0;
585 mNumFramesDropped = 0;
Andreas Huber57a339c2012-12-03 11:18:00 -0800586 mStarted = true;
Andreas Huber1aef2112011-01-04 14:01:29 -0800587
Lajos Molnar09524832014-07-17 14:29:51 -0700588 /* instantiate decoders now for secure playback */
589 if (mSourceFlags & Source::FLAG_SECURE) {
590 if (mNativeWindow != NULL) {
591 instantiateDecoder(false, &mVideoDecoder);
592 }
593
594 if (mAudioSink != NULL) {
595 instantiateDecoder(true, &mAudioDecoder);
596 }
597 }
598
Andreas Huber5bc087c2010-12-23 10:27:40 -0800599 mSource->start();
Andreas Huberf9334412010-12-15 15:17:42 -0800600
Andreas Huberd5e56232013-03-12 11:01:43 -0700601 uint32_t flags = 0;
602
603 if (mSource->isRealTime()) {
604 flags |= Renderer::FLAG_REAL_TIME;
605 }
606
Wei Jiabc2fb722014-07-08 16:37:57 -0700607 sp<MetaData> audioMeta = mSource->getFormatMeta(true /* audio */);
608 audio_stream_type_t streamType = AUDIO_STREAM_MUSIC;
609 if (mAudioSink != NULL) {
610 streamType = mAudioSink->getAudioStreamType();
611 }
612
613 sp<AMessage> videoFormat = mSource->getFormat(false /* audio */);
614
615 mOffloadAudio =
616 canOffloadStream(audioMeta, (videoFormat != NULL),
617 true /* is_streaming */, streamType);
618 if (mOffloadAudio) {
619 flags |= Renderer::FLAG_OFFLOAD_AUDIO;
620 }
621
Andreas Huberf9334412010-12-15 15:17:42 -0800622 mRenderer = new Renderer(
623 mAudioSink,
Andreas Huberd5e56232013-03-12 11:01:43 -0700624 new AMessage(kWhatRendererNotify, id()),
625 flags);
Andreas Huberf9334412010-12-15 15:17:42 -0800626
Lajos Molnar09524832014-07-17 14:29:51 -0700627 mRendererLooper = new ALooper;
628 mRendererLooper->setName("NuPlayerRenderer");
629 mRendererLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
630 mRendererLooper->registerHandler(mRenderer);
Andreas Huberf9334412010-12-15 15:17:42 -0800631
Andreas Huber1aef2112011-01-04 14:01:29 -0800632 postScanSources();
Andreas Huberf9334412010-12-15 15:17:42 -0800633 break;
634 }
635
636 case kWhatScanSources:
637 {
Andreas Huber1aef2112011-01-04 14:01:29 -0800638 int32_t generation;
639 CHECK(msg->findInt32("generation", &generation));
640 if (generation != mScanSourcesGeneration) {
641 // Drop obsolete msg.
642 break;
643 }
644
Andreas Huber5bc087c2010-12-23 10:27:40 -0800645 mScanSourcesPending = false;
646
Steve Block3856b092011-10-20 11:56:00 +0100647 ALOGV("scanning sources haveAudio=%d, haveVideo=%d",
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800648 mAudioDecoder != NULL, mVideoDecoder != NULL);
649
Andreas Huberb7c8e912012-11-27 15:02:53 -0800650 bool mHadAnySourcesBefore =
651 (mAudioDecoder != NULL) || (mVideoDecoder != NULL);
652
Andy Hung282a7e32014-08-14 15:56:34 -0700653 // initialize video before audio because successful initialization of
654 // video may change deep buffer mode of audio.
Haynes Mathew George5d246ef2012-07-09 10:36:57 -0700655 if (mNativeWindow != NULL) {
656 instantiateDecoder(false, &mVideoDecoder);
657 }
Andreas Huberf9334412010-12-15 15:17:42 -0800658
659 if (mAudioSink != NULL) {
Andy Hung282a7e32014-08-14 15:56:34 -0700660 if (mOffloadAudio) {
661 // open audio sink early under offload mode.
662 sp<AMessage> format = mSource->getFormat(true /*audio*/);
663 openAudioSink(format, true /*offloadOnly*/);
664 }
Andreas Huber5bc087c2010-12-23 10:27:40 -0800665 instantiateDecoder(true, &mAudioDecoder);
Andreas Huberf9334412010-12-15 15:17:42 -0800666 }
667
Andreas Huberb7c8e912012-11-27 15:02:53 -0800668 if (!mHadAnySourcesBefore
669 && (mAudioDecoder != NULL || mVideoDecoder != NULL)) {
670 // This is the first time we've found anything playable.
671
Andreas Huber9575c962013-02-05 13:59:56 -0800672 if (mSourceFlags & Source::FLAG_DYNAMIC_DURATION) {
Andreas Huberb7c8e912012-11-27 15:02:53 -0800673 schedulePollDuration();
674 }
675 }
676
Andreas Hubereac68ba2011-09-27 12:12:25 -0700677 status_t err;
678 if ((err = mSource->feedMoreTSData()) != OK) {
Andreas Huber1aef2112011-01-04 14:01:29 -0800679 if (mAudioDecoder == NULL && mVideoDecoder == NULL) {
680 // We're not currently decoding anything (no audio or
681 // video tracks found) and we just ran out of input data.
Andreas Hubereac68ba2011-09-27 12:12:25 -0700682
683 if (err == ERROR_END_OF_STREAM) {
684 notifyListener(MEDIA_PLAYBACK_COMPLETE, 0, 0);
685 } else {
686 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, err);
687 }
Andreas Huber1aef2112011-01-04 14:01:29 -0800688 }
Andreas Huberf9334412010-12-15 15:17:42 -0800689 break;
690 }
691
Andreas Huberfbe9d812012-08-31 14:05:27 -0700692 if ((mAudioDecoder == NULL && mAudioSink != NULL)
693 || (mVideoDecoder == NULL && mNativeWindow != NULL)) {
Andreas Huberf9334412010-12-15 15:17:42 -0800694 msg->post(100000ll);
Andreas Huber5bc087c2010-12-23 10:27:40 -0800695 mScanSourcesPending = true;
Andreas Huberf9334412010-12-15 15:17:42 -0800696 }
697 break;
698 }
699
700 case kWhatVideoNotify:
701 case kWhatAudioNotify:
702 {
703 bool audio = msg->what() == kWhatAudioNotify;
704
Wei Jia88703c32014-08-06 11:24:07 -0700705 int32_t currentDecoderGeneration =
706 (audio? mAudioDecoderGeneration : mVideoDecoderGeneration);
707 int32_t requesterGeneration = currentDecoderGeneration - 1;
708 CHECK(msg->findInt32("generation", &requesterGeneration));
709
710 if (requesterGeneration != currentDecoderGeneration) {
711 ALOGV("got message from old %s decoder, generation(%d:%d)",
712 audio ? "audio" : "video", requesterGeneration,
713 currentDecoderGeneration);
714 sp<AMessage> reply;
715 if (!(msg->findMessage("reply", &reply))) {
716 return;
717 }
718
719 reply->setInt32("err", INFO_DISCONTINUITY);
720 reply->post();
721 return;
722 }
723
Andreas Huberf9334412010-12-15 15:17:42 -0800724 int32_t what;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800725 CHECK(msg->findInt32("what", &what));
Andreas Huberf9334412010-12-15 15:17:42 -0800726
Lajos Molnar1cd13982014-01-17 15:12:51 -0800727 if (what == Decoder::kWhatFillThisBuffer) {
Andreas Huberf9334412010-12-15 15:17:42 -0800728 status_t err = feedDecoderInputData(
Lajos Molnar1cd13982014-01-17 15:12:51 -0800729 audio, msg);
Andreas Huberf9334412010-12-15 15:17:42 -0800730
Andreas Huber5bc087c2010-12-23 10:27:40 -0800731 if (err == -EWOULDBLOCK) {
Andreas Hubereac68ba2011-09-27 12:12:25 -0700732 if (mSource->feedMoreTSData() == OK) {
Andreas Huber1183a4a2011-11-03 11:00:21 -0700733 msg->post(10000ll);
Andreas Huber5bc087c2010-12-23 10:27:40 -0800734 }
Andreas Huberf9334412010-12-15 15:17:42 -0800735 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800736 } else if (what == Decoder::kWhatEOS) {
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700737 int32_t err;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800738 CHECK(msg->findInt32("err", &err));
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700739
740 if (err == ERROR_END_OF_STREAM) {
Steve Block3856b092011-10-20 11:56:00 +0100741 ALOGV("got %s decoder EOS", audio ? "audio" : "video");
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700742 } else {
Steve Block3856b092011-10-20 11:56:00 +0100743 ALOGV("got %s decoder EOS w/ error %d",
Andreas Huberdc9bacd2011-09-26 10:53:29 -0700744 audio ? "audio" : "video",
745 err);
746 }
747
748 mRenderer->queueEOS(audio, err);
Lajos Molnar1cd13982014-01-17 15:12:51 -0800749 } else if (what == Decoder::kWhatFlushCompleted) {
Andreas Huber1aef2112011-01-04 14:01:29 -0800750 bool needShutdown;
Andreas Huber53df1a42010-12-22 10:03:04 -0800751
Andreas Huberf9334412010-12-15 15:17:42 -0800752 if (audio) {
Andreas Huber1aef2112011-01-04 14:01:29 -0800753 CHECK(IsFlushingState(mFlushingAudio, &needShutdown));
Andreas Huberf9334412010-12-15 15:17:42 -0800754 mFlushingAudio = FLUSHED;
755 } else {
Andreas Huber1aef2112011-01-04 14:01:29 -0800756 CHECK(IsFlushingState(mFlushingVideo, &needShutdown));
Andreas Huberf9334412010-12-15 15:17:42 -0800757 mFlushingVideo = FLUSHED;
Andreas Huber3fe62152011-09-16 15:09:22 -0700758
759 mVideoLateByUs = 0;
Andreas Huberf9334412010-12-15 15:17:42 -0800760 }
761
Steve Block3856b092011-10-20 11:56:00 +0100762 ALOGV("decoder %s flush completed", audio ? "audio" : "video");
Andreas Huberf9334412010-12-15 15:17:42 -0800763
Andreas Huber1aef2112011-01-04 14:01:29 -0800764 if (needShutdown) {
Steve Block3856b092011-10-20 11:56:00 +0100765 ALOGV("initiating %s decoder shutdown",
Andreas Huber53df1a42010-12-22 10:03:04 -0800766 audio ? "audio" : "video");
Andreas Huberf9334412010-12-15 15:17:42 -0800767
Lajos Molnar87603c02014-08-20 19:25:30 -0700768 getDecoder(audio)->initiateShutdown();
Andreas Huberf9334412010-12-15 15:17:42 -0800769
Andreas Huber53df1a42010-12-22 10:03:04 -0800770 if (audio) {
771 mFlushingAudio = SHUTTING_DOWN_DECODER;
772 } else {
773 mFlushingVideo = SHUTTING_DOWN_DECODER;
774 }
Andreas Huberf9334412010-12-15 15:17:42 -0800775 }
Andreas Huber3831a062010-12-21 10:22:33 -0800776
777 finishFlushIfPossible();
Lajos Molnar1cd13982014-01-17 15:12:51 -0800778 } else if (what == Decoder::kWhatOutputFormatChanged) {
779 sp<AMessage> format;
780 CHECK(msg->findMessage("format", &format));
781
Andreas Huber31e25082011-01-10 10:38:31 -0800782 if (audio) {
Andy Hung282a7e32014-08-14 15:56:34 -0700783 openAudioSink(format, false /*offloadOnly*/);
Andreas Huber31e25082011-01-10 10:38:31 -0800784 } else {
785 // video
Chong Zhangced1c2f2014-08-08 15:22:35 -0700786 sp<AMessage> inputFormat =
787 mSource->getFormat(false /* audio */);
Andreas Huber3831a062010-12-21 10:22:33 -0800788
Chong Zhangced1c2f2014-08-08 15:22:35 -0700789 updateVideoSize(inputFormat, format);
Andreas Huber31e25082011-01-10 10:38:31 -0800790 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800791 } else if (what == Decoder::kWhatShutdownCompleted) {
Steve Block3856b092011-10-20 11:56:00 +0100792 ALOGV("%s shutdown completed", audio ? "audio" : "video");
Andreas Huber3831a062010-12-21 10:22:33 -0800793 if (audio) {
794 mAudioDecoder.clear();
795
796 CHECK_EQ((int)mFlushingAudio, (int)SHUTTING_DOWN_DECODER);
797 mFlushingAudio = SHUT_DOWN;
798 } else {
799 mVideoDecoder.clear();
800
801 CHECK_EQ((int)mFlushingVideo, (int)SHUTTING_DOWN_DECODER);
802 mFlushingVideo = SHUT_DOWN;
803 }
804
805 finishFlushIfPossible();
Lajos Molnar1cd13982014-01-17 15:12:51 -0800806 } else if (what == Decoder::kWhatError) {
Steve Block29357bc2012-01-06 19:20:56 +0000807 ALOGE("Received error from %s decoder, aborting playback.",
Andreas Huberc92fd242011-08-16 13:48:44 -0700808 audio ? "audio" : "video");
809
Chong Zhangf4c0a942014-08-11 15:14:10 -0700810 status_t err;
811 if (!msg->findInt32("err", &err)) {
812 err = UNKNOWN_ERROR;
813 }
814 mRenderer->queueEOS(audio, err);
Marco Nelissen9e2b7912014-08-18 16:13:03 -0700815 if (audio && mFlushingAudio != NONE) {
816 mAudioDecoder.clear();
817 mFlushingAudio = SHUT_DOWN;
818 } else if (!audio && mFlushingVideo != NONE){
819 mVideoDecoder.clear();
820 mFlushingVideo = SHUT_DOWN;
821 }
822 finishFlushIfPossible();
Lajos Molnar1cd13982014-01-17 15:12:51 -0800823 } else if (what == Decoder::kWhatDrainThisBuffer) {
824 renderBuffer(audio, msg);
825 } else {
826 ALOGV("Unhandled decoder notification %d '%c%c%c%c'.",
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800827 what,
828 what >> 24,
829 (what >> 16) & 0xff,
830 (what >> 8) & 0xff,
831 what & 0xff);
Andreas Huberf9334412010-12-15 15:17:42 -0800832 }
833
834 break;
835 }
836
837 case kWhatRendererNotify:
838 {
839 int32_t what;
840 CHECK(msg->findInt32("what", &what));
841
842 if (what == Renderer::kWhatEOS) {
843 int32_t audio;
844 CHECK(msg->findInt32("audio", &audio));
845
Andreas Huberc92fd242011-08-16 13:48:44 -0700846 int32_t finalResult;
847 CHECK(msg->findInt32("finalResult", &finalResult));
848
Andreas Huberf9334412010-12-15 15:17:42 -0800849 if (audio) {
850 mAudioEOS = true;
851 } else {
852 mVideoEOS = true;
853 }
854
Andreas Huberc92fd242011-08-16 13:48:44 -0700855 if (finalResult == ERROR_END_OF_STREAM) {
Steve Block3856b092011-10-20 11:56:00 +0100856 ALOGV("reached %s EOS", audio ? "audio" : "video");
Andreas Huberc92fd242011-08-16 13:48:44 -0700857 } else {
Steve Block29357bc2012-01-06 19:20:56 +0000858 ALOGE("%s track encountered an error (%d)",
Andreas Huberc92fd242011-08-16 13:48:44 -0700859 audio ? "audio" : "video", finalResult);
860
861 notifyListener(
862 MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, finalResult);
863 }
Andreas Huberf9334412010-12-15 15:17:42 -0800864
865 if ((mAudioEOS || mAudioDecoder == NULL)
866 && (mVideoEOS || mVideoDecoder == NULL)) {
867 notifyListener(MEDIA_PLAYBACK_COMPLETE, 0, 0);
868 }
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800869 } else if (what == Renderer::kWhatPosition) {
870 int64_t positionUs;
871 CHECK(msg->findInt64("positionUs", &positionUs));
Wei Jiaac428aa2014-09-02 19:01:34 -0700872 mCurrentPositionUs = positionUs;
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800873
Andreas Huber3fe62152011-09-16 15:09:22 -0700874 CHECK(msg->findInt64("videoLateByUs", &mVideoLateByUs));
875
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800876 if (mDriver != NULL) {
877 sp<NuPlayerDriver> driver = mDriver.promote();
878 if (driver != NULL) {
879 driver->notifyPosition(positionUs);
Andreas Huber3fe62152011-09-16 15:09:22 -0700880
881 driver->notifyFrameStats(
882 mNumFramesTotal, mNumFramesDropped);
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800883 }
884 }
Andreas Huber3fe62152011-09-16 15:09:22 -0700885 } else if (what == Renderer::kWhatFlushComplete) {
Andreas Huberf9334412010-12-15 15:17:42 -0800886 int32_t audio;
887 CHECK(msg->findInt32("audio", &audio));
888
Steve Block3856b092011-10-20 11:56:00 +0100889 ALOGV("renderer %s flush completed.", audio ? "audio" : "video");
James Dongf57b4ea2012-07-20 13:38:36 -0700890 } else if (what == Renderer::kWhatVideoRenderingStart) {
891 notifyListener(MEDIA_INFO, MEDIA_INFO_RENDERING_START, 0);
Lajos Molnarcbaffcf2013-08-14 18:30:38 -0700892 } else if (what == Renderer::kWhatMediaRenderingStart) {
893 ALOGV("media rendering started");
894 notifyListener(MEDIA_STARTED, 0, 0);
Wei Jia3a2956d2014-07-22 16:01:33 -0700895 } else if (what == Renderer::kWhatAudioOffloadTearDown) {
896 ALOGV("Tear down audio offload, fall back to s/w path");
897 int64_t positionUs;
898 CHECK(msg->findInt64("positionUs", &positionUs));
Andy Hung282a7e32014-08-14 15:56:34 -0700899 closeAudioSink();
Wei Jia3a2956d2014-07-22 16:01:33 -0700900 mAudioDecoder.clear();
901 mRenderer->flush(true /* audio */);
902 if (mVideoDecoder != NULL) {
903 mRenderer->flush(false /* audio */);
904 }
905 mRenderer->signalDisableOffloadAudio();
906 mOffloadAudio = false;
907
908 performSeek(positionUs);
909 instantiateDecoder(true /* audio */, &mAudioDecoder);
Andreas Huberf9334412010-12-15 15:17:42 -0800910 }
911 break;
912 }
913
914 case kWhatMoreDataQueued:
915 {
916 break;
917 }
918
Andreas Huber1aef2112011-01-04 14:01:29 -0800919 case kWhatReset:
920 {
Steve Block3856b092011-10-20 11:56:00 +0100921 ALOGV("kWhatReset");
Andreas Huber1aef2112011-01-04 14:01:29 -0800922
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800923 mDeferredActions.push_back(
Andreas Huber14f76722013-01-15 09:04:18 -0800924 new ShutdownDecoderAction(
925 true /* audio */, true /* video */));
Andreas Huberb7c8e912012-11-27 15:02:53 -0800926
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800927 mDeferredActions.push_back(
928 new SimpleAction(&NuPlayer::performReset));
Andreas Huberb58ce9f2011-11-28 16:27:35 -0800929
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800930 processDeferredActions();
Andreas Huber1aef2112011-01-04 14:01:29 -0800931 break;
932 }
933
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800934 case kWhatSeek:
935 {
936 int64_t seekTimeUs;
937 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
938
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800939 ALOGV("kWhatSeek seekTimeUs=%lld us", seekTimeUs);
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800940
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800941 mDeferredActions.push_back(
942 new SimpleAction(&NuPlayer::performDecoderFlush));
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800943
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800944 mDeferredActions.push_back(new SeekAction(seekTimeUs));
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800945
Andreas Hubera1f8ab02012-11-30 10:53:22 -0800946 processDeferredActions();
Andreas Huber43c3e6c2011-01-05 12:17:08 -0800947 break;
948 }
949
Andreas Huberb4082222011-01-20 15:23:04 -0800950 case kWhatPause:
951 {
952 CHECK(mRenderer != NULL);
Roger Jönssonfba60da2013-01-21 17:15:45 +0100953 mSource->pause();
Andreas Huberb4082222011-01-20 15:23:04 -0800954 mRenderer->pause();
955 break;
956 }
957
958 case kWhatResume:
959 {
960 CHECK(mRenderer != NULL);
Roger Jönssonfba60da2013-01-21 17:15:45 +0100961 mSource->resume();
Andreas Huberb4082222011-01-20 15:23:04 -0800962 mRenderer->resume();
963 break;
964 }
965
Andreas Huberb5f25f02013-02-05 10:14:26 -0800966 case kWhatSourceNotify:
967 {
Andreas Huber9575c962013-02-05 13:59:56 -0800968 onSourceNotify(msg);
Andreas Huberb5f25f02013-02-05 10:14:26 -0800969 break;
970 }
971
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700972 case kWhatClosedCaptionNotify:
973 {
974 onClosedCaptionNotify(msg);
975 break;
976 }
977
Andreas Huberf9334412010-12-15 15:17:42 -0800978 default:
979 TRESPASS();
980 break;
981 }
982}
983
Andreas Huber3831a062010-12-21 10:22:33 -0800984void NuPlayer::finishFlushIfPossible() {
Wei Jia53904f32014-07-29 10:22:53 -0700985 if (mFlushingAudio != NONE && mFlushingAudio != FLUSHED
986 && mFlushingAudio != SHUT_DOWN) {
Andreas Huber3831a062010-12-21 10:22:33 -0800987 return;
988 }
989
Wei Jia53904f32014-07-29 10:22:53 -0700990 if (mFlushingVideo != NONE && mFlushingVideo != FLUSHED
991 && mFlushingVideo != SHUT_DOWN) {
Andreas Huber3831a062010-12-21 10:22:33 -0800992 return;
993 }
994
Steve Block3856b092011-10-20 11:56:00 +0100995 ALOGV("both audio and video are flushed now.");
Andreas Huber3831a062010-12-21 10:22:33 -0800996
Phil Burk9f526492014-09-03 15:04:12 -0700997 mPendingAudioAccessUnit.clear();
998
Andreas Huber6e3d3112011-11-28 12:36:11 -0800999 if (mTimeDiscontinuityPending) {
1000 mRenderer->signalTimeDiscontinuity();
1001 mTimeDiscontinuityPending = false;
1002 }
Andreas Huber3831a062010-12-21 10:22:33 -08001003
Wei Jia53904f32014-07-29 10:22:53 -07001004 if (mAudioDecoder != NULL && mFlushingAudio == FLUSHED) {
Andreas Huber3831a062010-12-21 10:22:33 -08001005 mAudioDecoder->signalResume();
1006 }
1007
Wei Jia53904f32014-07-29 10:22:53 -07001008 if (mVideoDecoder != NULL && mFlushingVideo == FLUSHED) {
Andreas Huber3831a062010-12-21 10:22:33 -08001009 mVideoDecoder->signalResume();
1010 }
1011
1012 mFlushingAudio = NONE;
1013 mFlushingVideo = NONE;
Andreas Huber3831a062010-12-21 10:22:33 -08001014
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001015 processDeferredActions();
Andreas Huber1aef2112011-01-04 14:01:29 -08001016}
1017
1018void NuPlayer::postScanSources() {
1019 if (mScanSourcesPending) {
1020 return;
1021 }
1022
1023 sp<AMessage> msg = new AMessage(kWhatScanSources, id());
1024 msg->setInt32("generation", mScanSourcesGeneration);
1025 msg->post();
1026
1027 mScanSourcesPending = true;
1028}
1029
Andy Hung282a7e32014-08-14 15:56:34 -07001030void NuPlayer::openAudioSink(const sp<AMessage> &format, bool offloadOnly) {
1031 ALOGV("openAudioSink: offloadOnly(%d) mOffloadAudio(%d)",
1032 offloadOnly, mOffloadAudio);
1033 bool audioSinkChanged = false;
1034
1035 int32_t numChannels;
1036 CHECK(format->findInt32("channel-count", &numChannels));
1037
1038 int32_t channelMask;
1039 if (!format->findInt32("channel-mask", &channelMask)) {
1040 // signal to the AudioSink to derive the mask from count.
1041 channelMask = CHANNEL_MASK_USE_CHANNEL_ORDER;
1042 }
1043
1044 int32_t sampleRate;
1045 CHECK(format->findInt32("sample-rate", &sampleRate));
1046
1047 uint32_t flags;
1048 int64_t durationUs;
1049 // FIXME: we should handle the case where the video decoder
1050 // is created after we receive the format change indication.
1051 // Current code will just make that we select deep buffer
1052 // with video which should not be a problem as it should
1053 // not prevent from keeping A/V sync.
1054 if (mVideoDecoder == NULL &&
1055 mSource->getDuration(&durationUs) == OK &&
1056 durationUs
1057 > AUDIO_SINK_MIN_DEEP_BUFFER_DURATION_US) {
1058 flags = AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
1059 } else {
1060 flags = AUDIO_OUTPUT_FLAG_NONE;
1061 }
1062
1063 if (mOffloadAudio) {
1064 audio_format_t audioFormat = AUDIO_FORMAT_PCM_16_BIT;
1065 AString mime;
1066 CHECK(format->findString("mime", &mime));
1067 status_t err = mapMimeToAudioFormat(audioFormat, mime.c_str());
1068
1069 if (err != OK) {
1070 ALOGE("Couldn't map mime \"%s\" to a valid "
1071 "audio_format", mime.c_str());
1072 mOffloadAudio = false;
1073 } else {
1074 ALOGV("Mime \"%s\" mapped to audio_format 0x%x",
1075 mime.c_str(), audioFormat);
1076
1077 int avgBitRate = -1;
1078 format->findInt32("bit-rate", &avgBitRate);
1079
1080 int32_t aacProfile = -1;
1081 if (audioFormat == AUDIO_FORMAT_AAC
1082 && format->findInt32("aac-profile", &aacProfile)) {
1083 // Redefine AAC format as per aac profile
1084 mapAACProfileToAudioFormat(
1085 audioFormat,
1086 aacProfile);
1087 }
1088
1089 audio_offload_info_t offloadInfo = AUDIO_INFO_INITIALIZER;
1090 offloadInfo.duration_us = -1;
1091 format->findInt64(
1092 "durationUs", &offloadInfo.duration_us);
1093 offloadInfo.sample_rate = sampleRate;
1094 offloadInfo.channel_mask = channelMask;
1095 offloadInfo.format = audioFormat;
1096 offloadInfo.stream_type = AUDIO_STREAM_MUSIC;
1097 offloadInfo.bit_rate = avgBitRate;
1098 offloadInfo.has_video = (mVideoDecoder != NULL);
1099 offloadInfo.is_streaming = true;
1100
1101 if (memcmp(&mCurrentOffloadInfo, &offloadInfo, sizeof(offloadInfo)) == 0) {
1102 ALOGV("openAudioSink: no change in offload mode");
1103 return; // no change from previous configuration, everything ok.
1104 }
1105 ALOGV("openAudioSink: try to open AudioSink in offload mode");
1106 flags |= AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD;
Ronghua Wu1ffb5382014-08-18 15:57:03 -07001107 flags &= ~AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Andy Hung282a7e32014-08-14 15:56:34 -07001108 audioSinkChanged = true;
1109 mAudioSink->close();
1110 err = mAudioSink->open(
1111 sampleRate,
1112 numChannels,
1113 (audio_channel_mask_t)channelMask,
1114 audioFormat,
1115 8 /* bufferCount */,
1116 &NuPlayer::Renderer::AudioSinkCallback,
1117 mRenderer.get(),
1118 (audio_output_flags_t)flags,
1119 &offloadInfo);
1120
1121 if (err == OK) {
1122 // If the playback is offloaded to h/w, we pass
1123 // the HAL some metadata information.
1124 // We don't want to do this for PCM because it
1125 // will be going through the AudioFlinger mixer
1126 // before reaching the hardware.
1127 sp<MetaData> audioMeta =
1128 mSource->getFormatMeta(true /* audio */);
1129 sendMetaDataToHal(mAudioSink, audioMeta);
1130 mCurrentOffloadInfo = offloadInfo;
1131 err = mAudioSink->start();
1132 ALOGV_IF(err == OK, "openAudioSink: offload succeeded");
1133 }
1134 if (err != OK) {
1135 // Clean up, fall back to non offload mode.
1136 mAudioSink->close();
1137 mRenderer->signalDisableOffloadAudio();
1138 mOffloadAudio = false;
1139 mCurrentOffloadInfo = AUDIO_INFO_INITIALIZER;
1140 ALOGV("openAudioSink: offload failed");
1141 }
1142 }
1143 }
1144 if (!offloadOnly && !mOffloadAudio) {
1145 flags &= ~AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD;
1146 ALOGV("openAudioSink: open AudioSink in NON-offload mode");
1147
1148 audioSinkChanged = true;
1149 mAudioSink->close();
1150 mCurrentOffloadInfo = AUDIO_INFO_INITIALIZER;
1151 CHECK_EQ(mAudioSink->open(
1152 sampleRate,
1153 numChannels,
1154 (audio_channel_mask_t)channelMask,
1155 AUDIO_FORMAT_PCM_16_BIT,
1156 8 /* bufferCount */,
1157 NULL,
1158 NULL,
1159 (audio_output_flags_t)flags),
1160 (status_t)OK);
1161 mAudioSink->start();
1162 }
1163 if (audioSinkChanged) {
1164 mRenderer->signalAudioSinkChanged();
1165 }
1166}
1167
1168void NuPlayer::closeAudioSink() {
1169 mAudioSink->close();
1170 mCurrentOffloadInfo = AUDIO_INFO_INITIALIZER;
1171}
1172
Andreas Huber5bc087c2010-12-23 10:27:40 -08001173status_t NuPlayer::instantiateDecoder(bool audio, sp<Decoder> *decoder) {
Andreas Huberf9334412010-12-15 15:17:42 -08001174 if (*decoder != NULL) {
1175 return OK;
1176 }
1177
Andreas Huber84066782011-08-16 09:34:26 -07001178 sp<AMessage> format = mSource->getFormat(audio);
Andreas Huberf9334412010-12-15 15:17:42 -08001179
Andreas Huber84066782011-08-16 09:34:26 -07001180 if (format == NULL) {
Andreas Huberf9334412010-12-15 15:17:42 -08001181 return -EWOULDBLOCK;
1182 }
1183
Andreas Huber3fe62152011-09-16 15:09:22 -07001184 if (!audio) {
Andreas Huber84066782011-08-16 09:34:26 -07001185 AString mime;
1186 CHECK(format->findString("mime", &mime));
1187 mVideoIsAVC = !strcasecmp(MEDIA_MIMETYPE_VIDEO_AVC, mime.c_str());
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001188
1189 sp<AMessage> ccNotify = new AMessage(kWhatClosedCaptionNotify, id());
1190 mCCDecoder = new CCDecoder(ccNotify);
Lajos Molnar09524832014-07-17 14:29:51 -07001191
1192 if (mSourceFlags & Source::FLAG_SECURE) {
1193 format->setInt32("secure", true);
1194 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001195 }
1196
Wei Jiabc2fb722014-07-08 16:37:57 -07001197 if (audio) {
Wei Jia88703c32014-08-06 11:24:07 -07001198 sp<AMessage> notify = new AMessage(kWhatAudioNotify, id());
1199 ++mAudioDecoderGeneration;
1200 notify->setInt32("generation", mAudioDecoderGeneration);
1201
Wei Jiabc2fb722014-07-08 16:37:57 -07001202 if (mOffloadAudio) {
1203 *decoder = new DecoderPassThrough(notify);
1204 } else {
1205 *decoder = new Decoder(notify);
1206 }
1207 } else {
Wei Jia88703c32014-08-06 11:24:07 -07001208 sp<AMessage> notify = new AMessage(kWhatVideoNotify, id());
1209 ++mVideoDecoderGeneration;
1210 notify->setInt32("generation", mVideoDecoderGeneration);
1211
Wei Jiabc2fb722014-07-08 16:37:57 -07001212 *decoder = new Decoder(notify, mNativeWindow);
1213 }
Lajos Molnar1cd13982014-01-17 15:12:51 -08001214 (*decoder)->init();
Andreas Huber84066782011-08-16 09:34:26 -07001215 (*decoder)->configure(format);
Andreas Huberf9334412010-12-15 15:17:42 -08001216
Lajos Molnar09524832014-07-17 14:29:51 -07001217 // allocate buffers to decrypt widevine source buffers
1218 if (!audio && (mSourceFlags & Source::FLAG_SECURE)) {
1219 Vector<sp<ABuffer> > inputBufs;
1220 CHECK_EQ((*decoder)->getInputBuffers(&inputBufs), (status_t)OK);
1221
1222 Vector<MediaBuffer *> mediaBufs;
1223 for (size_t i = 0; i < inputBufs.size(); i++) {
1224 const sp<ABuffer> &buffer = inputBufs[i];
1225 MediaBuffer *mbuf = new MediaBuffer(buffer->data(), buffer->size());
1226 mediaBufs.push(mbuf);
1227 }
1228
1229 status_t err = mSource->setBuffers(audio, mediaBufs);
1230 if (err != OK) {
1231 for (size_t i = 0; i < mediaBufs.size(); ++i) {
1232 mediaBufs[i]->release();
1233 }
1234 mediaBufs.clear();
1235 ALOGE("Secure source didn't support secure mediaBufs.");
1236 return err;
1237 }
1238 }
Andreas Huberf9334412010-12-15 15:17:42 -08001239 return OK;
1240}
1241
1242status_t NuPlayer::feedDecoderInputData(bool audio, const sp<AMessage> &msg) {
1243 sp<AMessage> reply;
1244 CHECK(msg->findMessage("reply", &reply));
1245
Wei Jia53904f32014-07-29 10:22:53 -07001246 if ((audio && mFlushingAudio != NONE)
1247 || (!audio && mFlushingVideo != NONE)) {
Wei Jiab189a5b2014-08-07 06:11:39 +00001248 reply->setInt32("err", INFO_DISCONTINUITY);
1249 reply->post();
1250 return OK;
Andreas Huberf9334412010-12-15 15:17:42 -08001251 }
1252
1253 sp<ABuffer> accessUnit;
Andreas Huberf9334412010-12-15 15:17:42 -08001254
Phil Burk9f526492014-09-03 15:04:12 -07001255 // Aggregate smaller buffers into a larger buffer.
1256 // The goal is to reduce power consumption.
1257 // Unfortunately this does not work with the software AAC decoder.
1258 // TODO optimize buffer size for power consumption
1259 // The offload read buffer size is 32 KB but 24 KB uses less power.
1260 const int kAudioBigBufferSizeBytes = 24 * 1024;
1261 bool doBufferAggregation = (audio && mOffloadAudio);
1262 sp<ABuffer> biggerBuffer;
1263 bool needMoreData = false;
1264 int numSmallBuffers = 0;
1265 bool gotTime = false;
1266
Andreas Huber3fe62152011-09-16 15:09:22 -07001267 bool dropAccessUnit;
1268 do {
Phil Burk9f526492014-09-03 15:04:12 -07001269 status_t err;
1270 // Did we save an accessUnit earlier because of a discontinuity?
1271 if (audio && (mPendingAudioAccessUnit != NULL)) {
1272 accessUnit = mPendingAudioAccessUnit;
1273 mPendingAudioAccessUnit.clear();
1274 err = mPendingAudioErr;
1275 ALOGV("feedDecoderInputData() use mPendingAudioAccessUnit");
1276 } else {
1277 err = mSource->dequeueAccessUnit(audio, &accessUnit);
1278 }
Andreas Huber5bc087c2010-12-23 10:27:40 -08001279
Andreas Huber3fe62152011-09-16 15:09:22 -07001280 if (err == -EWOULDBLOCK) {
Phil Burk9f526492014-09-03 15:04:12 -07001281 ALOGD("feedDecoderInputData() got EWOULDBLOCK");
1282 if (biggerBuffer == NULL) {
1283 return err;
1284 } else {
1285 break; // Reply with data that we already have.
1286 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001287 } else if (err != OK) {
1288 if (err == INFO_DISCONTINUITY) {
Phil Burk9f526492014-09-03 15:04:12 -07001289 if (biggerBuffer != NULL) {
1290 // We already have some data so save this for later.
1291 mPendingAudioErr = err;
1292 mPendingAudioAccessUnit = accessUnit;
1293 accessUnit.clear();
1294 ALOGD("feedDecoderInputData() save discontinuity for later");
1295 break;
1296 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001297 int32_t type;
1298 CHECK(accessUnit->meta()->findInt32("discontinuity", &type));
Andreas Huber53df1a42010-12-22 10:03:04 -08001299
Andreas Huber3fe62152011-09-16 15:09:22 -07001300 bool formatChange =
Andreas Huber6e3d3112011-11-28 12:36:11 -08001301 (audio &&
1302 (type & ATSParser::DISCONTINUITY_AUDIO_FORMAT))
1303 || (!audio &&
1304 (type & ATSParser::DISCONTINUITY_VIDEO_FORMAT));
Andreas Huber53df1a42010-12-22 10:03:04 -08001305
Andreas Huber6e3d3112011-11-28 12:36:11 -08001306 bool timeChange = (type & ATSParser::DISCONTINUITY_TIME) != 0;
1307
Steve Blockdf64d152012-01-04 20:05:49 +00001308 ALOGI("%s discontinuity (formatChange=%d, time=%d)",
Andreas Huber6e3d3112011-11-28 12:36:11 -08001309 audio ? "audio" : "video", formatChange, timeChange);
Andreas Huber32f3cef2011-03-02 15:34:46 -08001310
Andreas Huber3fe62152011-09-16 15:09:22 -07001311 if (audio) {
1312 mSkipRenderingAudioUntilMediaTimeUs = -1;
1313 } else {
1314 mSkipRenderingVideoUntilMediaTimeUs = -1;
1315 }
Andreas Huber32f3cef2011-03-02 15:34:46 -08001316
Andreas Huber6e3d3112011-11-28 12:36:11 -08001317 if (timeChange) {
1318 sp<AMessage> extra;
1319 if (accessUnit->meta()->findMessage("extra", &extra)
1320 && extra != NULL) {
1321 int64_t resumeAtMediaTimeUs;
1322 if (extra->findInt64(
1323 "resume-at-mediatimeUs", &resumeAtMediaTimeUs)) {
Steve Blockdf64d152012-01-04 20:05:49 +00001324 ALOGI("suppressing rendering of %s until %lld us",
Andreas Huber6e3d3112011-11-28 12:36:11 -08001325 audio ? "audio" : "video", resumeAtMediaTimeUs);
Andreas Huber3fe62152011-09-16 15:09:22 -07001326
Andreas Huber6e3d3112011-11-28 12:36:11 -08001327 if (audio) {
1328 mSkipRenderingAudioUntilMediaTimeUs =
1329 resumeAtMediaTimeUs;
1330 } else {
1331 mSkipRenderingVideoUntilMediaTimeUs =
1332 resumeAtMediaTimeUs;
1333 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001334 }
Andreas Huber32f3cef2011-03-02 15:34:46 -08001335 }
1336 }
Andreas Huber3fe62152011-09-16 15:09:22 -07001337
Andreas Huber6e3d3112011-11-28 12:36:11 -08001338 mTimeDiscontinuityPending =
1339 mTimeDiscontinuityPending || timeChange;
1340
Lajos Molnar87603c02014-08-20 19:25:30 -07001341 bool seamlessFormatChange = false;
1342 sp<AMessage> newFormat = mSource->getFormat(audio);
1343 if (formatChange) {
1344 seamlessFormatChange =
1345 getDecoder(audio)->supportsSeamlessFormatChange(newFormat);
1346 // treat seamless format change separately
1347 formatChange = !seamlessFormatChange;
1348 }
1349 bool shutdownOrFlush = formatChange || timeChange;
1350
1351 // We want to queue up scan-sources only once per discontinuity.
1352 // We control this by doing it only if neither audio nor video are
1353 // flushing or shutting down. (After handling 1st discontinuity, one
1354 // of the flushing states will not be NONE.)
1355 // No need to scan sources if this discontinuity does not result
1356 // in a flush or shutdown, as the flushing state will stay NONE.
1357 if (mFlushingAudio == NONE && mFlushingVideo == NONE &&
1358 shutdownOrFlush) {
Robert Shiha2981012014-07-30 17:41:24 -07001359 // And we'll resume scanning sources once we're done
1360 // flushing.
1361 mDeferredActions.push_front(
1362 new SimpleAction(
1363 &NuPlayer::performScanSources));
1364 }
1365
Lajos Molnar87603c02014-08-20 19:25:30 -07001366 if (formatChange /* not seamless */) {
1367 // must change decoder
1368 flushDecoder(audio, /* needShutdown = */ true);
1369 } else if (timeChange) {
1370 // need to flush
1371 flushDecoder(audio, /* needShutdown = */ false, newFormat);
1372 err = OK;
1373 } else if (seamlessFormatChange) {
1374 // reuse existing decoder and don't flush
1375 updateDecoderFormatWithoutFlush(audio, newFormat);
1376 err = OK;
Andreas Huber6e3d3112011-11-28 12:36:11 -08001377 } else {
1378 // This stream is unaffected by the discontinuity
Andreas Huber6e3d3112011-11-28 12:36:11 -08001379 return -EWOULDBLOCK;
1380 }
Andreas Huber32f3cef2011-03-02 15:34:46 -08001381 }
1382
Andreas Huber3fe62152011-09-16 15:09:22 -07001383 reply->setInt32("err", err);
1384 reply->post();
1385 return OK;
Andreas Huberf9334412010-12-15 15:17:42 -08001386 }
1387
Andreas Huber3fe62152011-09-16 15:09:22 -07001388 if (!audio) {
1389 ++mNumFramesTotal;
1390 }
1391
1392 dropAccessUnit = false;
1393 if (!audio
Lajos Molnar09524832014-07-17 14:29:51 -07001394 && !(mSourceFlags & Source::FLAG_SECURE)
Andreas Huber3fe62152011-09-16 15:09:22 -07001395 && mVideoLateByUs > 100000ll
1396 && mVideoIsAVC
1397 && !IsAVCReferenceFrame(accessUnit)) {
1398 dropAccessUnit = true;
1399 ++mNumFramesDropped;
1400 }
Phil Burk9f526492014-09-03 15:04:12 -07001401
1402 size_t smallSize = accessUnit->size();
1403 needMoreData = false;
1404 if (doBufferAggregation && (biggerBuffer == NULL)
1405 // Don't bother if only room for a few small buffers.
1406 && (smallSize < (kAudioBigBufferSizeBytes / 3))) {
1407 // Create a larger buffer for combining smaller buffers from the extractor.
1408 biggerBuffer = new ABuffer(kAudioBigBufferSizeBytes);
1409 biggerBuffer->setRange(0, 0); // start empty
1410 }
1411
1412 if (biggerBuffer != NULL) {
1413 int64_t timeUs;
1414 bool smallTimestampValid = accessUnit->meta()->findInt64("timeUs", &timeUs);
1415 // Will the smaller buffer fit?
1416 size_t bigSize = biggerBuffer->size();
1417 size_t roomLeft = biggerBuffer->capacity() - bigSize;
1418 // Should we save this small buffer for the next big buffer?
1419 // If the first small buffer did not have a timestamp then save
1420 // any buffer that does have a timestamp until the next big buffer.
1421 if ((smallSize > roomLeft)
1422 || (!gotTime && (numSmallBuffers > 0) && smallTimestampValid)) {
1423 mPendingAudioErr = err;
1424 mPendingAudioAccessUnit = accessUnit;
1425 accessUnit.clear();
1426 } else {
1427 // Append small buffer to the bigger buffer.
1428 memcpy(biggerBuffer->base() + bigSize, accessUnit->data(), smallSize);
1429 bigSize += smallSize;
1430 biggerBuffer->setRange(0, bigSize);
1431
1432 // Keep looping until we run out of room in the biggerBuffer.
1433 needMoreData = true;
1434
1435 // Grab time from first small buffer if available.
1436 if ((numSmallBuffers == 0) && smallTimestampValid) {
1437 biggerBuffer->meta()->setInt64("timeUs", timeUs);
1438 gotTime = true;
1439 }
1440
1441 ALOGV("feedDecoderInputData() #%d, smallSize = %zu, bigSize = %zu, capacity = %zu",
1442 numSmallBuffers, smallSize, bigSize, biggerBuffer->capacity());
1443 numSmallBuffers++;
1444 }
1445 }
1446 } while (dropAccessUnit || needMoreData);
Andreas Huberf9334412010-12-15 15:17:42 -08001447
Steve Block3856b092011-10-20 11:56:00 +01001448 // ALOGV("returned a valid buffer of %s data", audio ? "audio" : "video");
Andreas Huberf9334412010-12-15 15:17:42 -08001449
1450#if 0
1451 int64_t mediaTimeUs;
1452 CHECK(accessUnit->meta()->findInt64("timeUs", &mediaTimeUs));
Steve Block3856b092011-10-20 11:56:00 +01001453 ALOGV("feeding %s input buffer at media time %.2f secs",
Andreas Huberf9334412010-12-15 15:17:42 -08001454 audio ? "audio" : "video",
1455 mediaTimeUs / 1E6);
1456#endif
1457
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001458 if (!audio) {
1459 mCCDecoder->decode(accessUnit);
1460 }
1461
Phil Burk9f526492014-09-03 15:04:12 -07001462 if (biggerBuffer != NULL) {
1463 ALOGV("feedDecoderInputData() reply with aggregated buffer, %d", numSmallBuffers);
1464 reply->setBuffer("buffer", biggerBuffer);
1465 } else {
1466 reply->setBuffer("buffer", accessUnit);
1467 }
1468
Andreas Huberf9334412010-12-15 15:17:42 -08001469 reply->post();
1470
1471 return OK;
1472}
1473
1474void NuPlayer::renderBuffer(bool audio, const sp<AMessage> &msg) {
Steve Block3856b092011-10-20 11:56:00 +01001475 // ALOGV("renderBuffer %s", audio ? "audio" : "video");
Andreas Huberf9334412010-12-15 15:17:42 -08001476
1477 sp<AMessage> reply;
1478 CHECK(msg->findMessage("reply", &reply));
1479
Wei Jia53904f32014-07-29 10:22:53 -07001480 if ((audio && mFlushingAudio != NONE)
1481 || (!audio && mFlushingVideo != NONE)) {
Andreas Huber18ac5402011-08-31 15:04:25 -07001482 // We're currently attempting to flush the decoder, in order
1483 // to complete this, the decoder wants all its buffers back,
1484 // so we don't want any output buffers it sent us (from before
1485 // we initiated the flush) to be stuck in the renderer's queue.
1486
Steve Block3856b092011-10-20 11:56:00 +01001487 ALOGV("we're still flushing the %s decoder, sending its output buffer"
Andreas Huber18ac5402011-08-31 15:04:25 -07001488 " right back.", audio ? "audio" : "video");
1489
1490 reply->post();
1491 return;
1492 }
1493
Andreas Huber2d8bedd2012-02-21 14:38:23 -08001494 sp<ABuffer> buffer;
1495 CHECK(msg->findBuffer("buffer", &buffer));
Andreas Huberf9334412010-12-15 15:17:42 -08001496
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001497 int64_t mediaTimeUs;
1498 CHECK(buffer->meta()->findInt64("timeUs", &mediaTimeUs));
1499
Andreas Huber32f3cef2011-03-02 15:34:46 -08001500 int64_t &skipUntilMediaTimeUs =
1501 audio
1502 ? mSkipRenderingAudioUntilMediaTimeUs
1503 : mSkipRenderingVideoUntilMediaTimeUs;
1504
1505 if (skipUntilMediaTimeUs >= 0) {
Andreas Huber32f3cef2011-03-02 15:34:46 -08001506
1507 if (mediaTimeUs < skipUntilMediaTimeUs) {
Steve Block3856b092011-10-20 11:56:00 +01001508 ALOGV("dropping %s buffer at time %lld as requested.",
Andreas Huber32f3cef2011-03-02 15:34:46 -08001509 audio ? "audio" : "video",
1510 mediaTimeUs);
1511
1512 reply->post();
1513 return;
1514 }
1515
1516 skipUntilMediaTimeUs = -1;
1517 }
1518
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001519 if (!audio && mCCDecoder->isSelected()) {
1520 mCCDecoder->display(mediaTimeUs);
1521 }
1522
Andreas Huberf9334412010-12-15 15:17:42 -08001523 mRenderer->queueBuffer(audio, buffer, reply);
1524}
1525
Chong Zhangced1c2f2014-08-08 15:22:35 -07001526void NuPlayer::updateVideoSize(
1527 const sp<AMessage> &inputFormat,
1528 const sp<AMessage> &outputFormat) {
1529 if (inputFormat == NULL) {
1530 ALOGW("Unknown video size, reporting 0x0!");
1531 notifyListener(MEDIA_SET_VIDEO_SIZE, 0, 0);
1532 return;
1533 }
1534
1535 int32_t displayWidth, displayHeight;
1536 int32_t cropLeft, cropTop, cropRight, cropBottom;
1537
1538 if (outputFormat != NULL) {
1539 int32_t width, height;
1540 CHECK(outputFormat->findInt32("width", &width));
1541 CHECK(outputFormat->findInt32("height", &height));
1542
1543 int32_t cropLeft, cropTop, cropRight, cropBottom;
1544 CHECK(outputFormat->findRect(
1545 "crop",
1546 &cropLeft, &cropTop, &cropRight, &cropBottom));
1547
1548 displayWidth = cropRight - cropLeft + 1;
1549 displayHeight = cropBottom - cropTop + 1;
1550
1551 ALOGV("Video output format changed to %d x %d "
1552 "(crop: %d x %d @ (%d, %d))",
1553 width, height,
1554 displayWidth,
1555 displayHeight,
1556 cropLeft, cropTop);
1557 } else {
1558 CHECK(inputFormat->findInt32("width", &displayWidth));
1559 CHECK(inputFormat->findInt32("height", &displayHeight));
1560
1561 ALOGV("Video input format %d x %d", displayWidth, displayHeight);
1562 }
1563
1564 // Take into account sample aspect ratio if necessary:
1565 int32_t sarWidth, sarHeight;
1566 if (inputFormat->findInt32("sar-width", &sarWidth)
1567 && inputFormat->findInt32("sar-height", &sarHeight)) {
1568 ALOGV("Sample aspect ratio %d : %d", sarWidth, sarHeight);
1569
1570 displayWidth = (displayWidth * sarWidth) / sarHeight;
1571
1572 ALOGV("display dimensions %d x %d", displayWidth, displayHeight);
1573 }
1574
1575 int32_t rotationDegrees;
1576 if (!inputFormat->findInt32("rotation-degrees", &rotationDegrees)) {
1577 rotationDegrees = 0;
1578 }
1579
1580 if (rotationDegrees == 90 || rotationDegrees == 270) {
1581 int32_t tmp = displayWidth;
1582 displayWidth = displayHeight;
1583 displayHeight = tmp;
1584 }
1585
1586 notifyListener(
1587 MEDIA_SET_VIDEO_SIZE,
1588 displayWidth,
1589 displayHeight);
1590}
1591
Chong Zhangdcb89b32013-08-06 09:44:47 -07001592void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) {
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001593 if (mDriver == NULL) {
Andreas Huberf9334412010-12-15 15:17:42 -08001594 return;
1595 }
1596
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001597 sp<NuPlayerDriver> driver = mDriver.promote();
Andreas Huberf9334412010-12-15 15:17:42 -08001598
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001599 if (driver == NULL) {
Andreas Huberf9334412010-12-15 15:17:42 -08001600 return;
1601 }
1602
Chong Zhangdcb89b32013-08-06 09:44:47 -07001603 driver->notifyListener(msg, ext1, ext2, in);
Andreas Huberf9334412010-12-15 15:17:42 -08001604}
1605
Lajos Molnar87603c02014-08-20 19:25:30 -07001606void NuPlayer::flushDecoder(
1607 bool audio, bool needShutdown, const sp<AMessage> &newFormat) {
Andreas Huber14f76722013-01-15 09:04:18 -08001608 ALOGV("[%s] flushDecoder needShutdown=%d",
1609 audio ? "audio" : "video", needShutdown);
1610
Lajos Molnar87603c02014-08-20 19:25:30 -07001611 const sp<Decoder> &decoder = getDecoder(audio);
1612 if (decoder == NULL) {
Steve Blockdf64d152012-01-04 20:05:49 +00001613 ALOGI("flushDecoder %s without decoder present",
Andreas Huber6e3d3112011-11-28 12:36:11 -08001614 audio ? "audio" : "video");
Lajos Molnar87603c02014-08-20 19:25:30 -07001615 return;
Andreas Huber6e3d3112011-11-28 12:36:11 -08001616 }
1617
Andreas Huber1aef2112011-01-04 14:01:29 -08001618 // Make sure we don't continue to scan sources until we finish flushing.
1619 ++mScanSourcesGeneration;
Andreas Huber43c3e6c2011-01-05 12:17:08 -08001620 mScanSourcesPending = false;
Andreas Huber1aef2112011-01-04 14:01:29 -08001621
Lajos Molnar87603c02014-08-20 19:25:30 -07001622 decoder->signalFlush(newFormat);
Andreas Huber1aef2112011-01-04 14:01:29 -08001623 mRenderer->flush(audio);
1624
1625 FlushStatus newStatus =
1626 needShutdown ? FLUSHING_DECODER_SHUTDOWN : FLUSHING_DECODER;
1627
1628 if (audio) {
Wei Jia53904f32014-07-29 10:22:53 -07001629 ALOGE_IF(mFlushingAudio != NONE,
1630 "audio flushDecoder() is called in state %d", mFlushingAudio);
Andreas Huber1aef2112011-01-04 14:01:29 -08001631 mFlushingAudio = newStatus;
Andreas Huber1aef2112011-01-04 14:01:29 -08001632 } else {
Wei Jia53904f32014-07-29 10:22:53 -07001633 ALOGE_IF(mFlushingVideo != NONE,
1634 "video flushDecoder() is called in state %d", mFlushingVideo);
Andreas Huber1aef2112011-01-04 14:01:29 -08001635 mFlushingVideo = newStatus;
Chong Zhangb86e68f2014-08-01 13:46:53 -07001636
1637 if (mCCDecoder != NULL) {
1638 mCCDecoder->flush();
1639 }
Andreas Huber1aef2112011-01-04 14:01:29 -08001640 }
1641}
1642
Lajos Molnar87603c02014-08-20 19:25:30 -07001643void NuPlayer::updateDecoderFormatWithoutFlush(
1644 bool audio, const sp<AMessage> &format) {
1645 ALOGV("[%s] updateDecoderFormatWithoutFlush", audio ? "audio" : "video");
1646
1647 const sp<Decoder> &decoder = getDecoder(audio);
1648 if (decoder == NULL) {
1649 ALOGI("updateDecoderFormatWithoutFlush %s without decoder present",
1650 audio ? "audio" : "video");
1651 return;
1652 }
1653
1654 decoder->signalUpdateFormat(format);
1655}
1656
Chong Zhangced1c2f2014-08-08 15:22:35 -07001657void NuPlayer::queueDecoderShutdown(
1658 bool audio, bool video, const sp<AMessage> &reply) {
1659 ALOGI("queueDecoderShutdown audio=%d, video=%d", audio, video);
Andreas Huber84066782011-08-16 09:34:26 -07001660
Chong Zhangced1c2f2014-08-08 15:22:35 -07001661 mDeferredActions.push_back(
1662 new ShutdownDecoderAction(audio, video));
Andreas Huber84066782011-08-16 09:34:26 -07001663
Chong Zhangced1c2f2014-08-08 15:22:35 -07001664 mDeferredActions.push_back(
1665 new SimpleAction(&NuPlayer::performScanSources));
Andreas Huber84066782011-08-16 09:34:26 -07001666
Chong Zhangced1c2f2014-08-08 15:22:35 -07001667 mDeferredActions.push_back(new PostMessageAction(reply));
1668
1669 processDeferredActions();
Andreas Huber84066782011-08-16 09:34:26 -07001670}
1671
James Dong0d268a32012-08-31 12:18:27 -07001672status_t NuPlayer::setVideoScalingMode(int32_t mode) {
1673 mVideoScalingMode = mode;
Andreas Huber57a339c2012-12-03 11:18:00 -08001674 if (mNativeWindow != NULL) {
James Dong0d268a32012-08-31 12:18:27 -07001675 status_t ret = native_window_set_scaling_mode(
1676 mNativeWindow->getNativeWindow().get(), mVideoScalingMode);
1677 if (ret != OK) {
1678 ALOGE("Failed to set scaling mode (%d): %s",
1679 -ret, strerror(-ret));
1680 return ret;
1681 }
1682 }
1683 return OK;
1684}
1685
Chong Zhangdcb89b32013-08-06 09:44:47 -07001686status_t NuPlayer::getTrackInfo(Parcel* reply) const {
1687 sp<AMessage> msg = new AMessage(kWhatGetTrackInfo, id());
1688 msg->setPointer("reply", reply);
1689
1690 sp<AMessage> response;
1691 status_t err = msg->postAndAwaitResponse(&response);
1692 return err;
1693}
1694
Robert Shih7c4f0d72014-07-09 18:53:31 -07001695status_t NuPlayer::getSelectedTrack(int32_t type, Parcel* reply) const {
1696 sp<AMessage> msg = new AMessage(kWhatGetSelectedTrack, id());
1697 msg->setPointer("reply", reply);
1698 msg->setInt32("type", type);
1699
1700 sp<AMessage> response;
1701 status_t err = msg->postAndAwaitResponse(&response);
1702 if (err == OK && response != NULL) {
1703 CHECK(response->findInt32("err", &err));
1704 }
1705 return err;
1706}
1707
Chong Zhangdcb89b32013-08-06 09:44:47 -07001708status_t NuPlayer::selectTrack(size_t trackIndex, bool select) {
1709 sp<AMessage> msg = new AMessage(kWhatSelectTrack, id());
1710 msg->setSize("trackIndex", trackIndex);
1711 msg->setInt32("select", select);
1712
1713 sp<AMessage> response;
1714 status_t err = msg->postAndAwaitResponse(&response);
1715
Chong Zhang404fced2014-06-11 14:45:31 -07001716 if (err != OK) {
1717 return err;
1718 }
1719
1720 if (!response->findInt32("err", &err)) {
1721 err = OK;
1722 }
1723
Chong Zhangdcb89b32013-08-06 09:44:47 -07001724 return err;
1725}
1726
Andreas Huberb7c8e912012-11-27 15:02:53 -08001727void NuPlayer::schedulePollDuration() {
1728 sp<AMessage> msg = new AMessage(kWhatPollDuration, id());
1729 msg->setInt32("generation", mPollDurationGeneration);
1730 msg->post();
1731}
1732
1733void NuPlayer::cancelPollDuration() {
1734 ++mPollDurationGeneration;
1735}
1736
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001737void NuPlayer::processDeferredActions() {
1738 while (!mDeferredActions.empty()) {
1739 // We won't execute any deferred actions until we're no longer in
1740 // an intermediate state, i.e. one more more decoders are currently
1741 // flushing or shutting down.
1742
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001743 if (mFlushingAudio != NONE || mFlushingVideo != NONE) {
1744 // We're currently flushing, postpone the reset until that's
1745 // completed.
1746
1747 ALOGV("postponing action mFlushingAudio=%d, mFlushingVideo=%d",
1748 mFlushingAudio, mFlushingVideo);
1749
1750 break;
1751 }
1752
1753 sp<Action> action = *mDeferredActions.begin();
1754 mDeferredActions.erase(mDeferredActions.begin());
1755
1756 action->execute(this);
1757 }
1758}
1759
1760void NuPlayer::performSeek(int64_t seekTimeUs) {
1761 ALOGV("performSeek seekTimeUs=%lld us (%.2f secs)",
1762 seekTimeUs,
1763 seekTimeUs / 1E6);
1764
Andy Hungadf34bf2014-09-03 18:22:22 -07001765 if (mSource == NULL) {
1766 // This happens when reset occurs right before the loop mode
1767 // asynchronously seeks to the start of the stream.
1768 LOG_ALWAYS_FATAL_IF(mAudioDecoder != NULL || mVideoDecoder != NULL,
1769 "mSource is NULL and decoders not NULL audio(%p) video(%p)",
1770 mAudioDecoder.get(), mVideoDecoder.get());
1771 return;
1772 }
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001773 mSource->seekTo(seekTimeUs);
Robert Shihd3b0bbb2014-07-23 15:00:25 -07001774 ++mTimedTextGeneration;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001775
1776 if (mDriver != NULL) {
1777 sp<NuPlayerDriver> driver = mDriver.promote();
1778 if (driver != NULL) {
1779 driver->notifyPosition(seekTimeUs);
1780 driver->notifySeekComplete();
1781 }
1782 }
1783
1784 // everything's flushed, continue playback.
1785}
1786
1787void NuPlayer::performDecoderFlush() {
1788 ALOGV("performDecoderFlush");
1789
Andreas Huberda9740e2013-04-16 10:54:03 -07001790 if (mAudioDecoder == NULL && mVideoDecoder == NULL) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001791 return;
1792 }
1793
1794 mTimeDiscontinuityPending = true;
1795
1796 if (mAudioDecoder != NULL) {
1797 flushDecoder(true /* audio */, false /* needShutdown */);
1798 }
1799
1800 if (mVideoDecoder != NULL) {
1801 flushDecoder(false /* audio */, false /* needShutdown */);
1802 }
1803}
1804
Andreas Huber14f76722013-01-15 09:04:18 -08001805void NuPlayer::performDecoderShutdown(bool audio, bool video) {
1806 ALOGV("performDecoderShutdown audio=%d, video=%d", audio, video);
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001807
Andreas Huber14f76722013-01-15 09:04:18 -08001808 if ((!audio || mAudioDecoder == NULL)
1809 && (!video || mVideoDecoder == NULL)) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001810 return;
1811 }
1812
1813 mTimeDiscontinuityPending = true;
1814
Andreas Huber14f76722013-01-15 09:04:18 -08001815 if (audio && mAudioDecoder != NULL) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001816 flushDecoder(true /* audio */, true /* needShutdown */);
1817 }
1818
Andreas Huber14f76722013-01-15 09:04:18 -08001819 if (video && mVideoDecoder != NULL) {
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001820 flushDecoder(false /* audio */, true /* needShutdown */);
1821 }
1822}
1823
1824void NuPlayer::performReset() {
1825 ALOGV("performReset");
1826
1827 CHECK(mAudioDecoder == NULL);
1828 CHECK(mVideoDecoder == NULL);
1829
1830 cancelPollDuration();
1831
1832 ++mScanSourcesGeneration;
1833 mScanSourcesPending = false;
1834
Lajos Molnar09524832014-07-17 14:29:51 -07001835 if (mRendererLooper != NULL) {
1836 if (mRenderer != NULL) {
1837 mRendererLooper->unregisterHandler(mRenderer->id());
1838 }
1839 mRendererLooper->stop();
1840 mRendererLooper.clear();
1841 }
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001842 mRenderer.clear();
1843
1844 if (mSource != NULL) {
1845 mSource->stop();
Andreas Huberb5f25f02013-02-05 10:14:26 -08001846
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001847 mSource.clear();
1848 }
1849
1850 if (mDriver != NULL) {
1851 sp<NuPlayerDriver> driver = mDriver.promote();
1852 if (driver != NULL) {
1853 driver->notifyResetComplete();
1854 }
1855 }
Andreas Huber57a339c2012-12-03 11:18:00 -08001856
1857 mStarted = false;
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001858}
1859
1860void NuPlayer::performScanSources() {
1861 ALOGV("performScanSources");
1862
Andreas Huber57a339c2012-12-03 11:18:00 -08001863 if (!mStarted) {
1864 return;
1865 }
1866
Andreas Hubera1f8ab02012-11-30 10:53:22 -08001867 if (mAudioDecoder == NULL || mVideoDecoder == NULL) {
1868 postScanSources();
1869 }
1870}
1871
Andreas Huber57a339c2012-12-03 11:18:00 -08001872void NuPlayer::performSetSurface(const sp<NativeWindowWrapper> &wrapper) {
1873 ALOGV("performSetSurface");
1874
1875 mNativeWindow = wrapper;
1876
1877 // XXX - ignore error from setVideoScalingMode for now
1878 setVideoScalingMode(mVideoScalingMode);
Chong Zhang13d6faa2014-08-22 15:35:28 -07001879
1880 if (mDriver != NULL) {
1881 sp<NuPlayerDriver> driver = mDriver.promote();
1882 if (driver != NULL) {
1883 driver->notifySetSurfaceComplete();
1884 }
1885 }
Andreas Huber57a339c2012-12-03 11:18:00 -08001886}
1887
Andreas Huber9575c962013-02-05 13:59:56 -08001888void NuPlayer::onSourceNotify(const sp<AMessage> &msg) {
1889 int32_t what;
1890 CHECK(msg->findInt32("what", &what));
1891
1892 switch (what) {
1893 case Source::kWhatPrepared:
1894 {
Andreas Huberb5f28d42013-04-25 15:11:19 -07001895 if (mSource == NULL) {
1896 // This is a stale notification from a source that was
1897 // asynchronously preparing when the client called reset().
1898 // We handled the reset, the source is gone.
1899 break;
1900 }
1901
Andreas Huberec0c5972013-02-05 14:47:13 -08001902 int32_t err;
1903 CHECK(msg->findInt32("err", &err));
1904
Andreas Huber9575c962013-02-05 13:59:56 -08001905 sp<NuPlayerDriver> driver = mDriver.promote();
1906 if (driver != NULL) {
Marco Nelissendd114d12014-05-28 15:23:14 -07001907 // notify duration first, so that it's definitely set when
1908 // the app received the "prepare complete" callback.
1909 int64_t durationUs;
1910 if (mSource->getDuration(&durationUs) == OK) {
1911 driver->notifyDuration(durationUs);
1912 }
Andreas Huberec0c5972013-02-05 14:47:13 -08001913 driver->notifyPrepareCompleted(err);
Andreas Huber9575c962013-02-05 13:59:56 -08001914 }
Andreas Huber99759402013-04-01 14:28:31 -07001915
Andreas Huber9575c962013-02-05 13:59:56 -08001916 break;
1917 }
1918
1919 case Source::kWhatFlagsChanged:
1920 {
1921 uint32_t flags;
1922 CHECK(msg->findInt32("flags", (int32_t *)&flags));
1923
Chong Zhang4b7069d2013-09-11 12:52:43 -07001924 sp<NuPlayerDriver> driver = mDriver.promote();
1925 if (driver != NULL) {
1926 driver->notifyFlagsChanged(flags);
1927 }
1928
Andreas Huber9575c962013-02-05 13:59:56 -08001929 if ((mSourceFlags & Source::FLAG_DYNAMIC_DURATION)
1930 && (!(flags & Source::FLAG_DYNAMIC_DURATION))) {
1931 cancelPollDuration();
1932 } else if (!(mSourceFlags & Source::FLAG_DYNAMIC_DURATION)
1933 && (flags & Source::FLAG_DYNAMIC_DURATION)
1934 && (mAudioDecoder != NULL || mVideoDecoder != NULL)) {
1935 schedulePollDuration();
1936 }
1937
1938 mSourceFlags = flags;
1939 break;
1940 }
1941
1942 case Source::kWhatVideoSizeChanged:
1943 {
Chong Zhangced1c2f2014-08-08 15:22:35 -07001944 sp<AMessage> format;
1945 CHECK(msg->findMessage("format", &format));
Andreas Huber9575c962013-02-05 13:59:56 -08001946
Chong Zhangced1c2f2014-08-08 15:22:35 -07001947 updateVideoSize(format);
Andreas Huber9575c962013-02-05 13:59:56 -08001948 break;
1949 }
1950
Chong Zhang2a3cc9a2014-08-21 17:48:26 -07001951 case Source::kWhatBufferingUpdate:
1952 {
1953 int32_t percentage;
1954 CHECK(msg->findInt32("percentage", &percentage));
1955
1956 notifyListener(MEDIA_BUFFERING_UPDATE, percentage, 0);
1957 break;
1958 }
1959
Roger Jönssonb50e83e2013-01-21 16:26:41 +01001960 case Source::kWhatBufferingStart:
1961 {
1962 notifyListener(MEDIA_INFO, MEDIA_INFO_BUFFERING_START, 0);
1963 break;
1964 }
1965
1966 case Source::kWhatBufferingEnd:
1967 {
1968 notifyListener(MEDIA_INFO, MEDIA_INFO_BUFFERING_END, 0);
1969 break;
1970 }
1971
Chong Zhangdcb89b32013-08-06 09:44:47 -07001972 case Source::kWhatSubtitleData:
1973 {
1974 sp<ABuffer> buffer;
1975 CHECK(msg->findBuffer("buffer", &buffer));
1976
Chong Zhang404fced2014-06-11 14:45:31 -07001977 sendSubtitleData(buffer, 0 /* baseIndex */);
Chong Zhangdcb89b32013-08-06 09:44:47 -07001978 break;
1979 }
1980
Robert Shihd3b0bbb2014-07-23 15:00:25 -07001981 case Source::kWhatTimedTextData:
1982 {
1983 int32_t generation;
1984 if (msg->findInt32("generation", &generation)
1985 && generation != mTimedTextGeneration) {
1986 break;
1987 }
1988
1989 sp<ABuffer> buffer;
1990 CHECK(msg->findBuffer("buffer", &buffer));
1991
1992 sp<NuPlayerDriver> driver = mDriver.promote();
1993 if (driver == NULL) {
1994 break;
1995 }
1996
1997 int posMs;
1998 int64_t timeUs, posUs;
1999 driver->getCurrentPosition(&posMs);
2000 posUs = posMs * 1000;
2001 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2002
2003 if (posUs < timeUs) {
2004 if (!msg->findInt32("generation", &generation)) {
2005 msg->setInt32("generation", mTimedTextGeneration);
2006 }
2007 msg->post(timeUs - posUs);
2008 } else {
2009 sendTimedTextData(buffer);
2010 }
2011 break;
2012 }
2013
Andreas Huber14f76722013-01-15 09:04:18 -08002014 case Source::kWhatQueueDecoderShutdown:
2015 {
2016 int32_t audio, video;
2017 CHECK(msg->findInt32("audio", &audio));
2018 CHECK(msg->findInt32("video", &video));
2019
2020 sp<AMessage> reply;
2021 CHECK(msg->findMessage("reply", &reply));
2022
2023 queueDecoderShutdown(audio, video, reply);
2024 break;
2025 }
2026
Ronghua Wu80276872014-08-28 15:50:29 -07002027 case Source::kWhatDrmNoLicense:
2028 {
2029 notifyListener(MEDIA_ERROR, MEDIA_ERROR_UNKNOWN, ERROR_DRM_NO_LICENSE);
2030 break;
2031 }
2032
Andreas Huber9575c962013-02-05 13:59:56 -08002033 default:
2034 TRESPASS();
2035 }
2036}
2037
Chong Zhanga7fa1d92014-06-11 14:49:23 -07002038void NuPlayer::onClosedCaptionNotify(const sp<AMessage> &msg) {
2039 int32_t what;
2040 CHECK(msg->findInt32("what", &what));
2041
2042 switch (what) {
2043 case NuPlayer::CCDecoder::kWhatClosedCaptionData:
2044 {
2045 sp<ABuffer> buffer;
2046 CHECK(msg->findBuffer("buffer", &buffer));
2047
2048 size_t inbandTracks = 0;
2049 if (mSource != NULL) {
2050 inbandTracks = mSource->getTrackCount();
2051 }
2052
2053 sendSubtitleData(buffer, inbandTracks);
2054 break;
2055 }
2056
2057 case NuPlayer::CCDecoder::kWhatTrackAdded:
2058 {
2059 notifyListener(MEDIA_INFO, MEDIA_INFO_METADATA_UPDATE, 0);
2060
2061 break;
2062 }
2063
2064 default:
2065 TRESPASS();
2066 }
2067
2068
2069}
2070
Chong Zhang404fced2014-06-11 14:45:31 -07002071void NuPlayer::sendSubtitleData(const sp<ABuffer> &buffer, int32_t baseIndex) {
2072 int32_t trackIndex;
2073 int64_t timeUs, durationUs;
2074 CHECK(buffer->meta()->findInt32("trackIndex", &trackIndex));
2075 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2076 CHECK(buffer->meta()->findInt64("durationUs", &durationUs));
2077
2078 Parcel in;
2079 in.writeInt32(trackIndex + baseIndex);
2080 in.writeInt64(timeUs);
2081 in.writeInt64(durationUs);
2082 in.writeInt32(buffer->size());
2083 in.writeInt32(buffer->size());
2084 in.write(buffer->data(), buffer->size());
2085
2086 notifyListener(MEDIA_SUBTITLE_DATA, 0, 0, &in);
2087}
Robert Shihd3b0bbb2014-07-23 15:00:25 -07002088
2089void NuPlayer::sendTimedTextData(const sp<ABuffer> &buffer) {
2090 const void *data;
2091 size_t size = 0;
2092 int64_t timeUs;
2093 int32_t flag = TextDescriptions::LOCAL_DESCRIPTIONS;
2094
2095 AString mime;
2096 CHECK(buffer->meta()->findString("mime", &mime));
2097 CHECK(strcasecmp(mime.c_str(), MEDIA_MIMETYPE_TEXT_3GPP) == 0);
2098
2099 data = buffer->data();
2100 size = buffer->size();
2101
2102 Parcel parcel;
2103 if (size > 0) {
2104 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2105 flag |= TextDescriptions::IN_BAND_TEXT_3GPP;
2106 TextDescriptions::getParcelOfDescriptions(
2107 (const uint8_t *)data, size, flag, timeUs / 1000, &parcel);
2108 }
2109
2110 if ((parcel.dataSize() > 0)) {
2111 notifyListener(MEDIA_TIMED_TEXT, 0, 0, &parcel);
2112 } else { // send an empty timed text
2113 notifyListener(MEDIA_TIMED_TEXT, 0, 0);
2114 }
2115}
Andreas Huberb5f25f02013-02-05 10:14:26 -08002116////////////////////////////////////////////////////////////////////////////////
2117
Chong Zhangced1c2f2014-08-08 15:22:35 -07002118sp<AMessage> NuPlayer::Source::getFormat(bool audio) {
2119 sp<MetaData> meta = getFormatMeta(audio);
2120
2121 if (meta == NULL) {
2122 return NULL;
2123 }
2124
2125 sp<AMessage> msg = new AMessage;
2126
2127 if(convertMetaDataToMessage(meta, &msg) == OK) {
2128 return msg;
2129 }
2130 return NULL;
2131}
2132
Andreas Huber9575c962013-02-05 13:59:56 -08002133void NuPlayer::Source::notifyFlagsChanged(uint32_t flags) {
2134 sp<AMessage> notify = dupNotify();
2135 notify->setInt32("what", kWhatFlagsChanged);
2136 notify->setInt32("flags", flags);
2137 notify->post();
2138}
2139
Chong Zhangced1c2f2014-08-08 15:22:35 -07002140void NuPlayer::Source::notifyVideoSizeChanged(const sp<AMessage> &format) {
Andreas Huber9575c962013-02-05 13:59:56 -08002141 sp<AMessage> notify = dupNotify();
2142 notify->setInt32("what", kWhatVideoSizeChanged);
Chong Zhangced1c2f2014-08-08 15:22:35 -07002143 notify->setMessage("format", format);
Andreas Huber9575c962013-02-05 13:59:56 -08002144 notify->post();
2145}
2146
Andreas Huberec0c5972013-02-05 14:47:13 -08002147void NuPlayer::Source::notifyPrepared(status_t err) {
Andreas Huber9575c962013-02-05 13:59:56 -08002148 sp<AMessage> notify = dupNotify();
2149 notify->setInt32("what", kWhatPrepared);
Andreas Huberec0c5972013-02-05 14:47:13 -08002150 notify->setInt32("err", err);
Andreas Huber9575c962013-02-05 13:59:56 -08002151 notify->post();
2152}
2153
Andreas Huber84333e02014-02-07 15:36:10 -08002154void NuPlayer::Source::onMessageReceived(const sp<AMessage> & /* msg */) {
Andreas Huberb5f25f02013-02-05 10:14:26 -08002155 TRESPASS();
2156}
2157
Andreas Huberf9334412010-12-15 15:17:42 -08002158} // namespace android