blob: 079f6fa019525739cf716891298011fa7be93cae [file] [log] [blame]
Andreas Huber54e66492010-12-23 10:27:40 -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 "HTTPLiveSource"
19#include <utils/Log.h>
20
21#include "HTTPLiveSource.h"
22
23#include "ATSParser.h"
24#include "AnotherPacketSource.h"
25#include "LiveDataSource.h"
26#include "LiveSession.h"
27
28#include <media/stagefright/foundation/ABuffer.h>
29#include <media/stagefright/foundation/ADebug.h>
30#include <media/stagefright/foundation/AMessage.h>
31#include <media/stagefright/MediaErrors.h>
32#include <media/stagefright/MetaData.h>
33
34namespace android {
35
Andreas Huber50874942011-04-19 11:50:27 -070036NuPlayer::HTTPLiveSource::HTTPLiveSource(
37 const char *url,
Andreas Huber603d7392011-06-30 15:47:02 -070038 const KeyedVector<String8, String8> *headers,
39 bool uidValid, uid_t uid)
Andreas Huber54e66492010-12-23 10:27:40 -080040 : mURL(url),
Andreas Huber603d7392011-06-30 15:47:02 -070041 mUIDValid(uidValid),
42 mUID(uid),
Andreas Huber50874942011-04-19 11:50:27 -070043 mFlags(0),
Andreas Huber79226192011-09-27 12:12:25 -070044 mFinalResult(OK),
Andreas Huber54e66492010-12-23 10:27:40 -080045 mOffset(0) {
Andreas Huber50874942011-04-19 11:50:27 -070046 if (headers) {
47 mExtraHeaders = *headers;
48
49 ssize_t index =
50 mExtraHeaders.indexOfKey(String8("x-hide-urls-from-log"));
51
52 if (index >= 0) {
53 mFlags |= kFlagIncognito;
54
55 mExtraHeaders.removeItemsAt(index);
56 }
57 }
Andreas Huber54e66492010-12-23 10:27:40 -080058}
59
60NuPlayer::HTTPLiveSource::~HTTPLiveSource() {
Andreas Huberbd8fbfa2011-07-15 16:25:41 -070061 if (mLiveSession != NULL) {
62 mLiveSession->disconnect();
63 mLiveLooper->stop();
64 }
Andreas Huber54e66492010-12-23 10:27:40 -080065}
66
67void NuPlayer::HTTPLiveSource::start() {
68 mLiveLooper = new ALooper;
69 mLiveLooper->setName("http live");
70 mLiveLooper->start();
71
Andreas Huber53182c42011-02-24 14:42:48 -080072 mLiveSession = new LiveSession(
Andreas Huber603d7392011-06-30 15:47:02 -070073 (mFlags & kFlagIncognito) ? LiveSession::kFlagIncognito : 0,
74 mUIDValid, mUID);
Andreas Huber53182c42011-02-24 14:42:48 -080075
Andreas Huber54e66492010-12-23 10:27:40 -080076 mLiveLooper->registerHandler(mLiveSession);
77
Andreas Huber50874942011-04-19 11:50:27 -070078 mLiveSession->connect(
79 mURL.c_str(), mExtraHeaders.isEmpty() ? NULL : &mExtraHeaders);
Andreas Huber54e66492010-12-23 10:27:40 -080080
81 mTSParser = new ATSParser;
82}
83
84sp<MetaData> NuPlayer::HTTPLiveSource::getFormat(bool audio) {
85 ATSParser::SourceType type =
Andreas Hubereb2f9c12011-05-19 08:37:39 -070086 audio ? ATSParser::AUDIO : ATSParser::VIDEO;
Andreas Huber54e66492010-12-23 10:27:40 -080087
88 sp<AnotherPacketSource> source =
89 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
90
91 if (source == NULL) {
92 return NULL;
93 }
94
95 return source->getFormat();
96}
97
Andreas Huber79226192011-09-27 12:12:25 -070098status_t NuPlayer::HTTPLiveSource::feedMoreTSData() {
99 if (mFinalResult != OK) {
100 return mFinalResult;
Andreas Huber54e66492010-12-23 10:27:40 -0800101 }
102
103 sp<LiveDataSource> source =
104 static_cast<LiveDataSource *>(mLiveSession->getDataSource().get());
105
Andreas Huber847551c2011-01-05 16:24:27 -0800106 for (int32_t i = 0; i < 50; ++i) {
Andreas Huber54e66492010-12-23 10:27:40 -0800107 char buffer[188];
108 ssize_t n = source->readAtNonBlocking(mOffset, buffer, sizeof(buffer));
109
110 if (n == -EWOULDBLOCK) {
111 break;
112 } else if (n < 0) {
Andreas Huber928baf12011-09-26 10:53:29 -0700113 if (n != ERROR_END_OF_STREAM) {
Andreas Huber79226192011-09-27 12:12:25 -0700114 LOGI("input data EOS reached, error %ld", n);
Andreas Huber928baf12011-09-26 10:53:29 -0700115 } else {
116 LOGI("input data EOS reached.");
117 }
Andreas Hubercbeaca72011-01-04 14:01:29 -0800118 mTSParser->signalEOS(n);
Andreas Huber79226192011-09-27 12:12:25 -0700119 mFinalResult = n;
Andreas Huber54e66492010-12-23 10:27:40 -0800120 break;
121 } else {
122 if (buffer[0] == 0x00) {
123 // XXX legacy
Andreas Huber669ad132011-03-02 15:34:46 -0800124 sp<AMessage> extra;
Andreas Huber54e66492010-12-23 10:27:40 -0800125 mTSParser->signalDiscontinuity(
126 buffer[1] == 0x00
127 ? ATSParser::DISCONTINUITY_SEEK
Andreas Huber669ad132011-03-02 15:34:46 -0800128 : ATSParser::DISCONTINUITY_FORMATCHANGE,
129 extra);
Andreas Huber54e66492010-12-23 10:27:40 -0800130 } else {
Andreas Hubereeddb0e2011-08-31 16:29:05 -0700131 status_t err = mTSParser->feedTSPacket(buffer, sizeof(buffer));
132
133 if (err != OK) {
134 LOGE("TS Parser returned error %d", err);
135 mTSParser->signalEOS(err);
Andreas Huber79226192011-09-27 12:12:25 -0700136 mFinalResult = err;
Andreas Hubereeddb0e2011-08-31 16:29:05 -0700137 break;
138 }
Andreas Huber54e66492010-12-23 10:27:40 -0800139 }
140
141 mOffset += n;
142 }
143 }
144
Andreas Huber79226192011-09-27 12:12:25 -0700145 return OK;
Andreas Huber54e66492010-12-23 10:27:40 -0800146}
147
148status_t NuPlayer::HTTPLiveSource::dequeueAccessUnit(
149 bool audio, sp<ABuffer> *accessUnit) {
150 ATSParser::SourceType type =
Andreas Hubereb2f9c12011-05-19 08:37:39 -0700151 audio ? ATSParser::AUDIO : ATSParser::VIDEO;
Andreas Huber54e66492010-12-23 10:27:40 -0800152
153 sp<AnotherPacketSource> source =
154 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
155
156 if (source == NULL) {
157 return -EWOULDBLOCK;
158 }
159
160 status_t finalResult;
161 if (!source->hasBufferAvailable(&finalResult)) {
162 return finalResult == OK ? -EWOULDBLOCK : finalResult;
163 }
164
165 return source->dequeueAccessUnit(accessUnit);
166}
167
Andreas Huber08e10cb2011-01-05 12:17:08 -0800168status_t NuPlayer::HTTPLiveSource::getDuration(int64_t *durationUs) {
169 return mLiveSession->getDuration(durationUs);
170}
171
172status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) {
173 // We need to make sure we're not seeking until we have seen the very first
174 // PTS timestamp in the whole stream (from the beginning of the stream).
Andreas Huber79226192011-09-27 12:12:25 -0700175 while (!mTSParser->PTSTimeDeltaEstablished() && feedMoreTSData() == OK) {
Andreas Huber08e10cb2011-01-05 12:17:08 -0800176 usleep(100000);
177 }
178
179 mLiveSession->seekTo(seekTimeUs);
180
181 return OK;
182}
183
184bool NuPlayer::HTTPLiveSource::isSeekable() {
185 return mLiveSession->isSeekable();
186}
187
Andreas Huber54e66492010-12-23 10:27:40 -0800188} // namespace android
189