NuPlayer.h revision 71c75e002fce579444a1a6126effe883b963091b
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/AudioResamplerPublic.h>
22#include <media/MediaPlayerInterface.h>
23#include <media/stagefright/foundation/AHandler.h>
24
25namespace android {
26
27struct ABuffer;
28struct AMessage;
29struct AudioPlaybackRate;
30struct AVSyncSettings;
31class IDataSource;
32class MetaData;
33struct NuPlayerDriver;
34
35struct NuPlayer : public AHandler {
36    NuPlayer(pid_t pid);
37
38    void setUID(uid_t uid);
39
40    void setDriver(const wp<NuPlayerDriver> &driver);
41
42    void setDataSourceAsync(const sp<IStreamSource> &source);
43
44    void setDataSourceAsync(
45            const sp<IMediaHTTPService> &httpService,
46            const char *url,
47            const KeyedVector<String8, String8> *headers);
48
49    void setDataSourceAsync(int fd, int64_t offset, int64_t length);
50
51    void setDataSourceAsync(const sp<DataSource> &source);
52
53    void prepareAsync();
54
55    void setVideoSurfaceTextureAsync(
56            const sp<IGraphicBufferProducer> &bufferProducer);
57
58    void setAudioSink(const sp<MediaPlayerBase::AudioSink> &sink);
59    status_t setPlaybackSettings(const AudioPlaybackRate &rate);
60    status_t getPlaybackSettings(AudioPlaybackRate *rate /* nonnull */);
61    status_t setSyncSettings(const AVSyncSettings &sync, float videoFpsHint);
62    status_t getSyncSettings(AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
63
64    void start();
65
66    void pause();
67
68    // Will notify the driver through "notifyResetComplete" once finished.
69    void resetAsync();
70
71    // Will notify the driver through "notifySeekComplete" once finished
72    // and needNotify is true.
73    void seekToAsync(int64_t seekTimeUs, bool needNotify = false);
74
75    status_t setVideoScalingMode(int32_t mode);
76    status_t getTrackInfo(Parcel* reply) const;
77    status_t getSelectedTrack(int32_t type, Parcel* reply) const;
78    status_t selectTrack(size_t trackIndex, bool select, int64_t timeUs);
79    status_t getCurrentPosition(int64_t *mediaUs);
80    void getStats(Vector<sp<AMessage> > *mTrackStats);
81
82    sp<MetaData> getFileMeta();
83    float getFrameRate();
84
85protected:
86    virtual ~NuPlayer();
87
88    virtual void onMessageReceived(const sp<AMessage> &msg);
89
90public:
91    struct NuPlayerStreamListener;
92    struct Source;
93
94private:
95    struct Decoder;
96    struct DecoderBase;
97    struct DecoderPassThrough;
98    struct CCDecoder;
99    struct GenericSource;
100    struct HTTPLiveSource;
101    struct Renderer;
102    struct RTSPSource;
103    struct StreamingSource;
104    struct Action;
105    struct SeekAction;
106    struct SetSurfaceAction;
107    struct ResumeDecoderAction;
108    struct FlushDecoderAction;
109    struct PostMessageAction;
110    struct SimpleAction;
111
112    enum {
113        kWhatSetDataSource              = '=DaS',
114        kWhatPrepare                    = 'prep',
115        kWhatSetVideoSurface            = '=VSu',
116        kWhatSetAudioSink               = '=AuS',
117        kWhatMoreDataQueued             = 'more',
118        kWhatConfigPlayback             = 'cfPB',
119        kWhatConfigSync                 = 'cfSy',
120        kWhatGetPlaybackSettings        = 'gPbS',
121        kWhatGetSyncSettings            = 'gSyS',
122        kWhatStart                      = 'strt',
123        kWhatScanSources                = 'scan',
124        kWhatVideoNotify                = 'vidN',
125        kWhatAudioNotify                = 'audN',
126        kWhatClosedCaptionNotify        = 'capN',
127        kWhatRendererNotify             = 'renN',
128        kWhatReset                      = 'rset',
129        kWhatSeek                       = 'seek',
130        kWhatPause                      = 'paus',
131        kWhatResume                     = 'rsme',
132        kWhatPollDuration               = 'polD',
133        kWhatSourceNotify               = 'srcN',
134        kWhatGetTrackInfo               = 'gTrI',
135        kWhatGetSelectedTrack           = 'gSel',
136        kWhatSelectTrack                = 'selT',
137    };
138
139    wp<NuPlayerDriver> mDriver;
140    bool mUIDValid;
141    uid_t mUID;
142    pid_t mPID;
143    sp<Source> mSource;
144    uint32_t mSourceFlags;
145    sp<Surface> mSurface;
146    sp<MediaPlayerBase::AudioSink> mAudioSink;
147    sp<DecoderBase> mVideoDecoder;
148    bool mOffloadAudio;
149    sp<DecoderBase> mAudioDecoder;
150    sp<CCDecoder> mCCDecoder;
151    sp<Renderer> mRenderer;
152    sp<ALooper> mRendererLooper;
153    int32_t mAudioDecoderGeneration;
154    int32_t mVideoDecoderGeneration;
155    int32_t mRendererGeneration;
156
157    int64_t mPreviousSeekTimeUs;
158
159    List<sp<Action> > mDeferredActions;
160
161    bool mAudioEOS;
162    bool mVideoEOS;
163
164    bool mScanSourcesPending;
165    int32_t mScanSourcesGeneration;
166
167    int32_t mPollDurationGeneration;
168    int32_t mTimedTextGeneration;
169
170    enum FlushStatus {
171        NONE,
172        FLUSHING_DECODER,
173        FLUSHING_DECODER_SHUTDOWN,
174        SHUTTING_DOWN_DECODER,
175        FLUSHED,
176        SHUT_DOWN,
177    };
178
179    enum FlushCommand {
180        FLUSH_CMD_NONE,
181        FLUSH_CMD_FLUSH,
182        FLUSH_CMD_SHUTDOWN,
183    };
184
185    enum PendingBufferingFlag {
186        PENDING_BUFFERING_FLAG_NONE = MEDIA_INFO_UNKNOWN,
187        PENDING_BUFFERING_FLAG_START = MEDIA_INFO_BUFFERING_START,
188        PENDING_BUFFERING_FLAG_END = MEDIA_INFO_BUFFERING_END,
189    };
190
191    // Status of flush responses from the decoder and renderer.
192    bool mFlushComplete[2][2];
193
194    FlushStatus mFlushingAudio;
195    FlushStatus mFlushingVideo;
196
197    // Status of flush responses from the decoder and renderer.
198    bool mResumePending;
199
200    int32_t mVideoScalingMode;
201
202    AudioPlaybackRate mPlaybackSettings;
203    AVSyncSettings mSyncSettings;
204    float mVideoFpsHint;
205    bool mStarted;
206    bool mResetting;
207    bool mSourceStarted;
208
209    // Actual pause state, either as requested by client or due to buffering.
210    bool mPaused;
211
212    // Pause state as requested by client. Note that if mPausedByClient is
213    // true, mPaused is always true; if mPausedByClient is false, mPaused could
214    // still become true, when we pause internally due to buffering.
215    bool mPausedByClient;
216
217    // Pending buffering flag which is not sent to client due to being paused.
218    PendingBufferingFlag mPendingBufferingFlag;
219
220    // Pause state as requested by source (internally) due to buffering
221    bool mPausedForBuffering;
222
223    inline const sp<DecoderBase> &getDecoder(bool audio) {
224        return audio ? mAudioDecoder : mVideoDecoder;
225    }
226
227    inline void clearFlushComplete() {
228        mFlushComplete[0][0] = false;
229        mFlushComplete[0][1] = false;
230        mFlushComplete[1][0] = false;
231        mFlushComplete[1][1] = false;
232    }
233
234    void tryOpenAudioSinkForOffload(const sp<AMessage> &format, bool hasVideo);
235    void closeAudioSink();
236    void determineAudioModeChange();
237
238    status_t instantiateDecoder(bool audio, sp<DecoderBase> *decoder);
239
240    status_t onInstantiateSecureDecoders();
241
242    void updateVideoSize(
243            const sp<AMessage> &inputFormat,
244            const sp<AMessage> &outputFormat = NULL);
245
246    void notifyListener(int msg, int ext1, int ext2, const Parcel *in = NULL);
247
248    void handleFlushComplete(bool audio, bool isDecoder);
249    void finishFlushIfPossible();
250
251    void onStart(int64_t startPositionUs = -1);
252    void onResume();
253    void onPause();
254
255    bool audioDecoderStillNeeded();
256
257    void flushDecoder(bool audio, bool needShutdown);
258
259    void finishResume();
260    void notifyDriverSeekComplete();
261
262    void postScanSources();
263
264    void schedulePollDuration();
265    void cancelPollDuration();
266
267    void processDeferredActions();
268
269    void performSeek(int64_t seekTimeUs);
270    void performDecoderFlush(FlushCommand audio, FlushCommand video);
271    void performReset();
272    void performScanSources();
273    void performSetSurface(const sp<Surface> &wrapper);
274    void performResumeDecoders(bool needNotify);
275
276    void onSourceNotify(const sp<AMessage> &msg);
277    void onClosedCaptionNotify(const sp<AMessage> &msg);
278
279    void queueDecoderShutdown(
280            bool audio, bool video, const sp<AMessage> &reply);
281
282    void sendSubtitleData(const sp<ABuffer> &buffer, int32_t baseIndex);
283    void sendTimedMetaData(const sp<ABuffer> &buffer);
284    void sendTimedTextData(const sp<ABuffer> &buffer);
285
286    void writeTrackInfo(Parcel* reply, const sp<AMessage> format) const;
287
288    DISALLOW_EVIL_CONSTRUCTORS(NuPlayer);
289};
290
291}  // namespace android
292
293#endif  // NU_PLAYER_H_
294