Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 24 | namespace android { |
| 25 | |
| 26 | struct ATSParser; |
| 27 | struct LiveSession; |
| 28 | |
| 29 | struct NuPlayer::HTTPLiveSource : public NuPlayer::Source { |
Andreas Huber | ad0d9c9 | 2011-04-19 11:50:27 -0700 | [diff] [blame^] | 30 | HTTPLiveSource( |
| 31 | const char *url, |
| 32 | const KeyedVector<String8, String8> *headers); |
Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 33 | |
Andreas Huber | 43c3e6c | 2011-01-05 12:17:08 -0800 | [diff] [blame] | 34 | virtual void start(); |
Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 35 | |
| 36 | // Returns true iff more data was available, false on EOS. |
Andreas Huber | 43c3e6c | 2011-01-05 12:17:08 -0800 | [diff] [blame] | 37 | virtual bool feedMoreTSData(); |
Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 38 | |
Andreas Huber | 43c3e6c | 2011-01-05 12:17:08 -0800 | [diff] [blame] | 39 | 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 Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 45 | |
| 46 | protected: |
| 47 | virtual ~HTTPLiveSource(); |
| 48 | |
| 49 | private: |
Andreas Huber | ad0d9c9 | 2011-04-19 11:50:27 -0700 | [diff] [blame^] | 50 | enum Flags { |
| 51 | // Don't log any URLs. |
| 52 | kFlagIncognito = 1, |
| 53 | }; |
| 54 | |
Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 55 | AString mURL; |
Andreas Huber | ad0d9c9 | 2011-04-19 11:50:27 -0700 | [diff] [blame^] | 56 | KeyedVector<String8, String8> mExtraHeaders; |
Andreas Huber | 7314fa1 | 2011-02-24 14:42:48 -0800 | [diff] [blame] | 57 | uint32_t mFlags; |
Andreas Huber | 5bc087c | 2010-12-23 10:27:40 -0800 | [diff] [blame] | 58 | 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_ |