From e4d18c7f84186b935ac569d5919059c455edd390 Mon Sep 17 00:00:00 2001 From: Wei Jia Date: Mon, 13 Jul 2015 17:58:11 -0700 Subject: NuPlayer: determine audio mode before instantiating audio decoder. Bug: 22460159 Change-Id: I334c6dc5e1163a462155d251eaa985ff5e3858e6 --- media/libmediaplayerservice/nuplayer/NuPlayer.cpp | 59 ++++++++++++----------- 1 file changed, 31 insertions(+), 28 deletions(-) (limited to 'media/libmediaplayerservice/nuplayer/NuPlayer.cpp') diff --git a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp index 4a1a34d..26b83bb 100644 --- a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp +++ b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp @@ -830,20 +830,6 @@ void NuPlayer::onMessageReceived(const sp &msg) { // Don't try to re-open audio sink if there's an existing decoder. if (mAudioSink != NULL && mAudioDecoder == NULL) { - sp audioMeta = mSource->getFormatMeta(true /* audio */); - sp videoFormat = mSource->getFormat(false /* audio */); - audio_stream_type_t streamType = mAudioSink->getAudioStreamType(); - const bool hasVideo = (videoFormat != NULL); - const bool canOffload = canOffloadStream( - audioMeta, hasVideo, mSource->isStreaming(), streamType); - if (canOffload) { - if (!mOffloadAudio) { - mRenderer->signalEnableOffloadAudio(); - } - // open audio sink early under offload mode. - sp format = mSource->getFormat(true /*audio*/); - tryOpenAudioSinkForOffload(format, hasVideo); - } instantiateDecoder(true, &mAudioDecoder); } @@ -1104,20 +1090,6 @@ void NuPlayer::onMessageReceived(const sp &msg) { performSeek(positionUs); if (reason == Renderer::kDueToError) { - sp audioMeta = mSource->getFormatMeta(true /* audio */); - sp videoFormat = mSource->getFormat(false /* audio */); - audio_stream_type_t streamType = mAudioSink->getAudioStreamType(); - const bool hasVideo = (videoFormat != NULL); - const bool canOffload = canOffloadStream( - audioMeta, hasVideo, mSource->isStreaming(), streamType); - if (canOffload) { - mRenderer->signalEnableOffloadAudio(); - sp format = mSource->getFormat(true /*audio*/); - tryOpenAudioSinkForOffload(format, hasVideo); - } else { - mRenderer->signalDisableOffloadAudio(); - mOffloadAudio = false; - } instantiateDecoder(true /* audio */, &mAudioDecoder); } } @@ -1449,6 +1421,36 @@ void NuPlayer::closeAudioSink() { mRenderer->closeAudioSink(); } +void NuPlayer::determineAudioModeChange() { + if (mSource == NULL || mAudioSink == NULL) { + return; + } + + if (mRenderer == NULL) { + ALOGW("No renderer can be used to determine audio mode. Use non-offload for safety."); + mOffloadAudio = false; + return; + } + + sp audioMeta = mSource->getFormatMeta(true /* audio */); + sp videoFormat = mSource->getFormat(false /* audio */); + audio_stream_type_t streamType = mAudioSink->getAudioStreamType(); + const bool hasVideo = (videoFormat != NULL); + const bool canOffload = canOffloadStream( + audioMeta, hasVideo, mSource->isStreaming(), streamType); + if (canOffload) { + if (!mOffloadAudio) { + mRenderer->signalEnableOffloadAudio(); + } + // open audio sink early under offload mode. + sp format = mSource->getFormat(true /*audio*/); + tryOpenAudioSinkForOffload(format, hasVideo); + } else { + mRenderer->signalDisableOffloadAudio(); + mOffloadAudio = false; + } +} + status_t NuPlayer::instantiateDecoder(bool audio, sp *decoder) { if (*decoder != NULL) { return OK; @@ -1490,6 +1492,7 @@ status_t NuPlayer::instantiateDecoder(bool audio, sp *decoder) { ++mAudioDecoderGeneration; notify->setInt32("generation", mAudioDecoderGeneration); + determineAudioModeChange(); if (mOffloadAudio) { const bool hasVideo = (mSource->getFormat(false /*audio */) != NULL); format->setInt32("has-video", hasVideo); -- cgit v1.1