blob: 31efb2e5d9fdcdf2ee9890f373e050ccd4a7bff9 [file] [log] [blame]
Andreas Huberf9334412010-12-15 15:17:42 -08001/*
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>
Glenn Kasten11731182011-02-08 17:26:17 -080023#include <media/stagefright/NativeWindowWrapper.h>
Andreas Huberf9334412010-12-15 15:17:42 -080024
Andreas Huberf9334412010-12-15 15:17:42 -080025namespace android {
26
27struct ACodec;
28struct MetaData;
Andreas Huber43c3e6c2011-01-05 12:17:08 -080029struct NuPlayerDriver;
Andreas Huberf9334412010-12-15 15:17:42 -080030
31struct NuPlayer : public AHandler {
32 NuPlayer();
33
Andreas Huber9b80c2b2011-06-30 15:47:02 -070034 void setUID(uid_t uid);
35
Andreas Huber43c3e6c2011-01-05 12:17:08 -080036 void setDriver(const wp<NuPlayerDriver> &driver);
Andreas Huberf9334412010-12-15 15:17:42 -080037
38 void setDataSource(const sp<IStreamSource> &source);
Andreas Huber5bc087c2010-12-23 10:27:40 -080039
40 void setDataSource(
41 const char *url, const KeyedVector<String8, String8> *headers);
42
Andreas Huberafed0e12011-09-20 15:39:58 -070043 void setDataSource(int fd, int64_t offset, int64_t length);
44
Glenn Kasten11731182011-02-08 17:26:17 -080045 void setVideoSurfaceTexture(const sp<ISurfaceTexture> &surfaceTexture);
Andreas Huberf9334412010-12-15 15:17:42 -080046 void setAudioSink(const sp<MediaPlayerBase::AudioSink> &sink);
47 void start();
48
Andreas Huber43c3e6c2011-01-05 12:17:08 -080049 void pause();
50 void resume();
51
52 // Will notify the driver through "notifyResetComplete" once finished.
Andreas Huber1aef2112011-01-04 14:01:29 -080053 void resetAsync();
54
Andreas Huber43c3e6c2011-01-05 12:17:08 -080055 // Will notify the driver through "notifySeekComplete" once finished.
56 void seekToAsync(int64_t seekTimeUs);
57
James Dong0d268a32012-08-31 12:18:27 -070058 status_t setVideoScalingMode(int32_t mode);
59
Andreas Huberf9334412010-12-15 15:17:42 -080060protected:
61 virtual ~NuPlayer();
62
63 virtual void onMessageReceived(const sp<AMessage> &msg);
64
Andreas Huber84066782011-08-16 09:34:26 -070065public:
66 struct NuPlayerStreamListener;
67 struct Source;
68
Andreas Huberf9334412010-12-15 15:17:42 -080069private:
Andreas Huberf9334412010-12-15 15:17:42 -080070 struct Decoder;
Andreas Huberafed0e12011-09-20 15:39:58 -070071 struct GenericSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080072 struct HTTPLiveSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080073 struct Renderer;
Andreas Huberafed0e12011-09-20 15:39:58 -070074 struct RTSPSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080075 struct StreamingSource;
Andreas Huberf9334412010-12-15 15:17:42 -080076
77 enum {
Andreas Huber078cfcf2011-09-15 12:25:04 -070078 kWhatSetDataSource = '=DaS',
79 kWhatSetVideoNativeWindow = '=NaW',
80 kWhatSetAudioSink = '=AuS',
81 kWhatMoreDataQueued = 'more',
82 kWhatStart = 'strt',
83 kWhatScanSources = 'scan',
84 kWhatVideoNotify = 'vidN',
85 kWhatAudioNotify = 'audN',
86 kWhatRendererNotify = 'renN',
87 kWhatReset = 'rset',
88 kWhatSeek = 'seek',
89 kWhatPause = 'paus',
90 kWhatResume = 'rsme',
Andreas Huberb7c8e912012-11-27 15:02:53 -080091 kWhatPollDuration = 'polD',
Andreas Huberf9334412010-12-15 15:17:42 -080092 };
93
Andreas Huber43c3e6c2011-01-05 12:17:08 -080094 wp<NuPlayerDriver> mDriver;
Andreas Huber9b80c2b2011-06-30 15:47:02 -070095 bool mUIDValid;
96 uid_t mUID;
Andreas Huber5bc087c2010-12-23 10:27:40 -080097 sp<Source> mSource;
Glenn Kasten11731182011-02-08 17:26:17 -080098 sp<NativeWindowWrapper> mNativeWindow;
Andreas Huberf9334412010-12-15 15:17:42 -080099 sp<MediaPlayerBase::AudioSink> mAudioSink;
Andreas Huberf9334412010-12-15 15:17:42 -0800100 sp<Decoder> mVideoDecoder;
Andreas Huber3fe62152011-09-16 15:09:22 -0700101 bool mVideoIsAVC;
Andreas Huberf9334412010-12-15 15:17:42 -0800102 sp<Decoder> mAudioDecoder;
103 sp<Renderer> mRenderer;
104
Andreas Huberf9334412010-12-15 15:17:42 -0800105 bool mAudioEOS;
106 bool mVideoEOS;
107
Andreas Huber5bc087c2010-12-23 10:27:40 -0800108 bool mScanSourcesPending;
Andreas Huber1aef2112011-01-04 14:01:29 -0800109 int32_t mScanSourcesGeneration;
Andreas Huber5bc087c2010-12-23 10:27:40 -0800110
Andreas Huberb7c8e912012-11-27 15:02:53 -0800111 int32_t mPollDurationGeneration;
112
Andreas Huberf9334412010-12-15 15:17:42 -0800113 enum FlushStatus {
114 NONE,
115 AWAITING_DISCONTINUITY,
116 FLUSHING_DECODER,
Andreas Huber1aef2112011-01-04 14:01:29 -0800117 FLUSHING_DECODER_SHUTDOWN,
Andreas Huber3831a062010-12-21 10:22:33 -0800118 SHUTTING_DOWN_DECODER,
119 FLUSHED,
120 SHUT_DOWN,
Andreas Huberf9334412010-12-15 15:17:42 -0800121 };
122
Andreas Huber6e3d3112011-11-28 12:36:11 -0800123 // Once the current flush is complete this indicates whether the
124 // notion of time has changed.
125 bool mTimeDiscontinuityPending;
126
Andreas Huberf9334412010-12-15 15:17:42 -0800127 FlushStatus mFlushingAudio;
128 FlushStatus mFlushingVideo;
Andreas Huber1aef2112011-01-04 14:01:29 -0800129 bool mResetInProgress;
130 bool mResetPostponed;
Andreas Huberf9334412010-12-15 15:17:42 -0800131
Andreas Huber32f3cef2011-03-02 15:34:46 -0800132 int64_t mSkipRenderingAudioUntilMediaTimeUs;
133 int64_t mSkipRenderingVideoUntilMediaTimeUs;
134
Andreas Huber3fe62152011-09-16 15:09:22 -0700135 int64_t mVideoLateByUs;
136 int64_t mNumFramesTotal, mNumFramesDropped;
137
James Dong0d268a32012-08-31 12:18:27 -0700138 int32_t mVideoScalingMode;
139
Andreas Huber5bc087c2010-12-23 10:27:40 -0800140 status_t instantiateDecoder(bool audio, sp<Decoder> *decoder);
Andreas Huberf9334412010-12-15 15:17:42 -0800141
142 status_t feedDecoderInputData(bool audio, const sp<AMessage> &msg);
143 void renderBuffer(bool audio, const sp<AMessage> &msg);
144
Andreas Huberf9334412010-12-15 15:17:42 -0800145 void notifyListener(int msg, int ext1, int ext2);
146
Andreas Huber3831a062010-12-21 10:22:33 -0800147 void finishFlushIfPossible();
148
Andreas Huber1aef2112011-01-04 14:01:29 -0800149 void flushDecoder(bool audio, bool needShutdown);
150
151 static bool IsFlushingState(FlushStatus state, bool *needShutdown = NULL);
152
153 void finishReset();
154 void postScanSources();
Andreas Huber53df1a42010-12-22 10:03:04 -0800155
Andreas Huberb7c8e912012-11-27 15:02:53 -0800156 void schedulePollDuration();
157 void cancelPollDuration();
158
Andreas Huberf9334412010-12-15 15:17:42 -0800159 DISALLOW_EVIL_CONSTRUCTORS(NuPlayer);
160};
161
162} // namespace android
163
164#endif // NU_PLAYER_H_