blob: 996806ea4ab552cf17611c240cc3885faab128fd [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
Andreas Huberf9334412010-12-15 15:17:42 -080058protected:
59 virtual ~NuPlayer();
60
61 virtual void onMessageReceived(const sp<AMessage> &msg);
62
Andreas Huber84066782011-08-16 09:34:26 -070063public:
64 struct NuPlayerStreamListener;
65 struct Source;
66
Andreas Huberf9334412010-12-15 15:17:42 -080067private:
Andreas Huberf9334412010-12-15 15:17:42 -080068 struct Decoder;
Andreas Huberafed0e12011-09-20 15:39:58 -070069 struct GenericSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080070 struct HTTPLiveSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080071 struct Renderer;
Andreas Huberafed0e12011-09-20 15:39:58 -070072 struct RTSPSource;
Andreas Huber5bc087c2010-12-23 10:27:40 -080073 struct StreamingSource;
Andreas Huberf9334412010-12-15 15:17:42 -080074
75 enum {
Andreas Huber078cfcf2011-09-15 12:25:04 -070076 kWhatSetDataSource = '=DaS',
77 kWhatSetVideoNativeWindow = '=NaW',
78 kWhatSetAudioSink = '=AuS',
79 kWhatMoreDataQueued = 'more',
80 kWhatStart = 'strt',
81 kWhatScanSources = 'scan',
82 kWhatVideoNotify = 'vidN',
83 kWhatAudioNotify = 'audN',
84 kWhatRendererNotify = 'renN',
85 kWhatReset = 'rset',
86 kWhatSeek = 'seek',
87 kWhatPause = 'paus',
88 kWhatResume = 'rsme',
Andreas Huberf9334412010-12-15 15:17:42 -080089 };
90
Andreas Huber43c3e6c2011-01-05 12:17:08 -080091 wp<NuPlayerDriver> mDriver;
Andreas Huber9b80c2b2011-06-30 15:47:02 -070092 bool mUIDValid;
93 uid_t mUID;
Andreas Huber5bc087c2010-12-23 10:27:40 -080094 sp<Source> mSource;
Glenn Kasten11731182011-02-08 17:26:17 -080095 sp<NativeWindowWrapper> mNativeWindow;
Andreas Huberf9334412010-12-15 15:17:42 -080096 sp<MediaPlayerBase::AudioSink> mAudioSink;
Andreas Huberf9334412010-12-15 15:17:42 -080097 sp<Decoder> mVideoDecoder;
Andreas Huber3fe62152011-09-16 15:09:22 -070098 bool mVideoIsAVC;
Andreas Huberf9334412010-12-15 15:17:42 -080099 sp<Decoder> mAudioDecoder;
100 sp<Renderer> mRenderer;
101
Andreas Huberf9334412010-12-15 15:17:42 -0800102 bool mAudioEOS;
103 bool mVideoEOS;
104
Andreas Huber5bc087c2010-12-23 10:27:40 -0800105 bool mScanSourcesPending;
Andreas Huber1aef2112011-01-04 14:01:29 -0800106 int32_t mScanSourcesGeneration;
Andreas Huber5bc087c2010-12-23 10:27:40 -0800107
Andreas Huberf9334412010-12-15 15:17:42 -0800108 enum FlushStatus {
109 NONE,
110 AWAITING_DISCONTINUITY,
111 FLUSHING_DECODER,
Andreas Huber1aef2112011-01-04 14:01:29 -0800112 FLUSHING_DECODER_SHUTDOWN,
Andreas Huber3831a062010-12-21 10:22:33 -0800113 SHUTTING_DOWN_DECODER,
114 FLUSHED,
115 SHUT_DOWN,
Andreas Huberf9334412010-12-15 15:17:42 -0800116 };
117
Andreas Huber6e3d3112011-11-28 12:36:11 -0800118 // Once the current flush is complete this indicates whether the
119 // notion of time has changed.
120 bool mTimeDiscontinuityPending;
121
Andreas Huberf9334412010-12-15 15:17:42 -0800122 FlushStatus mFlushingAudio;
123 FlushStatus mFlushingVideo;
Andreas Huber1aef2112011-01-04 14:01:29 -0800124 bool mResetInProgress;
125 bool mResetPostponed;
Andreas Huberf9334412010-12-15 15:17:42 -0800126
Andreas Huber32f3cef2011-03-02 15:34:46 -0800127 int64_t mSkipRenderingAudioUntilMediaTimeUs;
128 int64_t mSkipRenderingVideoUntilMediaTimeUs;
129
Andreas Huber3fe62152011-09-16 15:09:22 -0700130 int64_t mVideoLateByUs;
131 int64_t mNumFramesTotal, mNumFramesDropped;
132
Andreas Huber5bc087c2010-12-23 10:27:40 -0800133 status_t instantiateDecoder(bool audio, sp<Decoder> *decoder);
Andreas Huberf9334412010-12-15 15:17:42 -0800134
135 status_t feedDecoderInputData(bool audio, const sp<AMessage> &msg);
136 void renderBuffer(bool audio, const sp<AMessage> &msg);
137
Andreas Huberf9334412010-12-15 15:17:42 -0800138 void notifyListener(int msg, int ext1, int ext2);
139
Andreas Huber3831a062010-12-21 10:22:33 -0800140 void finishFlushIfPossible();
141
Andreas Huber1aef2112011-01-04 14:01:29 -0800142 void flushDecoder(bool audio, bool needShutdown);
143
144 static bool IsFlushingState(FlushStatus state, bool *needShutdown = NULL);
145
146 void finishReset();
147 void postScanSources();
Andreas Huber53df1a42010-12-22 10:03:04 -0800148
Andreas Huberf9334412010-12-15 15:17:42 -0800149 DISALLOW_EVIL_CONSTRUCTORS(NuPlayer);
150};
151
152} // namespace android
153
154#endif // NU_PLAYER_H_