blob: 915dd81b4ba1469e65516977eac703c7e363d2de [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 "NuPlayerDecoder"
19#include <utils/Log.h>
Lajos Molnar1cd13982014-01-17 15:12:51 -080020#include <inttypes.h>
Andreas Huberf9334412010-12-15 15:17:42 -080021
22#include "NuPlayerDecoder.h"
23
Lajos Molnar1cd13982014-01-17 15:12:51 -080024#include <media/ICrypto.h>
Chong Zhanga7fa1d92014-06-11 14:49:23 -070025#include <media/stagefright/foundation/ABitReader.h>
Andreas Huberf9334412010-12-15 15:17:42 -080026#include <media/stagefright/foundation/ABuffer.h>
27#include <media/stagefright/foundation/ADebug.h>
Andreas Huber5bc087c2010-12-23 10:27:40 -080028#include <media/stagefright/foundation/AMessage.h>
Lajos Molnar09524832014-07-17 14:29:51 -070029#include <media/stagefright/MediaBuffer.h>
Lajos Molnar1cd13982014-01-17 15:12:51 -080030#include <media/stagefright/MediaCodec.h>
Andreas Huberf9334412010-12-15 15:17:42 -080031#include <media/stagefright/MediaDefs.h>
Lajos Molnar1cd13982014-01-17 15:12:51 -080032#include <media/stagefright/MediaErrors.h>
Andreas Huberf9334412010-12-15 15:17:42 -080033
34namespace android {
35
36NuPlayer::Decoder::Decoder(
Glenn Kasten11731182011-02-08 17:26:17 -080037 const sp<AMessage> &notify,
38 const sp<NativeWindowWrapper> &nativeWindow)
Andreas Huberf9334412010-12-15 15:17:42 -080039 : mNotify(notify),
Lajos Molnar1cd13982014-01-17 15:12:51 -080040 mNativeWindow(nativeWindow),
41 mBufferGeneration(0),
Wei Jia704e7262014-06-04 16:21:56 -070042 mPaused(true),
Lajos Molnar1cd13982014-01-17 15:12:51 -080043 mComponentName("decoder") {
44 // Every decoder has its own looper because MediaCodec operations
45 // are blocking, but NuPlayer needs asynchronous operations.
46 mDecoderLooper = new ALooper;
Marco Nelissen9e2b7912014-08-18 16:13:03 -070047 mDecoderLooper->setName("NPDecoder");
Lajos Molnar1cd13982014-01-17 15:12:51 -080048 mDecoderLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
49
50 mCodecLooper = new ALooper;
Marco Nelissen9e2b7912014-08-18 16:13:03 -070051 mCodecLooper->setName("NPDecoder-CL");
Lajos Molnar1cd13982014-01-17 15:12:51 -080052 mCodecLooper->start(false, false, ANDROID_PRIORITY_AUDIO);
Andreas Huberf9334412010-12-15 15:17:42 -080053}
54
55NuPlayer::Decoder::~Decoder() {
56}
57
Lajos Molnar09524832014-07-17 14:29:51 -070058static
59status_t PostAndAwaitResponse(
60 const sp<AMessage> &msg, sp<AMessage> *response) {
61 status_t err = msg->postAndAwaitResponse(response);
62
63 if (err != OK) {
64 return err;
65 }
66
67 if (!(*response)->findInt32("err", &err)) {
68 err = OK;
69 }
70
71 return err;
72}
73
Lajos Molnar87603c02014-08-20 19:25:30 -070074void NuPlayer::Decoder::rememberCodecSpecificData(const sp<AMessage> &format) {
75 mCSDsForCurrentFormat.clear();
76 for (int32_t i = 0; ; ++i) {
77 AString tag = "csd-";
78 tag.append(i);
79 sp<ABuffer> buffer;
80 if (!format->findBuffer(tag.c_str(), &buffer)) {
81 break;
82 }
83 mCSDsForCurrentFormat.push(buffer);
84 }
85}
86
Lajos Molnar1cd13982014-01-17 15:12:51 -080087void NuPlayer::Decoder::onConfigure(const sp<AMessage> &format) {
Andreas Huberf9334412010-12-15 15:17:42 -080088 CHECK(mCodec == NULL);
Andreas Huberf9334412010-12-15 15:17:42 -080089
Lajos Molnar1cd13982014-01-17 15:12:51 -080090 ++mBufferGeneration;
91
Andreas Huber84066782011-08-16 09:34:26 -070092 AString mime;
93 CHECK(format->findString("mime", &mime));
Andreas Huberf9334412010-12-15 15:17:42 -080094
Lajos Molnar1cd13982014-01-17 15:12:51 -080095 sp<Surface> surface = NULL;
96 if (mNativeWindow != NULL) {
97 surface = mNativeWindow->getSurfaceTextureClient();
Andreas Huber84066782011-08-16 09:34:26 -070098 }
Andreas Huberf9334412010-12-15 15:17:42 -080099
Lajos Molnar1cd13982014-01-17 15:12:51 -0800100 mComponentName = mime;
101 mComponentName.append(" decoder");
102 ALOGV("[%s] onConfigure (surface=%p)", mComponentName.c_str(), surface.get());
103
104 mCodec = MediaCodec::CreateByType(mCodecLooper, mime.c_str(), false /* encoder */);
Lajos Molnar09524832014-07-17 14:29:51 -0700105 int32_t secure = 0;
106 if (format->findInt32("secure", &secure) && secure != 0) {
107 if (mCodec != NULL) {
108 mCodec->getName(&mComponentName);
109 mComponentName.append(".secure");
110 mCodec->release();
111 ALOGI("[%s] creating", mComponentName.c_str());
112 mCodec = MediaCodec::CreateByComponentName(
113 mCodecLooper, mComponentName.c_str());
114 }
115 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800116 if (mCodec == NULL) {
Lajos Molnar09524832014-07-17 14:29:51 -0700117 ALOGE("Failed to create %s%s decoder",
118 (secure ? "secure " : ""), mime.c_str());
Lajos Molnar1cd13982014-01-17 15:12:51 -0800119 handleError(UNKNOWN_ERROR);
120 return;
121 }
122
123 mCodec->getName(&mComponentName);
124
Lajos Molnar14986f62014-09-15 11:04:44 -0700125 status_t err;
Glenn Kasten11731182011-02-08 17:26:17 -0800126 if (mNativeWindow != NULL) {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800127 // disconnect from surface as MediaCodec will reconnect
Lajos Molnar14986f62014-09-15 11:04:44 -0700128 err = native_window_api_disconnect(
129 surface.get(), NATIVE_WINDOW_API_MEDIA);
130 // We treat this as a warning, as this is a preparatory step.
131 // Codec will try to connect to the surface, which is where
132 // any error signaling will occur.
133 ALOGW_IF(err != OK, "failed to disconnect from surface: %d", err);
Lajos Molnar1cd13982014-01-17 15:12:51 -0800134 }
Lajos Molnar14986f62014-09-15 11:04:44 -0700135 err = mCodec->configure(
Lajos Molnar1cd13982014-01-17 15:12:51 -0800136 format, surface, NULL /* crypto */, 0 /* flags */);
137 if (err != OK) {
138 ALOGE("Failed to configure %s decoder (err=%d)", mComponentName.c_str(), err);
139 handleError(err);
140 return;
141 }
Lajos Molnar87603c02014-08-20 19:25:30 -0700142 rememberCodecSpecificData(format);
143
Lajos Molnar1cd13982014-01-17 15:12:51 -0800144 // the following should work in configured state
145 CHECK_EQ((status_t)OK, mCodec->getOutputFormat(&mOutputFormat));
146 CHECK_EQ((status_t)OK, mCodec->getInputFormat(&mInputFormat));
147
148 err = mCodec->start();
149 if (err != OK) {
150 ALOGE("Failed to start %s decoder (err=%d)", mComponentName.c_str(), err);
151 handleError(err);
152 return;
Andreas Huberf9334412010-12-15 15:17:42 -0800153 }
154
Lajos Molnar1cd13982014-01-17 15:12:51 -0800155 // the following should work after start
156 CHECK_EQ((status_t)OK, mCodec->getInputBuffers(&mInputBuffers));
Lajos Molnar09524832014-07-17 14:29:51 -0700157 releaseAndResetMediaBuffers();
Lajos Molnar1cd13982014-01-17 15:12:51 -0800158 CHECK_EQ((status_t)OK, mCodec->getOutputBuffers(&mOutputBuffers));
159 ALOGV("[%s] got %zu input and %zu output buffers",
160 mComponentName.c_str(),
161 mInputBuffers.size(),
162 mOutputBuffers.size());
Andreas Huber078cfcf2011-09-15 12:25:04 -0700163
Lajos Molnar1cd13982014-01-17 15:12:51 -0800164 requestCodecNotification();
Wei Jia704e7262014-06-04 16:21:56 -0700165 mPaused = false;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800166}
Andreas Huber078cfcf2011-09-15 12:25:04 -0700167
Lajos Molnar09524832014-07-17 14:29:51 -0700168void NuPlayer::Decoder::releaseAndResetMediaBuffers() {
169 for (size_t i = 0; i < mMediaBuffers.size(); i++) {
170 if (mMediaBuffers[i] != NULL) {
171 mMediaBuffers[i]->release();
172 mMediaBuffers.editItemAt(i) = NULL;
173 }
174 }
175 mMediaBuffers.resize(mInputBuffers.size());
Wei Jia81e50d02014-07-24 10:28:47 -0700176 for (size_t i = 0; i < mMediaBuffers.size(); i++) {
177 mMediaBuffers.editItemAt(i) = NULL;
178 }
Lajos Molnar09524832014-07-17 14:29:51 -0700179 mInputBufferIsDequeued.clear();
180 mInputBufferIsDequeued.resize(mInputBuffers.size());
Wei Jia81e50d02014-07-24 10:28:47 -0700181 for (size_t i = 0; i < mInputBufferIsDequeued.size(); i++) {
182 mInputBufferIsDequeued.editItemAt(i) = false;
183 }
Lajos Molnar09524832014-07-17 14:29:51 -0700184}
185
Lajos Molnar1cd13982014-01-17 15:12:51 -0800186void NuPlayer::Decoder::requestCodecNotification() {
187 if (mCodec != NULL) {
188 sp<AMessage> reply = new AMessage(kWhatCodecNotify, id());
189 reply->setInt32("generation", mBufferGeneration);
190 mCodec->requestActivityNotification(reply);
191 }
192}
193
194bool NuPlayer::Decoder::isStaleReply(const sp<AMessage> &msg) {
195 int32_t generation;
196 CHECK(msg->findInt32("generation", &generation));
197 return generation != mBufferGeneration;
198}
199
200void NuPlayer::Decoder::init() {
201 mDecoderLooper->registerHandler(this);
202}
203
204void NuPlayer::Decoder::configure(const sp<AMessage> &format) {
205 sp<AMessage> msg = new AMessage(kWhatConfigure, id());
206 msg->setMessage("format", format);
207 msg->post();
208}
209
Lajos Molnar87603c02014-08-20 19:25:30 -0700210void NuPlayer::Decoder::signalUpdateFormat(const sp<AMessage> &format) {
211 sp<AMessage> msg = new AMessage(kWhatUpdateFormat, id());
212 msg->setMessage("format", format);
213 msg->post();
214}
215
Lajos Molnar09524832014-07-17 14:29:51 -0700216status_t NuPlayer::Decoder::getInputBuffers(Vector<sp<ABuffer> > *buffers) const {
217 sp<AMessage> msg = new AMessage(kWhatGetInputBuffers, id());
218 msg->setPointer("buffers", buffers);
219
220 sp<AMessage> response;
221 return PostAndAwaitResponse(msg, &response);
222}
223
Lajos Molnar1cd13982014-01-17 15:12:51 -0800224void NuPlayer::Decoder::handleError(int32_t err)
225{
Wei Jiac22c6952014-08-29 14:47:50 -0700226 mCodec->release();
227
Lajos Molnar1cd13982014-01-17 15:12:51 -0800228 sp<AMessage> notify = mNotify->dup();
229 notify->setInt32("what", kWhatError);
230 notify->setInt32("err", err);
231 notify->post();
232}
233
234bool NuPlayer::Decoder::handleAnInputBuffer() {
235 size_t bufferIx = -1;
236 status_t res = mCodec->dequeueInputBuffer(&bufferIx);
237 ALOGV("[%s] dequeued input: %d",
238 mComponentName.c_str(), res == OK ? (int)bufferIx : res);
239 if (res != OK) {
240 if (res != -EAGAIN) {
241 handleError(res);
242 }
243 return false;
Andreas Huber078cfcf2011-09-15 12:25:04 -0700244 }
245
Lajos Molnar1cd13982014-01-17 15:12:51 -0800246 CHECK_LT(bufferIx, mInputBuffers.size());
Andreas Huberf9334412010-12-15 15:17:42 -0800247
Lajos Molnar09524832014-07-17 14:29:51 -0700248 if (mMediaBuffers[bufferIx] != NULL) {
249 mMediaBuffers[bufferIx]->release();
250 mMediaBuffers.editItemAt(bufferIx) = NULL;
251 }
252 mInputBufferIsDequeued.editItemAt(bufferIx) = true;
253
Lajos Molnar1cd13982014-01-17 15:12:51 -0800254 sp<AMessage> reply = new AMessage(kWhatInputBufferFilled, id());
255 reply->setSize("buffer-ix", bufferIx);
256 reply->setInt32("generation", mBufferGeneration);
257
Lajos Molnar87603c02014-08-20 19:25:30 -0700258 if (!mCSDsToSubmit.isEmpty()) {
259 sp<ABuffer> buffer = mCSDsToSubmit.itemAt(0);
260 ALOGI("[%s] resubmitting CSD", mComponentName.c_str());
261 reply->setBuffer("buffer", buffer);
262 mCSDsToSubmit.removeAt(0);
263 reply->post();
264 return true;
265 }
266
Lajos Molnar1cd13982014-01-17 15:12:51 -0800267 sp<AMessage> notify = mNotify->dup();
268 notify->setInt32("what", kWhatFillThisBuffer);
269 notify->setBuffer("buffer", mInputBuffers[bufferIx]);
270 notify->setMessage("reply", reply);
271 notify->post();
272 return true;
273}
274
275void android::NuPlayer::Decoder::onInputBufferFilled(const sp<AMessage> &msg) {
276 size_t bufferIx;
277 CHECK(msg->findSize("buffer-ix", &bufferIx));
278 CHECK_LT(bufferIx, mInputBuffers.size());
279 sp<ABuffer> codecBuffer = mInputBuffers[bufferIx];
280
281 sp<ABuffer> buffer;
282 bool hasBuffer = msg->findBuffer("buffer", &buffer);
Lajos Molnar09524832014-07-17 14:29:51 -0700283
284 // handle widevine classic source - that fills an arbitrary input buffer
285 MediaBuffer *mediaBuffer = NULL;
286 if (hasBuffer && buffer->meta()->findPointer(
287 "mediaBuffer", (void **)&mediaBuffer)) {
288 if (mediaBuffer == NULL) {
289 // received no actual buffer
290 ALOGW("[%s] received null MediaBuffer %s",
291 mComponentName.c_str(), msg->debugString().c_str());
292 buffer = NULL;
293 } else {
294 // likely filled another buffer than we requested: adjust buffer index
295 size_t ix;
296 for (ix = 0; ix < mInputBuffers.size(); ix++) {
297 const sp<ABuffer> &buf = mInputBuffers[ix];
298 if (buf->data() == mediaBuffer->data()) {
299 // all input buffers are dequeued on start, hence the check
300 CHECK(mInputBufferIsDequeued[ix]);
301 ALOGV("[%s] received MediaBuffer for #%zu instead of #%zu",
302 mComponentName.c_str(), ix, bufferIx);
303
304 // TRICKY: need buffer for the metadata, so instead, set
305 // codecBuffer to the same (though incorrect) buffer to
306 // avoid a memcpy into the codecBuffer
307 codecBuffer = buffer;
308 codecBuffer->setRange(
309 mediaBuffer->range_offset(),
310 mediaBuffer->range_length());
311 bufferIx = ix;
312 break;
313 }
314 }
315 CHECK(ix < mInputBuffers.size());
316 }
317 }
318
319 mInputBufferIsDequeued.editItemAt(bufferIx) = false;
320
Lajos Molnar1cd13982014-01-17 15:12:51 -0800321 if (buffer == NULL /* includes !hasBuffer */) {
322 int32_t streamErr = ERROR_END_OF_STREAM;
323 CHECK(msg->findInt32("err", &streamErr) || !hasBuffer);
324
325 if (streamErr == OK) {
326 /* buffers are returned to hold on to */
327 return;
328 }
329
330 // attempt to queue EOS
331 status_t err = mCodec->queueInputBuffer(
332 bufferIx,
333 0,
334 0,
335 0,
336 MediaCodec::BUFFER_FLAG_EOS);
337 if (streamErr == ERROR_END_OF_STREAM && err != OK) {
338 streamErr = err;
339 // err will not be ERROR_END_OF_STREAM
340 }
341
342 if (streamErr != ERROR_END_OF_STREAM) {
343 handleError(streamErr);
344 }
345 } else {
346 int64_t timeUs = 0;
347 uint32_t flags = 0;
348 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
349
Lajos Molnar87603c02014-08-20 19:25:30 -0700350 int32_t eos, csd;
351 // we do not expect SYNCFRAME for decoder
Lajos Molnar1cd13982014-01-17 15:12:51 -0800352 if (buffer->meta()->findInt32("eos", &eos) && eos) {
353 flags |= MediaCodec::BUFFER_FLAG_EOS;
Lajos Molnar87603c02014-08-20 19:25:30 -0700354 } else if (buffer->meta()->findInt32("csd", &csd) && csd) {
355 flags |= MediaCodec::BUFFER_FLAG_CODECCONFIG;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800356 }
357
358 // copy into codec buffer
359 if (buffer != codecBuffer) {
360 CHECK_LE(buffer->size(), codecBuffer->capacity());
361 codecBuffer->setRange(0, buffer->size());
362 memcpy(codecBuffer->data(), buffer->data(), buffer->size());
363 }
364
365 status_t err = mCodec->queueInputBuffer(
366 bufferIx,
367 codecBuffer->offset(),
368 codecBuffer->size(),
369 timeUs,
370 flags);
371 if (err != OK) {
372 ALOGE("Failed to queue input buffer for %s (err=%d)",
373 mComponentName.c_str(), err);
374 handleError(err);
375 }
Lajos Molnar09524832014-07-17 14:29:51 -0700376
377 if (mediaBuffer != NULL) {
378 CHECK(mMediaBuffers[bufferIx] == NULL);
379 mMediaBuffers.editItemAt(bufferIx) = mediaBuffer;
380 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800381 }
382}
383
384bool NuPlayer::Decoder::handleAnOutputBuffer() {
385 size_t bufferIx = -1;
386 size_t offset;
387 size_t size;
388 int64_t timeUs;
389 uint32_t flags;
390 status_t res = mCodec->dequeueOutputBuffer(
391 &bufferIx, &offset, &size, &timeUs, &flags);
392
393 if (res != OK) {
394 ALOGV("[%s] dequeued output: %d", mComponentName.c_str(), res);
395 } else {
396 ALOGV("[%s] dequeued output: %d (time=%lld flags=%" PRIu32 ")",
397 mComponentName.c_str(), (int)bufferIx, timeUs, flags);
398 }
399
400 if (res == INFO_OUTPUT_BUFFERS_CHANGED) {
401 res = mCodec->getOutputBuffers(&mOutputBuffers);
402 if (res != OK) {
403 ALOGE("Failed to get output buffers for %s after INFO event (err=%d)",
404 mComponentName.c_str(), res);
405 handleError(res);
406 return false;
407 }
408 // NuPlayer ignores this
409 return true;
410 } else if (res == INFO_FORMAT_CHANGED) {
411 sp<AMessage> format = new AMessage();
412 res = mCodec->getOutputFormat(&format);
413 if (res != OK) {
414 ALOGE("Failed to get output format for %s after INFO event (err=%d)",
415 mComponentName.c_str(), res);
416 handleError(res);
417 return false;
418 }
419
420 sp<AMessage> notify = mNotify->dup();
421 notify->setInt32("what", kWhatOutputFormatChanged);
422 notify->setMessage("format", format);
423 notify->post();
424 return true;
425 } else if (res == INFO_DISCONTINUITY) {
426 // nothing to do
427 return true;
428 } else if (res != OK) {
429 if (res != -EAGAIN) {
430 handleError(res);
431 }
432 return false;
433 }
434
435 CHECK_LT(bufferIx, mOutputBuffers.size());
436 sp<ABuffer> buffer = mOutputBuffers[bufferIx];
437 buffer->setRange(offset, size);
438 buffer->meta()->clear();
439 buffer->meta()->setInt64("timeUs", timeUs);
440 if (flags & MediaCodec::BUFFER_FLAG_EOS) {
441 buffer->meta()->setInt32("eos", true);
442 }
443 // we do not expect CODECCONFIG or SYNCFRAME for decoder
444
445 sp<AMessage> reply = new AMessage(kWhatRenderBuffer, id());
446 reply->setSize("buffer-ix", bufferIx);
447 reply->setInt32("generation", mBufferGeneration);
448
449 sp<AMessage> notify = mNotify->dup();
450 notify->setInt32("what", kWhatDrainThisBuffer);
451 notify->setBuffer("buffer", buffer);
452 notify->setMessage("reply", reply);
453 notify->post();
454
455 // FIXME: This should be handled after rendering is complete,
456 // but Renderer needs it now
457 if (flags & MediaCodec::BUFFER_FLAG_EOS) {
458 ALOGV("queueing eos [%s]", mComponentName.c_str());
459 sp<AMessage> notify = mNotify->dup();
460 notify->setInt32("what", kWhatEOS);
461 notify->setInt32("err", ERROR_END_OF_STREAM);
462 notify->post();
463 }
464 return true;
465}
466
467void NuPlayer::Decoder::onRenderBuffer(const sp<AMessage> &msg) {
468 status_t err;
469 int32_t render;
470 size_t bufferIx;
471 CHECK(msg->findSize("buffer-ix", &bufferIx));
472 if (msg->findInt32("render", &render) && render) {
Lajos Molnardc43dfa2014-05-07 15:33:04 -0700473 int64_t timestampNs;
474 CHECK(msg->findInt64("timestampNs", &timestampNs));
475 err = mCodec->renderOutputBufferAndRelease(bufferIx, timestampNs);
Lajos Molnar1cd13982014-01-17 15:12:51 -0800476 } else {
477 err = mCodec->releaseOutputBuffer(bufferIx);
478 }
479 if (err != OK) {
480 ALOGE("failed to release output buffer for %s (err=%d)",
481 mComponentName.c_str(), err);
482 handleError(err);
483 }
484}
485
486void NuPlayer::Decoder::onFlush() {
487 status_t err = OK;
488 if (mCodec != NULL) {
489 err = mCodec->flush();
Lajos Molnar87603c02014-08-20 19:25:30 -0700490 mCSDsToSubmit = mCSDsForCurrentFormat; // copy operator
Lajos Molnar1cd13982014-01-17 15:12:51 -0800491 ++mBufferGeneration;
492 }
493
494 if (err != OK) {
495 ALOGE("failed to flush %s (err=%d)", mComponentName.c_str(), err);
496 handleError(err);
497 return;
498 }
499
Lajos Molnar09524832014-07-17 14:29:51 -0700500 releaseAndResetMediaBuffers();
501
Lajos Molnar1cd13982014-01-17 15:12:51 -0800502 sp<AMessage> notify = mNotify->dup();
503 notify->setInt32("what", kWhatFlushCompleted);
504 notify->post();
Wei Jia704e7262014-06-04 16:21:56 -0700505 mPaused = true;
506}
507
508void NuPlayer::Decoder::onResume() {
509 mPaused = false;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800510}
511
512void NuPlayer::Decoder::onShutdown() {
513 status_t err = OK;
514 if (mCodec != NULL) {
515 err = mCodec->release();
516 mCodec = NULL;
517 ++mBufferGeneration;
518
519 if (mNativeWindow != NULL) {
520 // reconnect to surface as MediaCodec disconnected from it
Wei Jia3fb9f682014-08-20 14:30:09 -0700521 status_t error =
Lajos Molnar1cd13982014-01-17 15:12:51 -0800522 native_window_api_connect(
523 mNativeWindow->getNativeWindow().get(),
Wei Jia3fb9f682014-08-20 14:30:09 -0700524 NATIVE_WINDOW_API_MEDIA);
525 ALOGW_IF(error != NO_ERROR,
526 "[%s] failed to connect to native window, error=%d",
527 mComponentName.c_str(), error);
Lajos Molnar1cd13982014-01-17 15:12:51 -0800528 }
529 mComponentName = "decoder";
530 }
531
Lajos Molnar09524832014-07-17 14:29:51 -0700532 releaseAndResetMediaBuffers();
533
Lajos Molnar1cd13982014-01-17 15:12:51 -0800534 if (err != OK) {
535 ALOGE("failed to release %s (err=%d)", mComponentName.c_str(), err);
536 handleError(err);
537 return;
538 }
539
540 sp<AMessage> notify = mNotify->dup();
541 notify->setInt32("what", kWhatShutdownCompleted);
542 notify->post();
Wei Jia704e7262014-06-04 16:21:56 -0700543 mPaused = true;
Andreas Huberf9334412010-12-15 15:17:42 -0800544}
545
546void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800547 ALOGV("[%s] onMessage: %s", mComponentName.c_str(), msg->debugString().c_str());
548
Andreas Huberf9334412010-12-15 15:17:42 -0800549 switch (msg->what()) {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800550 case kWhatConfigure:
551 {
552 sp<AMessage> format;
553 CHECK(msg->findMessage("format", &format));
554 onConfigure(format);
555 break;
556 }
557
Lajos Molnar87603c02014-08-20 19:25:30 -0700558 case kWhatUpdateFormat:
559 {
560 sp<AMessage> format;
561 CHECK(msg->findMessage("format", &format));
562 rememberCodecSpecificData(format);
563 break;
564 }
565
Lajos Molnar09524832014-07-17 14:29:51 -0700566 case kWhatGetInputBuffers:
567 {
568 uint32_t replyID;
569 CHECK(msg->senderAwaitsResponse(&replyID));
570
571 Vector<sp<ABuffer> > *dstBuffers;
572 CHECK(msg->findPointer("buffers", (void **)&dstBuffers));
573
574 dstBuffers->clear();
575 for (size_t i = 0; i < mInputBuffers.size(); i++) {
576 dstBuffers->push(mInputBuffers[i]);
577 }
578
579 (new AMessage)->postReply(replyID);
580 break;
581 }
582
Andreas Huberf9334412010-12-15 15:17:42 -0800583 case kWhatCodecNotify:
584 {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800585 if (!isStaleReply(msg)) {
Wei Jia704e7262014-06-04 16:21:56 -0700586 if (!mPaused) {
587 while (handleAnInputBuffer()) {
588 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800589 }
Andreas Huberf9334412010-12-15 15:17:42 -0800590
Lajos Molnar1cd13982014-01-17 15:12:51 -0800591 while (handleAnOutputBuffer()) {
592 }
Andreas Huberf9334412010-12-15 15:17:42 -0800593 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800594
595 requestCodecNotification();
596 break;
597 }
598
599 case kWhatInputBufferFilled:
600 {
601 if (!isStaleReply(msg)) {
602 onInputBufferFilled(msg);
Lajos Molnarb9b87fe2014-09-10 13:53:21 -0700603 } else {
604 /* release any MediaBuffer passed in the stale buffer */
605 sp<ABuffer> buffer;
606 MediaBuffer *mediaBuffer = NULL;
607 if (msg->findBuffer("buffer", &buffer) &&
608 buffer->meta()->findPointer(
609 "mediaBuffer", (void **)&mediaBuffer) &&
610 mediaBuffer != NULL) {
611 mediaBuffer->release();
612 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800613 }
Lajos Molnarb9b87fe2014-09-10 13:53:21 -0700614
Lajos Molnar1cd13982014-01-17 15:12:51 -0800615 break;
616 }
617
618 case kWhatRenderBuffer:
619 {
620 if (!isStaleReply(msg)) {
621 onRenderBuffer(msg);
622 }
623 break;
624 }
625
626 case kWhatFlush:
627 {
Lajos Molnar87603c02014-08-20 19:25:30 -0700628 sp<AMessage> format;
629 if (msg->findMessage("new-format", &format)) {
630 rememberCodecSpecificData(format);
631 }
Lajos Molnar1cd13982014-01-17 15:12:51 -0800632 onFlush();
633 break;
634 }
635
Wei Jia704e7262014-06-04 16:21:56 -0700636 case kWhatResume:
637 {
638 onResume();
639 break;
640 }
641
Lajos Molnar1cd13982014-01-17 15:12:51 -0800642 case kWhatShutdown:
643 {
644 onShutdown();
Andreas Huberf9334412010-12-15 15:17:42 -0800645 break;
646 }
647
648 default:
649 TRESPASS();
650 break;
651 }
652}
653
Lajos Molnar87603c02014-08-20 19:25:30 -0700654void NuPlayer::Decoder::signalFlush(const sp<AMessage> &format) {
655 sp<AMessage> msg = new AMessage(kWhatFlush, id());
656 if (format != NULL) {
657 msg->setMessage("new-format", format);
658 }
659 msg->post();
Andreas Huberf9334412010-12-15 15:17:42 -0800660}
661
662void NuPlayer::Decoder::signalResume() {
Wei Jia704e7262014-06-04 16:21:56 -0700663 (new AMessage(kWhatResume, id()))->post();
Andreas Huberf9334412010-12-15 15:17:42 -0800664}
665
Andreas Huber3831a062010-12-21 10:22:33 -0800666void NuPlayer::Decoder::initiateShutdown() {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800667 (new AMessage(kWhatShutdown, id()))->post();
Andreas Huber3831a062010-12-21 10:22:33 -0800668}
669
Robert Shih6d0a94e2014-01-23 16:18:22 -0800670bool NuPlayer::Decoder::supportsSeamlessAudioFormatChange(const sp<AMessage> &targetFormat) const {
671 if (targetFormat == NULL) {
672 return true;
673 }
674
675 AString mime;
676 if (!targetFormat->findString("mime", &mime)) {
677 return false;
678 }
679
680 if (!strcasecmp(mime.c_str(), MEDIA_MIMETYPE_AUDIO_AAC)) {
681 // field-by-field comparison
682 const char * keys[] = { "channel-count", "sample-rate", "is-adts" };
683 for (unsigned int i = 0; i < sizeof(keys) / sizeof(keys[0]); i++) {
684 int32_t oldVal, newVal;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800685 if (!mOutputFormat->findInt32(keys[i], &oldVal) ||
686 !targetFormat->findInt32(keys[i], &newVal) ||
687 oldVal != newVal) {
Robert Shih6d0a94e2014-01-23 16:18:22 -0800688 return false;
689 }
690 }
691
692 sp<ABuffer> oldBuf, newBuf;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800693 if (mOutputFormat->findBuffer("csd-0", &oldBuf) &&
694 targetFormat->findBuffer("csd-0", &newBuf)) {
Robert Shih6d0a94e2014-01-23 16:18:22 -0800695 if (oldBuf->size() != newBuf->size()) {
696 return false;
697 }
698 return !memcmp(oldBuf->data(), newBuf->data(), oldBuf->size());
699 }
700 }
701 return false;
702}
703
704bool NuPlayer::Decoder::supportsSeamlessFormatChange(const sp<AMessage> &targetFormat) const {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800705 if (mOutputFormat == NULL) {
Robert Shih6d0a94e2014-01-23 16:18:22 -0800706 return false;
707 }
708
709 if (targetFormat == NULL) {
710 return true;
711 }
712
713 AString oldMime, newMime;
Lajos Molnar1cd13982014-01-17 15:12:51 -0800714 if (!mOutputFormat->findString("mime", &oldMime)
Robert Shih6d0a94e2014-01-23 16:18:22 -0800715 || !targetFormat->findString("mime", &newMime)
716 || !(oldMime == newMime)) {
717 return false;
718 }
719
720 bool audio = !strncasecmp(oldMime.c_str(), "audio/", strlen("audio/"));
721 bool seamless;
722 if (audio) {
723 seamless = supportsSeamlessAudioFormatChange(targetFormat);
724 } else {
Lajos Molnar1cd13982014-01-17 15:12:51 -0800725 int32_t isAdaptive;
726 seamless = (mCodec != NULL &&
727 mInputFormat->findInt32("adaptive-playback", &isAdaptive) &&
728 isAdaptive);
Robert Shih6d0a94e2014-01-23 16:18:22 -0800729 }
730
731 ALOGV("%s seamless support for %s", seamless ? "yes" : "no", oldMime.c_str());
732 return seamless;
733}
734
Chong Zhangb86e68f2014-08-01 13:46:53 -0700735struct CCData {
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700736 CCData(uint8_t type, uint8_t data1, uint8_t data2)
737 : mType(type), mData1(data1), mData2(data2) {
738 }
Chong Zhangb86e68f2014-08-01 13:46:53 -0700739 bool getChannel(size_t *channel) const {
740 if (mData1 >= 0x10 && mData1 <= 0x1f) {
741 *channel = (mData1 >= 0x18 ? 1 : 0) + (mType ? 2 : 0);
742 return true;
743 }
744 return false;
745 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700746
747 uint8_t mType;
748 uint8_t mData1;
749 uint8_t mData2;
750};
751
Chong Zhangb86e68f2014-08-01 13:46:53 -0700752static bool isNullPad(CCData *cc) {
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700753 return cc->mData1 < 0x10 && cc->mData2 < 0x10;
754}
755
Chong Zhangb86e68f2014-08-01 13:46:53 -0700756static void dumpBytePair(const sp<ABuffer> &ccBuf) {
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700757 size_t offset = 0;
758 AString out;
759
760 while (offset < ccBuf->size()) {
761 char tmp[128];
762
763 CCData *cc = (CCData *) (ccBuf->data() + offset);
764
765 if (isNullPad(cc)) {
766 // 1 null pad or XDS metadata, ignore
767 offset += sizeof(CCData);
768 continue;
769 }
770
771 if (cc->mData1 >= 0x20 && cc->mData1 <= 0x7f) {
772 // 2 basic chars
773 sprintf(tmp, "[%d]Basic: %c %c", cc->mType, cc->mData1, cc->mData2);
774 } else if ((cc->mData1 == 0x11 || cc->mData1 == 0x19)
775 && cc->mData2 >= 0x30 && cc->mData2 <= 0x3f) {
776 // 1 special char
777 sprintf(tmp, "[%d]Special: %02x %02x", cc->mType, cc->mData1, cc->mData2);
778 } else if ((cc->mData1 == 0x12 || cc->mData1 == 0x1A)
779 && cc->mData2 >= 0x20 && cc->mData2 <= 0x3f){
780 // 1 Spanish/French char
781 sprintf(tmp, "[%d]Spanish: %02x %02x", cc->mType, cc->mData1, cc->mData2);
782 } else if ((cc->mData1 == 0x13 || cc->mData1 == 0x1B)
783 && cc->mData2 >= 0x20 && cc->mData2 <= 0x3f){
784 // 1 Portuguese/German/Danish char
785 sprintf(tmp, "[%d]German: %02x %02x", cc->mType, cc->mData1, cc->mData2);
786 } else if ((cc->mData1 == 0x11 || cc->mData1 == 0x19)
787 && cc->mData2 >= 0x20 && cc->mData2 <= 0x2f){
788 // Mid-Row Codes (Table 69)
789 sprintf(tmp, "[%d]Mid-row: %02x %02x", cc->mType, cc->mData1, cc->mData2);
790 } else if (((cc->mData1 == 0x14 || cc->mData1 == 0x1c)
791 && cc->mData2 >= 0x20 && cc->mData2 <= 0x2f)
792 ||
793 ((cc->mData1 == 0x17 || cc->mData1 == 0x1f)
794 && cc->mData2 >= 0x21 && cc->mData2 <= 0x23)){
795 // Misc Control Codes (Table 70)
796 sprintf(tmp, "[%d]Ctrl: %02x %02x", cc->mType, cc->mData1, cc->mData2);
797 } else if ((cc->mData1 & 0x70) == 0x10
798 && (cc->mData2 & 0x40) == 0x40
799 && ((cc->mData1 & 0x07) || !(cc->mData2 & 0x20)) ) {
800 // Preamble Address Codes (Table 71)
801 sprintf(tmp, "[%d]PAC: %02x %02x", cc->mType, cc->mData1, cc->mData2);
802 } else {
803 sprintf(tmp, "[%d]Invalid: %02x %02x", cc->mType, cc->mData1, cc->mData2);
804 }
805
806 if (out.size() > 0) {
807 out.append(", ");
808 }
809
810 out.append(tmp);
811
812 offset += sizeof(CCData);
813 }
814
815 ALOGI("%s", out.c_str());
816}
817
Chong Zhangb86e68f2014-08-01 13:46:53 -0700818NuPlayer::CCDecoder::CCDecoder(const sp<AMessage> &notify)
819 : mNotify(notify),
820 mCurrentChannel(0),
821 mSelectedTrack(-1) {
822 for (size_t i = 0; i < sizeof(mTrackIndices)/sizeof(mTrackIndices[0]); ++i) {
823 mTrackIndices[i] = -1;
824 }
825}
826
827size_t NuPlayer::CCDecoder::getTrackCount() const {
828 return mFoundChannels.size();
829}
830
831sp<AMessage> NuPlayer::CCDecoder::getTrackInfo(size_t index) const {
832 if (!isTrackValid(index)) {
833 return NULL;
834 }
835
836 sp<AMessage> format = new AMessage();
837
838 format->setInt32("type", MEDIA_TRACK_TYPE_SUBTITLE);
839 format->setString("language", "und");
840 format->setString("mime", MEDIA_MIMETYPE_TEXT_CEA_608);
841 //CC1, field 0 channel 0
842 bool isDefaultAuto = (mFoundChannels[index] == 0);
843 format->setInt32("auto", isDefaultAuto);
844 format->setInt32("default", isDefaultAuto);
845 format->setInt32("forced", 0);
846
847 return format;
848}
849
850status_t NuPlayer::CCDecoder::selectTrack(size_t index, bool select) {
851 if (!isTrackValid(index)) {
852 return BAD_VALUE;
853 }
854
855 if (select) {
856 if (mSelectedTrack == (ssize_t)index) {
857 ALOGE("track %zu already selected", index);
858 return BAD_VALUE;
859 }
860 ALOGV("selected track %zu", index);
861 mSelectedTrack = index;
862 } else {
863 if (mSelectedTrack != (ssize_t)index) {
864 ALOGE("track %zu is not selected", index);
865 return BAD_VALUE;
866 }
867 ALOGV("unselected track %zu", index);
868 mSelectedTrack = -1;
869 }
870
871 return OK;
872}
873
874bool NuPlayer::CCDecoder::isSelected() const {
875 return mSelectedTrack >= 0 && mSelectedTrack < (int32_t) getTrackCount();
876}
877
878bool NuPlayer::CCDecoder::isTrackValid(size_t index) const {
879 return index < getTrackCount();
880}
881
882int32_t NuPlayer::CCDecoder::getTrackIndex(size_t channel) const {
883 if (channel < sizeof(mTrackIndices)/sizeof(mTrackIndices[0])) {
884 return mTrackIndices[channel];
885 }
886 return -1;
887}
888
889// returns true if a new CC track is found
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700890bool NuPlayer::CCDecoder::extractFromSEI(const sp<ABuffer> &accessUnit) {
891 int64_t timeUs;
892 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
893
894 sp<ABuffer> sei;
895 if (!accessUnit->meta()->findBuffer("sei", &sei) || sei == NULL) {
896 return false;
897 }
898
Chong Zhangb86e68f2014-08-01 13:46:53 -0700899 bool trackAdded = false;
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700900
Chong Zhang862f8452014-06-26 19:55:23 -0700901 NALBitReader br(sei->data() + 1, sei->size() - 1);
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700902 // sei_message()
Chong Zhang862f8452014-06-26 19:55:23 -0700903 while (br.atLeastNumBitsLeft(16)) { // at least 16-bit for sei_message()
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700904 uint32_t payload_type = 0;
905 size_t payload_size = 0;
906 uint8_t last_byte;
907
908 do {
909 last_byte = br.getBits(8);
910 payload_type += last_byte;
911 } while (last_byte == 0xFF);
912
913 do {
914 last_byte = br.getBits(8);
915 payload_size += last_byte;
916 } while (last_byte == 0xFF);
917
918 // sei_payload()
919 if (payload_type == 4) {
920 // user_data_registered_itu_t_t35()
921
922 // ATSC A/72: 6.4.2
923 uint8_t itu_t_t35_country_code = br.getBits(8);
924 uint16_t itu_t_t35_provider_code = br.getBits(16);
925 uint32_t user_identifier = br.getBits(32);
926 uint8_t user_data_type_code = br.getBits(8);
927
928 payload_size -= 1 + 2 + 4 + 1;
929
930 if (itu_t_t35_country_code == 0xB5
931 && itu_t_t35_provider_code == 0x0031
932 && user_identifier == 'GA94'
933 && user_data_type_code == 0x3) {
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700934 // MPEG_cc_data()
935 // ATSC A/53 Part 4: 6.2.3.1
936 br.skipBits(1); //process_em_data_flag
937 bool process_cc_data_flag = br.getBits(1);
938 br.skipBits(1); //additional_data_flag
939 size_t cc_count = br.getBits(5);
940 br.skipBits(8); // em_data;
941 payload_size -= 2;
942
943 if (process_cc_data_flag) {
944 AString out;
945
946 sp<ABuffer> ccBuf = new ABuffer(cc_count * sizeof(CCData));
947 ccBuf->setRange(0, 0);
948
949 for (size_t i = 0; i < cc_count; i++) {
950 uint8_t marker = br.getBits(5);
951 CHECK_EQ(marker, 0x1f);
952
953 bool cc_valid = br.getBits(1);
954 uint8_t cc_type = br.getBits(2);
955 // remove odd parity bit
956 uint8_t cc_data_1 = br.getBits(8) & 0x7f;
957 uint8_t cc_data_2 = br.getBits(8) & 0x7f;
958
959 if (cc_valid
960 && (cc_type == 0 || cc_type == 1)) {
961 CCData cc(cc_type, cc_data_1, cc_data_2);
962 if (!isNullPad(&cc)) {
Chong Zhangb86e68f2014-08-01 13:46:53 -0700963 size_t channel;
964 if (cc.getChannel(&channel) && getTrackIndex(channel) < 0) {
965 mTrackIndices[channel] = mFoundChannels.size();
966 mFoundChannels.push_back(channel);
967 trackAdded = true;
968 }
Chong Zhanga7fa1d92014-06-11 14:49:23 -0700969 memcpy(ccBuf->data() + ccBuf->size(),
970 (void *)&cc, sizeof(cc));
971 ccBuf->setRange(0, ccBuf->size() + sizeof(CCData));
972 }
973 }
974 }
975 payload_size -= cc_count * 3;
976
977 mCCMap.add(timeUs, ccBuf);
978 break;
979 }
980 } else {
981 ALOGV("Malformed SEI payload type 4");
982 }
983 } else {
984 ALOGV("Unsupported SEI payload type %d", payload_type);
985 }
986
987 // skipping remaining bits of this payload
988 br.skipBits(payload_size * 8);
989 }
990
Chong Zhangb86e68f2014-08-01 13:46:53 -0700991 return trackAdded;
992}
993
994sp<ABuffer> NuPlayer::CCDecoder::filterCCBuf(
995 const sp<ABuffer> &ccBuf, size_t index) {
996 sp<ABuffer> filteredCCBuf = new ABuffer(ccBuf->size());
997 filteredCCBuf->setRange(0, 0);
998
999 size_t cc_count = ccBuf->size() / sizeof(CCData);
1000 const CCData* cc_data = (const CCData*)ccBuf->data();
1001 for (size_t i = 0; i < cc_count; ++i) {
1002 size_t channel;
1003 if (cc_data[i].getChannel(&channel)) {
1004 mCurrentChannel = channel;
1005 }
1006 if (mCurrentChannel == mFoundChannels[index]) {
1007 memcpy(filteredCCBuf->data() + filteredCCBuf->size(),
1008 (void *)&cc_data[i], sizeof(CCData));
1009 filteredCCBuf->setRange(0, filteredCCBuf->size() + sizeof(CCData));
1010 }
1011 }
1012
1013 return filteredCCBuf;
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001014}
1015
1016void NuPlayer::CCDecoder::decode(const sp<ABuffer> &accessUnit) {
Chong Zhangb86e68f2014-08-01 13:46:53 -07001017 if (extractFromSEI(accessUnit)) {
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001018 ALOGI("Found CEA-608 track");
1019 sp<AMessage> msg = mNotify->dup();
1020 msg->setInt32("what", kWhatTrackAdded);
1021 msg->post();
1022 }
1023 // TODO: extract CC from other sources
1024}
1025
1026void NuPlayer::CCDecoder::display(int64_t timeUs) {
Chong Zhangb86e68f2014-08-01 13:46:53 -07001027 if (!isTrackValid(mSelectedTrack)) {
1028 ALOGE("Could not find current track(index=%d)", mSelectedTrack);
1029 return;
1030 }
1031
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001032 ssize_t index = mCCMap.indexOfKey(timeUs);
1033 if (index < 0) {
1034 ALOGV("cc for timestamp %" PRId64 " not found", timeUs);
1035 return;
1036 }
1037
Chong Zhangb86e68f2014-08-01 13:46:53 -07001038 sp<ABuffer> ccBuf = filterCCBuf(mCCMap.valueAt(index), mSelectedTrack);
Chong Zhanga7fa1d92014-06-11 14:49:23 -07001039
1040 if (ccBuf->size() > 0) {
1041#if 0
1042 dumpBytePair(ccBuf);
1043#endif
1044
1045 ccBuf->meta()->setInt32("trackIndex", mSelectedTrack);
1046 ccBuf->meta()->setInt64("timeUs", timeUs);
1047 ccBuf->meta()->setInt64("durationUs", 0ll);
1048
1049 sp<AMessage> msg = mNotify->dup();
1050 msg->setInt32("what", kWhatClosedCaptionData);
1051 msg->setBuffer("buffer", ccBuf);
1052 msg->post();
1053 }
1054
1055 // remove all entries before timeUs
1056 mCCMap.removeItemsAt(0, index + 1);
1057}
1058
Chong Zhangb86e68f2014-08-01 13:46:53 -07001059void NuPlayer::CCDecoder::flush() {
1060 mCCMap.clear();
1061}
1062
Andreas Huberf9334412010-12-15 15:17:42 -08001063} // namespace android
1064