NuPlayer.h revision 8d121d41f5355b78b687f44e8d4aae4de2aa0359
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 NU_PLAYER_H_
18
19#define NU_PLAYER_H_
20
21#include <media/MediaPlayerInterface.h>
22#include <media/stagefright/foundation/AHandler.h>
23#include <media/stagefright/NativeWindowWrapper.h>
24
25namespace android {
26
27struct ABuffer;
28struct AMessage;
29struct MetaData;
30struct NuPlayerDriver;
31
32struct NuPlayer : public AHandler {
33    NuPlayer();
34
35    void setUID(uid_t uid);
36
37    void setDriver(const wp<NuPlayerDriver> &driver);
38
39    void setDataSourceAsync(const sp<IStreamSource> &source);
40
41    void setDataSourceAsync(
42            const sp<IMediaHTTPService> &httpService,
43            const char *url,
44            const KeyedVector<String8, String8> *headers);
45
46    void setDataSourceAsync(int fd, int64_t offset, int64_t length);
47
48    void prepareAsync();
49
50    void setVideoSurfaceTextureAsync(
51            const sp<IGraphicBufferProducer> &bufferProducer);
52
53    void setAudioSink(const sp<MediaPlayerBase::AudioSink> &sink);
54    void start();
55
56    void pause();
57    void resume();
58
59    // Will notify the driver through "notifyResetComplete" once finished.
60    void resetAsync();
61
62    // Will notify the driver through "notifySeekComplete" once finished
63    // and needNotify is true.
64    void seekToAsync(int64_t seekTimeUs, bool needNotify = false);
65
66    status_t setVideoScalingMode(int32_t mode);
67    status_t getTrackInfo(Parcel* reply) const;
68    status_t getSelectedTrack(int32_t type, Parcel* reply) const;
69    status_t selectTrack(size_t trackIndex, bool select);
70
71    sp<MetaData> getFileMeta();
72
73    static const size_t kAggregateBufferSizeBytes;
74
75protected:
76    virtual ~NuPlayer();
77
78    virtual void onMessageReceived(const sp<AMessage> &msg);
79
80public:
81    struct NuPlayerStreamListener;
82    struct Source;
83
84private:
85    struct Decoder;
86    struct DecoderPassThrough;
87    struct CCDecoder;
88    struct GenericSource;
89    struct HTTPLiveSource;
90    struct Renderer;
91    struct RTSPSource;
92    struct StreamingSource;
93    struct Action;
94    struct SeekAction;
95    struct SetSurfaceAction;
96    struct ShutdownDecoderAction;
97    struct PostMessageAction;
98    struct SimpleAction;
99
100    enum {
101        kWhatSetDataSource              = '=DaS',
102        kWhatPrepare                    = 'prep',
103        kWhatSetVideoNativeWindow       = '=NaW',
104        kWhatSetAudioSink               = '=AuS',
105        kWhatMoreDataQueued             = 'more',
106        kWhatStart                      = 'strt',
107        kWhatScanSources                = 'scan',
108        kWhatVideoNotify                = 'vidN',
109        kWhatAudioNotify                = 'audN',
110        kWhatClosedCaptionNotify        = 'capN',
111        kWhatRendererNotify             = 'renN',
112        kWhatReset                      = 'rset',
113        kWhatSeek                       = 'seek',
114        kWhatPause                      = 'paus',
115        kWhatResume                     = 'rsme',
116        kWhatPollDuration               = 'polD',
117        kWhatSourceNotify               = 'srcN',
118        kWhatGetTrackInfo               = 'gTrI',
119        kWhatGetSelectedTrack           = 'gSel',
120        kWhatSelectTrack                = 'selT',
121    };
122
123    wp<NuPlayerDriver> mDriver;
124    bool mUIDValid;
125    uid_t mUID;
126    sp<Source> mSource;
127    uint32_t mSourceFlags;
128    sp<NativeWindowWrapper> mNativeWindow;
129    int64_t mCurrentPositionUs;
130    sp<MediaPlayerBase::AudioSink> mAudioSink;
131    sp<Decoder> mVideoDecoder;
132    bool mVideoIsAVC;
133    bool mOffloadAudio;
134    audio_offload_info_t mCurrentOffloadInfo;
135    sp<Decoder> mAudioDecoder;
136    sp<CCDecoder> mCCDecoder;
137    sp<Renderer> mRenderer;
138    sp<ALooper> mRendererLooper;
139    int32_t mAudioDecoderGeneration;
140    int32_t mVideoDecoderGeneration;
141    int32_t mRendererGeneration;
142
143    List<sp<Action> > mDeferredActions;
144
145    bool mAudioEOS;
146    bool mVideoEOS;
147
148    bool mScanSourcesPending;
149    int32_t mScanSourcesGeneration;
150
151    int32_t mPollDurationGeneration;
152    int32_t mTimedTextGeneration;
153
154    enum FlushStatus {
155        NONE,
156        FLUSHING_DECODER,
157        FLUSHING_DECODER_SHUTDOWN,
158        SHUTTING_DOWN_DECODER,
159        FLUSHED,
160        SHUT_DOWN,
161    };
162
163    // Once the current flush is complete this indicates whether the
164    // notion of time has changed.
165    bool mTimeDiscontinuityPending;
166
167    // Status of flush responses from the decoder and renderer.
168    bool mFlushComplete[2][2];
169
170    // Used by feedDecoderInputData to aggregate small buffers into
171    // one large buffer.
172    sp<ABuffer> mPendingAudioAccessUnit;
173    status_t    mPendingAudioErr;
174    sp<ABuffer> mAggregateBuffer;
175
176    FlushStatus mFlushingAudio;
177    FlushStatus mFlushingVideo;
178
179    int64_t mSkipRenderingAudioUntilMediaTimeUs;
180    int64_t mSkipRenderingVideoUntilMediaTimeUs;
181
182    int64_t mVideoLateByUs;
183    int64_t mNumFramesTotal, mNumFramesDropped;
184
185    int32_t mVideoScalingMode;
186
187    bool mStarted;
188
189    inline const sp<Decoder> &getDecoder(bool audio) {
190        return audio ? mAudioDecoder : mVideoDecoder;
191    }
192
193    inline void clearFlushComplete() {
194        mFlushComplete[0][0] = false;
195        mFlushComplete[0][1] = false;
196        mFlushComplete[1][0] = false;
197        mFlushComplete[1][1] = false;
198    }
199
200    void openAudioSink(const sp<AMessage> &format, bool offloadOnly);
201    void closeAudioSink();
202
203    status_t instantiateDecoder(bool audio, sp<Decoder> *decoder);
204
205    void updateVideoSize(
206            const sp<AMessage> &inputFormat,
207            const sp<AMessage> &outputFormat = NULL);
208
209    status_t feedDecoderInputData(bool audio, const sp<AMessage> &msg);
210    void renderBuffer(bool audio, const sp<AMessage> &msg);
211
212    void notifyListener(int msg, int ext1, int ext2, const Parcel *in = NULL);
213
214    void handleFlushComplete(bool audio, bool isDecoder);
215    void finishFlushIfPossible();
216
217    bool audioDecoderStillNeeded();
218
219    void flushDecoder(
220            bool audio, bool needShutdown, const sp<AMessage> &newFormat = NULL);
221    void updateDecoderFormatWithoutFlush(bool audio, const sp<AMessage> &format);
222
223    void postScanSources();
224
225    void schedulePollDuration();
226    void cancelPollDuration();
227
228    void processDeferredActions();
229
230    void performSeek(int64_t seekTimeUs, bool needNotify);
231    void performDecoderFlush();
232    void performDecoderShutdown(bool audio, bool video);
233    void performReset();
234    void performScanSources();
235    void performSetSurface(const sp<NativeWindowWrapper> &wrapper);
236
237    void onSourceNotify(const sp<AMessage> &msg);
238    void onClosedCaptionNotify(const sp<AMessage> &msg);
239
240    void queueDecoderShutdown(
241            bool audio, bool video, const sp<AMessage> &reply);
242
243    void sendSubtitleData(const sp<ABuffer> &buffer, int32_t baseIndex);
244    void sendTimedTextData(const sp<ABuffer> &buffer);
245
246    void writeTrackInfo(Parcel* reply, const sp<AMessage> format) const;
247
248    DISALLOW_EVIL_CONSTRUCTORS(NuPlayer);
249};
250
251}  // namespace android
252
253#endif  // NU_PLAYER_H_
254