HTTPLiveSource.h revision 5bc087c573c70c84c6a39946457590b42d392a33
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#ifndef HTTP_LIVE_SOURCE_H_
185bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
195bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#define HTTP_LIVE_SOURCE_H_
205bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
215bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "NuPlayer.h"
225bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#include "NuPlayerSource.h"
235bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
245bc087c573c70c84c6a39946457590b42d392a33Andreas Hubernamespace android {
255bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
265bc087c573c70c84c6a39946457590b42d392a33Andreas Huberstruct ATSParser;
275bc087c573c70c84c6a39946457590b42d392a33Andreas Huberstruct LiveSession;
285bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
295bc087c573c70c84c6a39946457590b42d392a33Andreas Huberstruct NuPlayer::HTTPLiveSource : public NuPlayer::Source {
305bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    HTTPLiveSource(const char *url);
315bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
325bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    void start();
335bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
345bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    // Returns true iff more data was available, false on EOS.
355bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    bool feedMoreTSData();
365bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
375bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<MetaData> getFormat(bool audio);
385bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
395bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
405bc087c573c70c84c6a39946457590b42d392a33Andreas Huberprotected:
415bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    virtual ~HTTPLiveSource();
425bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
435bc087c573c70c84c6a39946457590b42d392a33Andreas Huberprivate:
445bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    AString mURL;
455bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    bool mEOS;
465bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    off64_t mOffset;
475bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<ALooper> mLiveLooper;
485bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<LiveSession> mLiveSession;
495bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    sp<ATSParser> mTSParser;
505bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
515bc087c573c70c84c6a39946457590b42d392a33Andreas Huber    DISALLOW_EVIL_CONSTRUCTORS(HTTPLiveSource);
525bc087c573c70c84c6a39946457590b42d392a33Andreas Huber};
535bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
545bc087c573c70c84c6a39946457590b42d392a33Andreas Huber}  // namespace android
555bc087c573c70c84c6a39946457590b42d392a33Andreas Huber
565bc087c573c70c84c6a39946457590b42d392a33Andreas Huber#endif  // HTTP_LIVE_SOURCE_H_
57