113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi/*
213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * Copyright (C) 2011 The Android Open Source Project
313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi *
413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * Licensed under the Apache License, Version 2.0 (the "License");
513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * you may not use this file except in compliance with the License.
613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * You may obtain a copy of the License at
713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi *
813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi *      http://www.apache.org/licenses/LICENSE-2.0
913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi *
1013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * Unless required by applicable law or agreed to in writing, software
1113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * distributed under the License is distributed on an "AS IS" BASIS,
1213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * See the License for the specific language governing permissions and
1413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi * limitations under the License.
1513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi */
1613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
17bb832e853d4afb11b0a3287b2eb0cad87696d631Jean-Michel Trivi//#define USE_LOG SLAndroidLogLevel_Verbose
1813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
1913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi#include "sles_allinclusive.h"
202b06e20ae32388f6e1dfd088d9773c34e6b1cb45Jean-Michel Trivi#include "android/android_AudioSfDecoder.h"
2113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
220c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi#include <binder/IServiceManager.h>
23fb8035480852914d326eb4c2074060df32382926Andreas Huber#include <media/IMediaHTTPService.h>
244ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi#include <media/stagefright/foundation/ADebug.h>
254ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi
264ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi
274ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi#define SIZE_CACHED_HIGH_BYTES 1000000
284ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi#define SIZE_CACHED_MED_BYTES   700000
294ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi#define SIZE_CACHED_LOW_BYTES   400000
304ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi
3113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivinamespace android {
3213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
3313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi//--------------------------------------------------------------------------------------------------
3413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel TriviAudioSfDecoder::AudioSfDecoder(const AudioPlayback_Parameters* params) : GenericPlayer(params),
35b4fb100d7122d118d3da9d1d08ffacef68dd38b0Jean-Michel Trivi        mDataSource(0),
36b4fb100d7122d118d3da9d1d08ffacef68dd38b0Jean-Michel Trivi        mAudioSource(0),
37e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        mAudioSourceStarted(false),
3813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mBitrate(-1),
395050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        mDurationUsec(ANDROID_UNKNOWN_TIME),
4013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mDecodeBuffer(NULL),
4113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mSeekTimeMsec(0),
42ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten        // play event logic depends on the initial time being zero not ANDROID_UNKNOWN_TIME
43ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten        mLastDecodedPositionUs(0)
4413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi{
4554cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    SL_LOGD("AudioSfDecoder::AudioSfDecoder()");
4613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
4713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
4813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
4913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel TriviAudioSfDecoder::~AudioSfDecoder() {
5054cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    SL_LOGD("AudioSfDecoder::~AudioSfDecoder()");
51e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi}
52e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
53e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
54e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivivoid AudioSfDecoder::preDestroy() {
55e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    GenericPlayer::preDestroy();
56e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    SL_LOGD("AudioSfDecoder::preDestroy()");
57e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    {
58e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        Mutex::Autolock _l(mBufferSourceLock);
59e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
60e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        if (NULL != mDecodeBuffer) {
61e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            mDecodeBuffer->release();
62e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            mDecodeBuffer = NULL;
63e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        }
64e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
65e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        if ((mAudioSource != 0) && mAudioSourceStarted) {
66e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            mAudioSource->stop();
67e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            mAudioSourceStarted = false;
68e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        }
69b4fb100d7122d118d3da9d1d08ffacef68dd38b0Jean-Michel Trivi    }
7013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
7113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
7213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
7313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi//--------------------------------------------------
7413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::play() {
7554cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    SL_LOGD("AudioSfDecoder::play");
7613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
7713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    GenericPlayer::play();
7813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    (new AMessage(kWhatDecode, id()))->post();
7913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
8013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
8113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
825050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivivoid AudioSfDecoder::getPositionMsec(int* msec) {
835050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    int64_t timeUsec = getPositionUsec();
845050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    if (timeUsec == ANDROID_UNKNOWN_TIME) {
855050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        *msec = ANDROID_UNKNOWN_TIME;
865050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    } else {
875933f3d5e532aaac31ce0e6551c59f0197c0ae3cGlenn Kasten        *msec = timeUsec / 1000;
885050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    }
895050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi}
905050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi
915050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi
9213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi//--------------------------------------------------
9391540f92d7f1bcda423859af6bd82df083c2afabGlenn Kastenuint32_t AudioSfDecoder::getPcmFormatKeyCount() const {
9491540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    return NB_PCMMETADATA_KEYS;
957f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi}
967f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
977f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
987f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi//--------------------------------------------------
997f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivibool AudioSfDecoder::getPcmFormatKeySize(uint32_t index, uint32_t* pKeySize) {
10091540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    if (index >= NB_PCMMETADATA_KEYS) {
1017f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
1027f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    } else {
1037f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        *pKeySize = strlen(kPcmDecodeMetadataKeys[index]) +1;
1047f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return true;
1057f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
1067f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi}
1077f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1087f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1097f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi//--------------------------------------------------
1107f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivibool AudioSfDecoder::getPcmFormatKeyName(uint32_t index, uint32_t keySize, char* keyName) {
1117f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    uint32_t actualKeySize;
1127f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    if (!getPcmFormatKeySize(index, &actualKeySize)) {
1137f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
1147f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
1157f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    if (keySize < actualKeySize) {
1167f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
1177f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
1187f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    strncpy(keyName, kPcmDecodeMetadataKeys[index], actualKeySize);
1197f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    return true;
1207f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi}
1217f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1227f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1237f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi//--------------------------------------------------
1247f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivibool AudioSfDecoder::getPcmFormatValueSize(uint32_t index, uint32_t* pValueSize) {
12591540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    if (index >= NB_PCMMETADATA_KEYS) {
1267f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        *pValueSize = 0;
1277f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
1287f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    } else {
1297f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        *pValueSize = sizeof(uint32_t);
1307f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return true;
1317f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
1327f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi}
1337f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1347f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1357f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi//--------------------------------------------------
1367f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivibool AudioSfDecoder::getPcmFormatKeyValue(uint32_t index, uint32_t size, uint32_t* pValue) {
1377f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    uint32_t valueSize = 0;
1387f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    if (!getPcmFormatValueSize(index, &valueSize)) {
1397f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
14013d02b645fc6e8ffe70a8bf8cc5f69f03558ae40Jean-Michel Trivi    } else if (size != valueSize) {
1417f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        // this ensures we are accessing mPcmFormatValues with a valid size for that index
14213d02b645fc6e8ffe70a8bf8cc5f69f03558ae40Jean-Michel Trivi        SL_LOGE("Error retrieving metadata value at index %d: using size of %d, should be %d",
14313d02b645fc6e8ffe70a8bf8cc5f69f03558ae40Jean-Michel Trivi                index, size, valueSize);
1447f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return false;
1457f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    } else {
14691540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten        android::Mutex::Autolock autoLock(mPcmFormatLock);
1477f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        *pValue = mPcmFormatValues[index];
1487f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi        return true;
1497f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
1507f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi}
1517f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1527f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
1537f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi//--------------------------------------------------
15413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi// Event handlers
155e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi//  it is strictly verboten to call those methods outside of the event loop
156e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
157e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi// Initializes the data and audio sources, and update the PCM format info
158e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi// post-condition: upon successful initialization based on the player data locator
159e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi//    GenericPlayer::onPrepare() was called
160e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi//    mDataSource != 0
161e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi//    mAudioSource != 0
162e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi//    mAudioSourceStarted == true
163e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten// All error returns from this method are via notifyPrepared(status) followed by "return".
16413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onPrepare() {
165e9236d046fdb5cac0696c42e03443a2439188146Jean-Michel Trivi    SL_LOGD("AudioSfDecoder::onPrepare()");
166e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    Mutex::Autolock _l(mBufferSourceLock);
16713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
16891540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    {
16991540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    android::Mutex::Autolock autoLock(mPcmFormatLock);
170e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    // Initialize the PCM format info with the known parameters before the start of the decode
1717f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_BITSPERSAMPLE] = SL_PCMSAMPLEFORMAT_FIXED_16;
1727f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_CONTAINERSIZE] = 16;
1737f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_ENDIANNESS] = SL_BYTEORDER_LITTLEENDIAN;
174e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    //    initialization with the default values: they will be replaced by the actual values
175e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    //      once the decoder has figured them out
176b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_NUMCHANNELS] = UNKNOWN_NUMCHANNELS;
177b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_SAMPLERATE] = UNKNOWN_SAMPLERATE;
178b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_CHANNELMASK] = UNKNOWN_CHANNELMASK;
17991540f92d7f1bcda423859af6bd82df083c2afabGlenn Kasten    }
1807f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
181e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    //---------------------------------
182e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    // Instantiate and initialize the data source for the decoder
18313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<DataSource> dataSource;
18413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
18513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    switch (mDataLocatorType) {
18613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
18713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    case kDataLocatorNone:
18813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGE("AudioSfDecoder::onPrepare: no data locator set");
18913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyPrepared(MEDIA_ERROR_BASE);
19013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
19113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
19213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    case kDataLocatorUri:
193fb8035480852914d326eb4c2074060df32382926Andreas Huber        dataSource = DataSource::CreateFromURI(
194fb8035480852914d326eb4c2074060df32382926Andreas Huber                NULL /* XXX httpService */, mDataLocator.uriRef);
19593ac9bd4f7722c50dc9882ff74bade233860a940Jean-Michel Trivi        if (dataSource == NULL) {
19693ac9bd4f7722c50dc9882ff74bade233860a940Jean-Michel Trivi            SL_LOGE("AudioSfDecoder::onPrepare(): Error opening %s", mDataLocator.uriRef);
19713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            notifyPrepared(MEDIA_ERROR_BASE);
19813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            return;
19913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
20013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        break;
20113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
20293ac9bd4f7722c50dc9882ff74bade233860a940Jean-Michel Trivi    case kDataLocatorFd:
20393ac9bd4f7722c50dc9882ff74bade233860a940Jean-Michel Trivi    {
204833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        // As FileSource unconditionally takes ownership of the fd and closes it, then
205833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        // we have to make a dup for FileSource if the app wants to keep ownership itself
206833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        int fd = mDataLocator.fdi.fd;
207833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        if (mDataLocator.fdi.mCloseAfterUse) {
208833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten            mDataLocator.fdi.mCloseAfterUse = false;
209833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        } else {
210833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten            fd = ::dup(fd);
211833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        }
212833251ab9e5e59a6ea5ac325122cf3abdf7cd944Glenn Kasten        dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
21313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        status_t err = dataSource->initCheck();
21413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (err != OK) {
21513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            notifyPrepared(err);
21613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            return;
21713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
21893ac9bd4f7722c50dc9882ff74bade233860a940Jean-Michel Trivi        break;
21913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
22013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
221e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten    // AndroidBufferQueue data source is handled by a subclass,
222e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten    // which does not call up to this method.  Hence, the missing case.
22313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    default:
22413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        TRESPASS();
22513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
22613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
227e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    //---------------------------------
228e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten    // Instantiate and initialize the decoder attached to the data source
22913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
23013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (extractor == NULL) {
23113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGE("AudioSfDecoder::onPrepare: Could not instantiate extractor.");
23213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyPrepared(ERROR_UNSUPPORTED);
23313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
23413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
23513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
23613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    ssize_t audioTrackIndex = -1;
23713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    bool isRawAudio = false;
23813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    for (size_t i = 0; i < extractor->countTracks(); ++i) {
23913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        sp<MetaData> meta = extractor->getTrackMetaData(i);
24013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
24113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        const char *mime;
24213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        CHECK(meta->findCString(kKeyMIMEType, &mime));
24313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
24413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (!strncasecmp("audio/", mime, 6)) {
2453597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi            if (isSupportedCodec(mime)) {
2463597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi                audioTrackIndex = i;
24713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
2483597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi                if (!strcasecmp(MEDIA_MIMETYPE_AUDIO_RAW, mime)) {
2493597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi                    isRawAudio = true;
2503597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi                }
2513597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi                break;
25213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            }
25313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
25413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
25513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
25613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (audioTrackIndex < 0) {
25713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGE("AudioSfDecoder::onPrepare: Could not find a supported audio track.");
25813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyPrepared(ERROR_UNSUPPORTED);
25913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
26013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
26113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
26213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<MediaSource> source = extractor->getTrack(audioTrackIndex);
26313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<MetaData> meta = source->getFormat();
26413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
26554cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    // we can't trust the OMXCodec (if there is one) to issue a INFO_FORMAT_CHANGED so we want
26654cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    // to have some meaningful values as soon as possible.
267b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    int32_t channelCount;
268b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    bool hasChannelCount = meta->findInt32(kKeyChannelCount, &channelCount);
26954cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    int32_t sr;
27054cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    bool hasSampleRate = meta->findInt32(kKeySampleRate, &sr);
2717f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi
2721fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten    // first compute the duration
27313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    off64_t size;
27413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    int64_t durationUs;
2751fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten    int32_t durationMsec;
27613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (dataSource->getSize(&size) == OK
27713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            && meta->findInt64(kKeyDuration, &durationUs)) {
2785050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        if (durationUs != 0) {
2795050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            mBitrate = size * 8000000ll / durationUs;  // in bits/sec
2805050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        } else {
2815050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            mBitrate = -1;
2825050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        }
28313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mDurationUsec = durationUs;
2841fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten        durationMsec = durationUs / 1000;
28513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    } else {
28613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mBitrate = -1;
2875050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        mDurationUsec = ANDROID_UNKNOWN_TIME;
2881fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten        durationMsec = ANDROID_UNKNOWN_TIME;
2891fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten    }
2901fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten
2911fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten    // then assign the duration under the settings lock
2921fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten    {
2931fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten        Mutex::Autolock _l(mSettingsLock);
2941fa5c3206d06bbebdea2dc92f378ce6b8a211e23Glenn Kasten        mDurationMsec = durationMsec;
29513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
29613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
297e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    // the audio content is not raw PCM, so we need a decoder
29813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (!isRawAudio) {
29913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        OMXClient client;
30013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        CHECK_EQ(client.connect(), (status_t)OK);
30113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
30213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        source = OMXCodec::Create(
30313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                client.interface(), meta, false /* createEncoder */,
30413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                source);
30513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
30613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (source == NULL) {
30713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            SL_LOGE("AudioSfDecoder::onPrepare: Could not instantiate decoder.");
30813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            notifyPrepared(ERROR_UNSUPPORTED);
30913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            return;
31013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
31113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
31213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        meta = source->getFormat();
31313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
31413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
31513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
31613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (source->start() != OK) {
31713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGE("AudioSfDecoder::onPrepare: Failed to start source/decoder.");
31813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyPrepared(MEDIA_ERROR_BASE);
31913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
32013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
32113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
322e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    //---------------------------------
323e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    // The data source, and audio source (a decoder if required) are ready to be used
32413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    mDataSource = dataSource;
32513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    mAudioSource = source;
326e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    mAudioSourceStarted = true;
32713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
3287f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    if (!hasChannelCount) {
329b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        CHECK(meta->findInt32(kKeyChannelCount, &channelCount));
3307f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    }
33154cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
33254cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    if (!hasSampleRate) {
33354cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        CHECK(meta->findInt32(kKeySampleRate, &sr));
33454cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    }
3357f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    // FIXME add code below once channel mask support is in, currently initialized to default
33620d9a1229c7647dd2c6f1bece715080ec6202ecaGlenn Kasten    //       value computed from the channel count
33720d9a1229c7647dd2c6f1bece715080ec6202ecaGlenn Kasten    //    if (!hasChannelMask) {
338b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten    //        CHECK(meta->findInt32(kKeyChannelMask, &channelMask));
3397f5cc1afe49395fefaad9b2bbd728a45d1bfda6aJean-Michel Trivi    //    }
34013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
34113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (!wantPrefetch()) {
34213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("AudioSfDecoder::onPrepare: no need to prefetch");
34313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        // doesn't need prefetching, notify good to go
34413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mCacheStatus = kStatusHigh;
34513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mCacheFill = 1000;
34613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyStatus();
34713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyCacheFill();
34813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
34913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
35054cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    {
35154cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        android::Mutex::Autolock autoLock(mPcmFormatLock);
352b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_SAMPLERATE] = sr;
353b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_NUMCHANNELS] = channelCount;
354b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_CHANNELMASK] =
355b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten                channelCountToMask(channelCount);
35654cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    }
35754cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
35813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    // at this point we have enough information about the source to create the sink that
35913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    // will consume the data
36013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    createAudioSink();
36113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
362e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    // signal successful completion of prepare
363e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    mStateFlags |= kFlagPrepared;
364bb832e853d4afb11b0a3287b2eb0cad87696d631Jean-Michel Trivi
36513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    GenericPlayer::onPrepare();
366e9236d046fdb5cac0696c42e03443a2439188146Jean-Michel Trivi    SL_LOGD("AudioSfDecoder::onPrepare() done, mStateFlags=0x%x", mStateFlags);
36713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
36813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
36913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
37013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onPause() {
37154cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    SL_LOGV("AudioSfDecoder::onPause()");
37213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    GenericPlayer::onPause();
37313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    pauseAudioSink();
37413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
37513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
37613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
37713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onPlay() {
37854cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    SL_LOGV("AudioSfDecoder::onPlay()");
37913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    GenericPlayer::onPlay();
38013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    startAudioSink();
38113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
38213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
38313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
38413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onSeek(const sp<AMessage> &msg) {
38513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    SL_LOGV("AudioSfDecoder::onSeek");
38613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    int64_t timeMsec;
38713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    CHECK(msg->findInt64(WHATPARAM_SEEK_SEEKTIME_MS, &timeMsec));
38813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
3895050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    Mutex::Autolock _l(mTimeLock);
39013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    mStateFlags |= kFlagSeeking;
39113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    mSeekTimeMsec = timeMsec;
392ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    // don't set mLastDecodedPositionUs to ANDROID_UNKNOWN_TIME; getPositionUsec
393ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    // ignores mLastDecodedPositionUs while seeking, and substitutes the seek goal instead
394ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten
395ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    // nop for now
396ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    GenericPlayer::onSeek(msg);
39713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
39813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
39913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
40013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onLoop(const sp<AMessage> &msg) {
40113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    SL_LOGV("AudioSfDecoder::onLoop");
40213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    int32_t loop;
40313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    CHECK(msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop));
40413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
40513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (loop) {
40613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        //SL_LOGV("AudioSfDecoder::onLoop start looping");
40713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mStateFlags |= kFlagLooping;
40813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    } else {
40913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        //SL_LOGV("AudioSfDecoder::onLoop stop looping");
41013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mStateFlags &= ~kFlagLooping;
41113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
412ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten
413ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    // nop for now
414ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten    GenericPlayer::onLoop(msg);
41513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
41613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
41713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
41813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onCheckCache(const sp<AMessage> &msg) {
41913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //SL_LOGV("AudioSfDecoder::onCheckCache");
42013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    bool eos;
4214ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi    CacheStatus_t status = getCacheRemaining(&eos);
42213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
42313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (eos || status == kStatusHigh
42413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            || ((mStateFlags & kFlagPreparing) && (status >= kStatusEnough))) {
42513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mStateFlags & kFlagPlaying) {
42613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            startAudioSink();
42713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
42813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mStateFlags &= ~kFlagBuffering;
42913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
43013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("AudioSfDecoder::onCheckCache: buffering done.");
43113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
43213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mStateFlags & kFlagPreparing) {
43313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //SL_LOGV("AudioSfDecoder::onCheckCache: preparation done.");
43413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            mStateFlags &= ~kFlagPreparing;
43513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
43613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
43713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mStateFlags & kFlagPlaying) {
43813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            (new AMessage(kWhatDecode, id()))->post();
43913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
44013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
44113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
44213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
44313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    msg->post(100000);
44413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
44513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
44613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
44713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onDecode() {
44813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    SL_LOGV("AudioSfDecoder::onDecode");
44913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
45013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //-------------------------------- Need to buffer some more before decoding?
45113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    bool eos;
45213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (mDataSource == 0) {
45313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        // application set play state to paused which failed, then set play state to playing
45413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
45513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
456e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
45713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (wantPrefetch()
45813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            && (getCacheRemaining(&eos) == kStatusLow)
45913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            && !eos) {
46013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("buffering more.");
46113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
46213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mStateFlags & kFlagPlaying) {
46313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            pauseAudioSink();
46413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
46513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mStateFlags |= kFlagBuffering;
46613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        (new AMessage(kWhatCheckCache, id()))->post(100000);
46713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
46813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
46913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
47013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (!(mStateFlags & (kFlagPlaying | kFlagBuffering | kFlagPreparing))) {
47113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        // don't decode if we're not buffering, prefetching or playing
47213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        //SL_LOGV("don't decode: not buffering, prefetching or playing");
47313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return;
47413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
47513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
47613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //-------------------------------- Decode
47713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    status_t err;
47813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    MediaSource::ReadOptions readOptions;
47913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (mStateFlags & kFlagSeeking) {
4805050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        assert(mSeekTimeMsec != ANDROID_UNKNOWN_TIME);
48113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        readOptions.setSeekTo(mSeekTimeMsec * 1000);
48213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
48313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
4845050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    int64_t timeUsec = ANDROID_UNKNOWN_TIME;
48513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    {
486e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        Mutex::Autolock _l(mBufferSourceLock);
487e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi
48813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (NULL != mDecodeBuffer) {
48913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            // the current decoded buffer hasn't been rendered, drop it
49013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            mDecodeBuffer->release();
49113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            mDecodeBuffer = NULL;
49213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
493ca426f63e9c900ecbd28f8e3037aaf47ef739dd4Glenn Kasten        if (!mAudioSourceStarted) {
494e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            return;
495e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        }
49613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        err = mAudioSource->read(&mDecodeBuffer, &readOptions);
49713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (err == OK) {
498209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten            // FIXME workaround apparent bug in AAC decoder: kKeyTime is 3 frames old if length is 0
499209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten            if (mDecodeBuffer->range_length() == 0) {
500209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten                timeUsec = ANDROID_UNKNOWN_TIME;
501209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten            } else {
502209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten                CHECK(mDecodeBuffer->meta_data()->findInt64(kKeyTime, &timeUsec));
503209c05d9104db8b77ef0846ee8eb3b161bf44031Glenn Kasten            }
504e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten        } else {
505e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten            // errors are handled below
50613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
50713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
50813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
50913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    {
5105050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        Mutex::Autolock _l(mTimeLock);
51113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mStateFlags & kFlagSeeking) {
51213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            mStateFlags &= ~kFlagSeeking;
5135050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            mSeekTimeMsec = ANDROID_UNKNOWN_TIME;
5145050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        }
5155050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi        if (timeUsec != ANDROID_UNKNOWN_TIME) {
5167349b2e742b2cedc6d149fac62ed661ad7d47decGlenn Kasten            // Note that though we've decoded this position, we haven't rendered it yet.
5177349b2e742b2cedc6d149fac62ed661ad7d47decGlenn Kasten            // So a GetPosition called after this point will observe the advanced position,
5187349b2e742b2cedc6d149fac62ed661ad7d47decGlenn Kasten            // even though the PCM may not have been supplied to the sink.  That's OK as
519e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten            // we don't claim to provide AAC frame-accurate (let alone sample-accurate) GetPosition.
5205050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            mLastDecodedPositionUs = timeUsec;
52113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
52213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
52313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
52413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //-------------------------------- Handle return of decode
52513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (err != OK) {
52613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        bool continueDecoding = false;
52713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        switch(err) {
52813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            case ERROR_END_OF_STREAM:
52913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                if (0 < mDurationUsec) {
5305050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                    Mutex::Autolock _l(mTimeLock);
53113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                    mLastDecodedPositionUs = mDurationUsec;
53213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                }
53313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                // handle notification and looping at end of stream
53413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                if (mStateFlags & kFlagPlaying) {
535e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten                    notify(PLAYEREVENT_ENDOFSTREAM, 1, true /*async*/);
53613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                }
53713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                if (mStateFlags & kFlagLooping) {
53813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                    seek(0);
53913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                    // kick-off decoding again
54013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                    continueDecoding = true;
54113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                }
54213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                break;
54313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            case INFO_FORMAT_CHANGED:
544e9236d046fdb5cac0696c42e03443a2439188146Jean-Michel Trivi                SL_LOGD("MediaSource::read encountered INFO_FORMAT_CHANGED");
54513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                // reconfigure output
54654cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi                {
54754cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi                    Mutex::Autolock _l(mBufferSourceLock);
54854cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi                    hasNewDecodeParams();
54954cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi                }
55013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                continueDecoding = true;
55113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                break;
55213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            case INFO_DISCONTINUITY:
553e9236d046fdb5cac0696c42e03443a2439188146Jean-Michel Trivi                SL_LOGD("MediaSource::read encountered INFO_DISCONTINUITY");
55413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                continueDecoding = true;
55513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                break;
55613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            default:
55713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                SL_LOGE("MediaSource::read returned error %d", err);
55813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                break;
55913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
56013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (continueDecoding) {
56113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            if (NULL == mDecodeBuffer) {
56213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                (new AMessage(kWhatDecode, id()))->post();
56313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                return;
56413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            }
56513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        } else {
56613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            return;
56713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
56813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
56913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
57013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //-------------------------------- Render
57113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<AMessage> msg = new AMessage(kWhatRender, id());
57213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    msg->post();
57313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
57413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
57513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
57613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
57713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onMessageReceived(const sp<AMessage> &msg) {
57813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    switch (msg->what()) {
57913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        case kWhatDecode:
58013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            onDecode();
58113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            break;
58213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
58313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        case kWhatRender:
58413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            onRender();
58513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            break;
58613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
58713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        case kWhatCheckCache:
58813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            onCheckCache(msg);
58913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            break;
59013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
59113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        default:
59213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            GenericPlayer::onMessageReceived(msg);
59313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            break;
59413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
59513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
59613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
59713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi//--------------------------------------------------
59813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi// Prepared state, prefetch status notifications
59913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::notifyPrepared(status_t prepareRes) {
600e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    assert(!(mStateFlags & (kFlagPrepared | kFlagPreparedUnsuccessfully)));
601e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    if (NO_ERROR == prepareRes) {
602e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten        // The "then" fork is not currently used, but is kept here to make it easier
603e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten        // to replace by a new signalPrepareCompletion(status) if we re-visit this later.
604e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten        mStateFlags |= kFlagPrepared;
605e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    } else {
606e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten        mStateFlags |= kFlagPreparedUnsuccessfully;
607e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    }
608e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    // Do not call the superclass onPrepare to notify, because it uses a default error
609e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    // status code but we can provide a more specific one.
610e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    // GenericPlayer::onPrepare();
611e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten    notify(PLAYEREVENT_PREPARED, (int32_t)prepareRes, true /*async*/);
612e878c470cf58c8654d613ab2449468b44a90d6e5Glenn Kasten    SL_LOGD("AudioSfDecoder::onPrepare() done, mStateFlags=0x%x", mStateFlags);
61313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
61413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
61513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
61613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivivoid AudioSfDecoder::onNotify(const sp<AMessage> &msg) {
617e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    notif_cbf_t notifyClient;
618e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    void*       notifyUser;
619e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi    {
620e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        android::Mutex::Autolock autoLock(mNotifyClientLock);
621e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        if (NULL == mNotifyClient) {
622e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            return;
623e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        } else {
624e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            notifyClient = mNotifyClient;
625e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi            notifyUser   = mNotifyUser;
626e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        }
62713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
62813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    int32_t val;
62913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val)) {
63013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHSTATUSCHANGE, val);
631e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        notifyClient(kEventPrefetchStatusChange, val, 0, notifyUser);
63213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
63313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val)) {
63413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_PREFETCHFILLLEVELUPDATE, val);
635e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        notifyClient(kEventPrefetchFillLevelUpdate, val, 0, notifyUser);
63613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
63713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val)) {
63813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        SL_LOGV("\tASfPlayer notifying %s = %d", PLAYEREVENT_ENDOFSTREAM, val);
639e6ded5c61944a87fa9e472dec3a6929855d42aebJean-Michel Trivi        notifyClient(kEventEndOfStream, val, 0, notifyUser);
64013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
64113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    else {
64213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        GenericPlayer::onNotify(msg);
64313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
64413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
64513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
64613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
64713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi//--------------------------------------------------
64813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi// Private utility functions
64913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
65013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivibool AudioSfDecoder::wantPrefetch() {
651ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi    if (mDataSource != 0) {
652ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        return (mDataSource->flags() & DataSource::kWantsPrefetching);
653ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi    } else {
654ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        // happens if an improper data locator was passed, if the media extractor couldn't be
655ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        //  initialized, if there is no audio track in the media, if the OMX decoder couldn't be
656ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        //  instantiated, if the source couldn't be opened, or if the MediaSource
657ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        //  couldn't be started
658ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        SL_LOGV("AudioSfDecoder::wantPrefetch() tries to access NULL mDataSource");
659ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi        return false;
660ac18c1cd32408884d3960bd7aa56ba419c2ca68bJean-Michel Trivi    }
66113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
66213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
66313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
66413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Triviint64_t AudioSfDecoder::getPositionUsec() {
6655050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi    Mutex::Autolock _l(mTimeLock);
66613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (mStateFlags & kFlagSeeking) {
66713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        return mSeekTimeMsec * 1000;
66813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    } else {
669ddaf8fec2c6362785f8f27e59e30bf6bfe858f3bGlenn Kasten        return mLastDecodedPositionUs;
67013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
67113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
67213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
67313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
6744ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel TriviCacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) {
67513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    sp<NuCachedSource2> cachedSource =
67613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        static_cast<NuCachedSource2 *>(mDataSource.get());
67713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
6784ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi    CacheStatus_t oldStatus = mCacheStatus;
67913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
68013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    status_t finalStatus;
68113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    size_t dataRemaining = cachedSource->approxDataRemaining(&finalStatus);
68213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    *eos = (finalStatus != OK);
68313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
68413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    CHECK_GE(mBitrate, 0);
68513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
68613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    int64_t dataRemainingUs = dataRemaining * 8000000ll / mBitrate;
68713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
68813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    //       dataRemainingUs / 1E6, *eos);
68913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
69013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (*eos) {
69113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        // data is buffered up to the end of the stream, it can't get any better than this
69213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mCacheStatus = kStatusHigh;
69313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        mCacheFill = 1000;
69413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
69513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    } else {
69613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        if (mDurationUsec > 0) {
69713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            // known duration:
69813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
69913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //   fill level is ratio of how much has been played + how much is
70013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //   cached, divided by total duration
701a93915739311e228a59d93ecd93a5665299953abGlenn Kasten            int64_t currentPositionUsec = getPositionUsec();
7025050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            if (currentPositionUsec == ANDROID_UNKNOWN_TIME) {
7035050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                // if we don't know where we are, assume the worst for the fill ratio
7045050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                currentPositionUsec = 0;
7055050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            }
7065050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            if (mDurationUsec > 0) {
7075050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                mCacheFill = (int16_t) ((1000.0
7085050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                        * (double)(currentPositionUsec + dataRemainingUs) / mDurationUsec));
7095050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            } else {
7105050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi                mCacheFill = 0;
7115050a75e342ce45794d56666cddde3d46472acc7Jean-Michel Trivi            }
71213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //SL_LOGV("cacheFill = %d", mCacheFill);
71313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
71413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //   cache status is evaluated against duration thresholds
7154ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi            if (dataRemainingUs > DURATION_CACHED_HIGH_MS*1000) {
71613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusHigh;
717de7c7da8460de9fb1e8739978f25e1463e2e1666Steve Block                //ALOGV("high");
7184ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi            } else if (dataRemainingUs > DURATION_CACHED_MED_MS*1000) {
719de7c7da8460de9fb1e8739978f25e1463e2e1666Steve Block                //ALOGV("enough");
72013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusEnough;
7214ee246c55533bdab8ab5fa0f0581744fe58e7c91Jean-Michel Trivi            } else if (dataRemainingUs < DURATION_CACHED_LOW_MS*1000) {
722de7c7da8460de9fb1e8739978f25e1463e2e1666Steve Block                //ALOGV("low");
72313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusLow;
72413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            } else {
72513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusIntermediate;
72613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            }
72713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
72813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        } else {
72913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            // unknown duration:
73013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
73113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //   cache status is evaluated against cache amount thresholds
73213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            //   (no duration so we don't have the bitrate either, could be derived from format?)
73313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            if (dataRemaining > SIZE_CACHED_HIGH_BYTES) {
73413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusHigh;
73513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            } else if (dataRemaining > SIZE_CACHED_MED_BYTES) {
73613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusEnough;
73713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            } else if (dataRemaining < SIZE_CACHED_LOW_BYTES) {
73813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusLow;
73913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            } else {
74013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi                mCacheStatus = kStatusIntermediate;
74113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi            }
74213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        }
74313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
74413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
74513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
74613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (oldStatus != mCacheStatus) {
74713837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyStatus();
74813837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
74913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
75013837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    if (abs(mCacheFill - mLastNotifiedCacheFill) > mCacheFillNotifThreshold) {
75113837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi        notifyCacheFill();
75213837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    }
75313837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
75413837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi    return mCacheStatus;
75513837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi}
75613837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi
75754cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
75854cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivivoid AudioSfDecoder::hasNewDecodeParams() {
75954cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
76054cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    if ((mAudioSource != 0) && mAudioSourceStarted) {
76154cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        sp<MetaData> meta = mAudioSource->getFormat();
76254cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
763b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        int32_t channelCount;
764b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten        CHECK(meta->findInt32(kKeyChannelCount, &channelCount));
76554cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        int32_t sr;
76654cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        CHECK(meta->findInt32(kKeySampleRate, &sr));
76754cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
76820d9a1229c7647dd2c6f1bece715080ec6202ecaGlenn Kasten        // FIXME similar to onPrepare()
76954cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        {
77054cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi            android::Mutex::Autolock autoLock(mPcmFormatLock);
771b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten            SL_LOGV("format changed: old sr=%d, channels=%d; new sr=%d, channels=%d",
772b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten                    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_SAMPLERATE],
773b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten                    mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_NUMCHANNELS],
774b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten                    sr, channelCount);
775b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten            mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_NUMCHANNELS] = channelCount;
776b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten            mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_SAMPLERATE] = sr;
777b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten            mPcmFormatValues[ANDROID_KEY_INDEX_PCMFORMAT_CHANNELMASK] =
778b4393ef4ef3edb785746c37fd7b68950e85283aeGlenn Kasten                    channelCountToMask(channelCount);
77954cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi        }
780e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten        // there's no need to do a notify of PLAYEREVENT_CHANNEL_COUNT,
781e2e8fa36bd7448b59fbcdf141e0b6d21e5401d91Glenn Kasten        // because the only listener is for volume updates, and decoders don't support that
78254cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    }
78354cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
78454cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    // alert users of those params
78554cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi    updateAudioSink();
78654cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi}
78754cad4f35a090a06e655fcc9e072e1d38f9e7689Jean-Michel Trivi
7880c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivistatic const char* const kPlaybackOnlyCodecs[] = { MEDIA_MIMETYPE_AUDIO_AMR_NB,
7893597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi        MEDIA_MIMETYPE_AUDIO_AMR_WB };
7900c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi#define NB_PLAYBACK_ONLY_CODECS (sizeof(kPlaybackOnlyCodecs)/sizeof(kPlaybackOnlyCodecs[0]))
7913597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi
7923597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivibool AudioSfDecoder::isSupportedCodec(const char* mime) {
7930c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi    bool codecRequiresPermission = false;
7940c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi    for (unsigned int i = 0 ; i < NB_PLAYBACK_ONLY_CODECS ; i++) {
7950c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi        if (!strcasecmp(mime, kPlaybackOnlyCodecs[i])) {
7960c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi            codecRequiresPermission = true;
7970c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi            break;
7983597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi        }
7993597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi    }
8000c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi    if (codecRequiresPermission) {
8010c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi        // verify only the system can decode, for playback only
8020c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi        return checkCallingPermission(
8030c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi                String16("android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"));
8040c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi    } else {
8050c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi        return true;
8060c7d40a5f11f6930e6c4b2551a14f41dd721f936Jean-Michel Trivi    }
8073597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi}
8083597268c2bf4ff71521e3cbe522d7ee02c41f175Jean-Michel Trivi
80913837cf3f7be0eb8b1a9552bd99a89f98c987720Jean-Michel Trivi} // namespace android
810