blob: 76e628ba655565acfc1aaf91ae4dfb4058fe0133 [file] [log] [blame]
Andreas Huberafed0e12011-09-20 15:39:58 -07001/*
2 * Copyright (C) 2012 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 GENERIC_SOURCE_H_
18
19#define GENERIC_SOURCE_H_
20
21#include "NuPlayer.h"
22#include "NuPlayerSource.h"
23
24#include "ATSParser.h"
25
Robert Shih3423bbd2014-07-16 15:47:09 -070026#include <media/mediaplayer.h>
27
Andreas Huberafed0e12011-09-20 15:39:58 -070028namespace android {
29
30struct AnotherPacketSource;
31struct ARTSPController;
32struct DataSource;
33struct MediaSource;
Robert Shih3423bbd2014-07-16 15:47:09 -070034class MediaBuffer;
Andreas Huberafed0e12011-09-20 15:39:58 -070035
36struct NuPlayer::GenericSource : public NuPlayer::Source {
Chong Zhang3de157d2014-08-05 20:54:44 -070037 GenericSource(const sp<AMessage> &notify, bool uidValid, uid_t uid);
38
39 status_t init(
Andreas Huber1b86fe02014-01-29 11:13:26 -080040 const sp<IMediaHTTPService> &httpService,
Andreas Huberafed0e12011-09-20 15:39:58 -070041 const char *url,
Chong Zhang3de157d2014-08-05 20:54:44 -070042 const KeyedVector<String8, String8> *headers);
Andreas Huberafed0e12011-09-20 15:39:58 -070043
Chong Zhang3de157d2014-08-05 20:54:44 -070044 status_t init(int fd, int64_t offset, int64_t length);
Andreas Huberafed0e12011-09-20 15:39:58 -070045
Andreas Huber9575c962013-02-05 13:59:56 -080046 virtual void prepareAsync();
47
Andreas Huberafed0e12011-09-20 15:39:58 -070048 virtual void start();
49
50 virtual status_t feedMoreTSData();
51
Andreas Huberafed0e12011-09-20 15:39:58 -070052 virtual status_t dequeueAccessUnit(bool audio, sp<ABuffer> *accessUnit);
53
54 virtual status_t getDuration(int64_t *durationUs);
Robert Shihdd235722014-06-12 14:49:23 -070055 virtual size_t getTrackCount() const;
56 virtual sp<AMessage> getTrackInfo(size_t trackIndex) const;
Lajos Molnare26940f2014-07-31 10:31:26 -070057 virtual ssize_t getSelectedTrack(media_track_type type) const;
Robert Shih3423bbd2014-07-16 15:47:09 -070058 virtual status_t selectTrack(size_t trackIndex, bool select);
Andreas Huberafed0e12011-09-20 15:39:58 -070059 virtual status_t seekTo(int64_t seekTimeUs);
Andreas Huberb7c8e912012-11-27 15:02:53 -080060
Lajos Molnarcc227032014-07-17 15:33:06 -070061 virtual status_t setBuffers(bool audio, Vector<MediaBuffer *> &buffers);
62
Andreas Huberafed0e12011-09-20 15:39:58 -070063protected:
64 virtual ~GenericSource();
65
Robert Shih3423bbd2014-07-16 15:47:09 -070066 virtual void onMessageReceived(const sp<AMessage> &msg);
67
Andreas Huber84066782011-08-16 09:34:26 -070068 virtual sp<MetaData> getFormatMeta(bool audio);
69
Andreas Huberafed0e12011-09-20 15:39:58 -070070private:
Robert Shih3423bbd2014-07-16 15:47:09 -070071 enum {
72 kWhatFetchSubtitleData,
Lajos Molnare26940f2014-07-31 10:31:26 -070073 kWhatFetchTimedTextData,
Robert Shih3423bbd2014-07-16 15:47:09 -070074 kWhatSendSubtitleData,
Lajos Molnare26940f2014-07-31 10:31:26 -070075 kWhatSendTimedTextData,
Robert Shih3423bbd2014-07-16 15:47:09 -070076 kWhatChangeAVSource,
77 };
78
Robert Shihdd235722014-06-12 14:49:23 -070079 Vector<sp<MediaSource> > mSources;
80
Andreas Huberafed0e12011-09-20 15:39:58 -070081 struct Track {
Robert Shihdd235722014-06-12 14:49:23 -070082 size_t mIndex;
Andreas Huberafed0e12011-09-20 15:39:58 -070083 sp<MediaSource> mSource;
84 sp<AnotherPacketSource> mPackets;
85 };
86
87 Track mAudioTrack;
88 Track mVideoTrack;
Robert Shih3423bbd2014-07-16 15:47:09 -070089 Track mSubtitleTrack;
Lajos Molnare26940f2014-07-31 10:31:26 -070090 Track mTimedTextTrack;
Andreas Huberafed0e12011-09-20 15:39:58 -070091
Robert Shih3423bbd2014-07-16 15:47:09 -070092 int32_t mFetchSubtitleDataGeneration;
Lajos Molnare26940f2014-07-31 10:31:26 -070093 int32_t mFetchTimedTextDataGeneration;
Andreas Huberafed0e12011-09-20 15:39:58 -070094 int64_t mDurationUs;
95 bool mAudioIsVorbis;
Lajos Molnarcc227032014-07-17 15:33:06 -070096 bool mIsWidevine;
97 bool mUIDValid;
98 uid_t mUID;
Andreas Huberafed0e12011-09-20 15:39:58 -070099
Chong Zhang3de157d2014-08-05 20:54:44 -0700100 status_t initFromDataSource(
101 const sp<DataSource> &dataSource,
102 const char *mime);
Andreas Huberafed0e12011-09-20 15:39:58 -0700103
Lajos Molnare26940f2014-07-31 10:31:26 -0700104 void fetchTextData(
105 uint32_t what, media_track_type type,
106 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
107
108 void sendTextData(
109 uint32_t what, media_track_type type,
110 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
111
Robert Shih3423bbd2014-07-16 15:47:09 -0700112 sp<ABuffer> mediaBufferToABuffer(
113 MediaBuffer *mbuf,
114 media_track_type trackType,
115 int64_t *actualTimeUs = NULL);
116
Andreas Huberafed0e12011-09-20 15:39:58 -0700117 void readBuffer(
Robert Shih3423bbd2014-07-16 15:47:09 -0700118 media_track_type trackType,
119 int64_t seekTimeUs = -1ll, int64_t *actualTimeUs = NULL, bool formatChange = false);
Andreas Huberafed0e12011-09-20 15:39:58 -0700120
121 DISALLOW_EVIL_CONSTRUCTORS(GenericSource);
122};
123
124} // namespace android
125
126#endif // GENERIC_SOURCE_H_