blob: 7a337e9aa0253968121289bb6033636b74a05917 [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#ifndef HTTP_LIVE_SOURCE_H_
18
19#define HTTP_LIVE_SOURCE_H_
20
21#include "NuPlayer.h"
22#include "NuPlayerSource.h"
23
24namespace android {
25
26struct ATSParser;
27struct LiveSession;
28
29struct NuPlayer::HTTPLiveSource : public NuPlayer::Source {
Andreas Huber50874942011-04-19 11:50:27 -070030 HTTPLiveSource(
31 const char *url,
32 const KeyedVector<String8, String8> *headers);
Andreas Huber54e66492010-12-23 10:27:40 -080033
Andreas Huber08e10cb2011-01-05 12:17:08 -080034 virtual void start();
Andreas Huber54e66492010-12-23 10:27:40 -080035
36 // Returns true iff more data was available, false on EOS.
Andreas Huber08e10cb2011-01-05 12:17:08 -080037 virtual bool feedMoreTSData();
Andreas Huber54e66492010-12-23 10:27:40 -080038
Andreas Huber08e10cb2011-01-05 12:17:08 -080039 virtual sp<MetaData> getFormat(bool audio);
40 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
41
42 virtual status_t getDuration(int64_t *durationUs);
43 virtual status_t seekTo(int64_t seekTimeUs);
44 virtual bool isSeekable();
Andreas Huber54e66492010-12-23 10:27:40 -080045
46protected:
47 virtual ~HTTPLiveSource();
48
49private:
Andreas Huber50874942011-04-19 11:50:27 -070050 enum Flags {
51 // Don't log any URLs.
52 kFlagIncognito = 1,
53 };
54
Andreas Huber54e66492010-12-23 10:27:40 -080055 AString mURL;
Andreas Huber50874942011-04-19 11:50:27 -070056 KeyedVector<String8, String8> mExtraHeaders;
Andreas Huber53182c42011-02-24 14:42:48 -080057 uint32_t mFlags;
Andreas Huber54e66492010-12-23 10:27:40 -080058 bool mEOS;
59 off64_t mOffset;
60 sp<ALooper> mLiveLooper;
61 sp<LiveSession> mLiveSession;
62 sp<ATSParser> mTSParser;
63
64 DISALLOW_EVIL_CONSTRUCTORS(HTTPLiveSource);
65};
66
67} // namespace android
68
69#endif // HTTP_LIVE_SOURCE_H_