HTTPLiveSource.cpp revision 7314fa17093d514199fedcb55ac41136a1b31cb3
15bc087c573c70c84c6a39946457590b42d392a33Andreas Huber/*
25bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * Copyright (C) 2010 The Android Open Source Project
35bc087c573c70c84c6a39946457590b42d392a33Andreas Huber *
45bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * Licensed under the Apache License, Version 2.0 (the "License");
55bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * you may not use this file except in compliance with the License.
65bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * You may obtain a copy of the License at
75bc087c573c70c84c6a39946457590b42d392a33Andreas Huber *
85bc087c573c70c84c6a39946457590b42d392a33Andreas Huber *      http://www.apache.org/licenses/LICENSE-2.0
95bc087c573c70c84c6a39946457590b42d392a33Andreas Huber *
105bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * Unless required by applicable law or agreed to in writing, software
115bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * distributed under the License is distributed on an "AS IS" BASIS,
125bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
135bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * See the License for the specific language governing permissions and
145bc087c573c70c84c6a39946457590b42d392a33Andreas Huber * limitations under the License.
155bc087c573c70c84c6a39946457590b42d392a33Andreas Huber */
165bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
175bc087c573c70c84c6a39946457590b42d392a33Andreas Huber//#define LOG_NDEBUG 0
185bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#define LOG_TAG "HTTPLiveSource"
195bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <utils/Log.h>
205bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
215bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "HTTPLiveSource.h"
225bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
235bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "ATSParser.h"
245bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "AnotherPacketSource.h"
255bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "LiveDataSource.h"
265bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "LiveSession.h"
275bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
285bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <media/stagefright/foundation/ABuffer.h>
295bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <media/stagefright/foundation/ADebug.h>
305bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <media/stagefright/foundation/AMessage.h>
315bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <media/stagefright/MediaErrors.h>
325bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include <media/stagefright/MetaData.h>
335bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
345bc087c573c70c84c6a39946457590b42d392a33Andreas Hubernamespace android {
355bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
367314fa17093d514199fedcb55ac41136a1b31cb3Andreas HuberNuPlayer::HTTPLiveSource::HTTPLiveSource(const char *url, uint32_t flags)
375bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    : mURL(url),
387314fa17093d514199fedcb55ac41136a1b31cb3Andreas Huber      mFlags(flags),
395bc087c573c70c84c6a39946457590b42d392a33Andreas Huber      mEOS(false),
405bc087c573c70c84c6a39946457590b42d392a33Andreas Huber      mOffset(0) {
415bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
425bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
435bc087c573c70c84c6a39946457590b42d392a33Andreas HuberNuPlayer::HTTPLiveSource::~HTTPLiveSource() {
445bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveSession->disconnect();
455bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveLooper->stop();
465bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
475bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
485bc087c573c70c84c6a39946457590b42d392a33Andreas Hubervoid NuPlayer::HTTPLiveSource::start() {
495bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveLooper = new ALooper;
505bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveLooper->setName("http live");
515bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveLooper->start();
525bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
537314fa17093d514199fedcb55ac41136a1b31cb3Andreas Huber    mLiveSession = new LiveSession(
547314fa17093d514199fedcb55ac41136a1b31cb3Andreas Huber            (mFlags & kFlagIncognito) ? LiveSession::kFlagIncognito : 0);
557314fa17093d514199fedcb55ac41136a1b31cb3Andreas Huber
565bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveLooper->registerHandler(mLiveSession);
575bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
585bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mLiveSession->connect(mURL.c_str());
595bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
605bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    mTSParser = new ATSParser;
615bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
625bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
635bc087c573c70c84c6a39946457590b42d392a33Andreas Hubersp<MetaData> NuPlayer::HTTPLiveSource::getFormat(bool audio) {
645bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    ATSParser::SourceType type =
655bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        audio ? ATSParser::MPEG2ADTS_AUDIO : ATSParser::AVC_VIDEO;
665bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
675bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<AnotherPacketSource> source =
685bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
695bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
705bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    if (source == NULL) {
715bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        return NULL;
725bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    }
735bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
745bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    return source->getFormat();
755bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
765bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
775bc087c573c70c84c6a39946457590b42d392a33Andreas Huberbool NuPlayer::HTTPLiveSource::feedMoreTSData() {
785bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    if (mEOS) {
795bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        return false;
805bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    }
815bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
825bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<LiveDataSource> source =
835bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        static_cast<LiveDataSource *>(mLiveSession->getDataSource().get());
845bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
8522fc52f6f72f39e33c3970d0291de3569118aa5cAndreas Huber    for (int32_t i = 0; i < 50; ++i) {
865bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        char buffer[188];
875bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        ssize_t n = source->readAtNonBlocking(mOffset, buffer, sizeof(buffer));
885bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
895bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        if (n == -EWOULDBLOCK) {
905bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            break;
915bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        } else if (n < 0) {
925bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            LOGI("input data EOS reached.");
931aef211b4e5dc952081727bfd2318b2cb5ca4506Andreas Huber            mTSParser->signalEOS(n);
945bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            mEOS = true;
955bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            break;
965bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        } else {
975bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            if (buffer[0] == 0x00) {
985bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                // XXX legacy
995bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                mTSParser->signalDiscontinuity(
1005bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                        buffer[1] == 0x00
1015bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                            ? ATSParser::DISCONTINUITY_SEEK
1025bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                            : ATSParser::DISCONTINUITY_FORMATCHANGE);
1035bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            } else {
1045bc087c573c70c84c6a39946457590b42d392a33Andreas Huber                mTSParser->feedTSPacket(buffer, sizeof(buffer));
1055bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            }
1065bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1075bc087c573c70c84c6a39946457590b42d392a33Andreas Huber            mOffset += n;
1085bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        }
1095bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    }
1105bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1115bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    return true;
1125bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
1135bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1145bc087c573c70c84c6a39946457590b42d392a33Andreas Huberstatus_t NuPlayer::HTTPLiveSource::dequeueAccessUnit(
1155bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        bool audio, sp<ABuffer> *accessUnit) {
1165bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    ATSParser::SourceType type =
1175bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        audio ? ATSParser::MPEG2ADTS_AUDIO : ATSParser::AVC_VIDEO;
1185bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1195bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<AnotherPacketSource> source =
1205bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
1215bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1225bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    if (source == NULL) {
1235bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        return -EWOULDBLOCK;
1245bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    }
1255bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1265bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    status_t finalResult;
1275bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    if (!source->hasBufferAvailable(&finalResult)) {
1285bc087c573c70c84c6a39946457590b42d392a33Andreas Huber        return finalResult == OK ? -EWOULDBLOCK : finalResult;
1295bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    }
1305bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
1315bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    return source->dequeueAccessUnit(accessUnit);
1325bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}
1335bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
13443c3e6ce02215ca99d506458f596cb1211639f29Andreas Huberstatus_t NuPlayer::HTTPLiveSource::getDuration(int64_t *durationUs) {
13543c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    return mLiveSession->getDuration(durationUs);
13643c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber}
13743c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber
13843c3e6ce02215ca99d506458f596cb1211639f29Andreas Huberstatus_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) {
13943c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    // We need to make sure we're not seeking until we have seen the very first
14043c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    // PTS timestamp in the whole stream (from the beginning of the stream).
14143c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    while (!mTSParser->PTSTimeDeltaEstablished() && feedMoreTSData()) {
14243c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber        usleep(100000);
14343c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    }
14443c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber
14543c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    mLiveSession->seekTo(seekTimeUs);
14643c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber
14743c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    return OK;
14843c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber}
14943c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber
15043c3e6ce02215ca99d506458f596cb1211639f29Andreas Huberbool NuPlayer::HTTPLiveSource::isSeekable() {
15143c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber    return mLiveSession->isSeekable();
15243c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber}
15343c3e6ce02215ca99d506458f596cb1211639f29Andreas Huber
1545bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}  // namespace android
1555bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
156