blob: 389ec018021606262e31adec00cf9c0ca6d14804 [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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 ANDROID_MEDIAPLAYER_H
18#define ANDROID_MEDIAPLAYER_H
19
John Grossmanc795b642012-02-22 15:38:35 -080020#include <arpa/inet.h>
21
Mathias Agopian75624082009-05-19 19:08:10 -070022#include <binder/IMemory.h>
Lajos Molnar3a474aa2015-04-24 17:10:07 -070023
24#include <media/AudioResamplerPublic.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080025#include <media/IMediaPlayerClient.h>
26#include <media/IMediaPlayer.h>
James Dongdd172fc2010-01-15 18:13:58 -080027#include <media/IMediaDeathNotifier.h>
Dave Burked681bbb2011-08-30 14:39:17 +010028#include <media/IStreamSource.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080029
Andreas Huber2db84552010-01-28 11:19:57 -080030#include <utils/KeyedVector.h>
31#include <utils/String8.h>
32
Colin Crossae4aba12016-09-16 13:02:22 -070033struct ANativeWindow;
Jamie Gennis61c7ef52011-07-13 12:59:34 -070034
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080035namespace android {
36
Lajos Molnar3a474aa2015-04-24 17:10:07 -070037struct AVSyncSettings;
Andy McFadden484566c2012-12-18 09:46:54 -080038class IGraphicBufferProducer;
Lajos Molnar3a474aa2015-04-24 17:10:07 -070039class Surface;
Mathias Agopian3cf61352010-02-09 17:46:37 -080040
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080041enum media_event_type {
42 MEDIA_NOP = 0, // interface test message
43 MEDIA_PREPARED = 1,
44 MEDIA_PLAYBACK_COMPLETE = 2,
45 MEDIA_BUFFERING_UPDATE = 3,
46 MEDIA_SEEK_COMPLETE = 4,
47 MEDIA_SET_VIDEO_SIZE = 5,
Lajos Molnarcbaffcf2013-08-14 18:30:38 -070048 MEDIA_STARTED = 6,
49 MEDIA_PAUSED = 7,
50 MEDIA_STOPPED = 8,
Lajos Molnar6218fdc2013-09-25 08:09:41 -070051 MEDIA_SKIPPED = 9,
Gloria Wangb483c472011-04-11 17:23:27 -070052 MEDIA_TIMED_TEXT = 99,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080053 MEDIA_ERROR = 100,
The Android Open Source Project65e731f2009-03-11 12:11:56 -070054 MEDIA_INFO = 200,
Chong Zhangdcb89b32013-08-06 09:44:47 -070055 MEDIA_SUBTITLE_DATA = 201,
Robert Shih08528432015-04-08 09:06:54 -070056 MEDIA_META_DATA = 202,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080057};
58
The Android Open Source Project65e731f2009-03-11 12:11:56 -070059// Generic error codes for the media player framework. Errors are fatal, the
60// playback must abort.
61//
62// Errors are communicated back to the client using the
63// MediaPlayerListener::notify method defined below.
64// In this situation, 'notify' is invoked with the following:
65// 'msg' is set to MEDIA_ERROR.
66// 'ext1' should be a value from the enum media_error_type.
67// 'ext2' contains an implementation dependant error code to provide
68// more details. Should default to 0 when not used.
69//
70// The codes are distributed as follow:
71// 0xx: Reserved
72// 1xx: Android Player errors. Something went wrong inside the MediaPlayer.
73// 2xx: Media errors (e.g Codec not supported). There is a problem with the
74// media itself.
75// 3xx: Runtime errors. Some extraordinary condition arose making the playback
76// impossible.
77//
78enum media_error_type {
79 // 0xx
80 MEDIA_ERROR_UNKNOWN = 1,
81 // 1xx
82 MEDIA_ERROR_SERVER_DIED = 100,
83 // 2xx
84 MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200,
85 // 3xx
86};
87
88
89// Info and warning codes for the media player framework. These are non fatal,
90// the playback is going on but there might be some user visible issues.
91//
92// Info and warning messages are communicated back to the client using the
93// MediaPlayerListener::notify method defined below. In this situation,
94// 'notify' is invoked with the following:
95// 'msg' is set to MEDIA_INFO.
96// 'ext1' should be a value from the enum media_info_type.
Ravi K Yenduri387eac42009-06-21 17:19:58 -050097// 'ext2' contains an implementation dependant info code to provide
The Android Open Source Project65e731f2009-03-11 12:11:56 -070098// more details. Should default to 0 when not used.
99//
100// The codes are distributed as follow:
101// 0xx: Reserved
102// 7xx: Android Player info/warning (e.g player lagging behind.)
103// 8xx: Media info/warning (e.g media badly interleaved.)
Nicolas Catania66095182009-06-11 16:33:49 -0700104//
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700105enum media_info_type {
106 // 0xx
107 MEDIA_INFO_UNKNOWN = 1,
Marco Nelissen6b74d672012-02-28 16:07:44 -0800108 // The player was started because it was used as the next player for another
109 // player, which just completed playback
110 MEDIA_INFO_STARTED_AS_NEXT = 2,
James Dongc374dae2012-07-19 19:18:06 -0700111 // The player just pushed the very first video frame for rendering
112 MEDIA_INFO_RENDERING_START = 3,
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700113 // 7xx
114 // The video is too complex for the decoder: it can't decode frames fast
115 // enough. Possibly only the audio plays fine at this stage.
116 MEDIA_INFO_VIDEO_TRACK_LAGGING = 700,
Andreas Huber0a5baa92010-06-10 11:17:50 -0700117 // MediaPlayer is temporarily pausing playback internally in order to
118 // buffer more data.
119 MEDIA_INFO_BUFFERING_START = 701,
120 // MediaPlayer is resuming playback after filling buffers.
121 MEDIA_INFO_BUFFERING_END = 702,
James Dong5b1b8a92011-05-25 19:37:03 -0700122 // Bandwidth in recent past
123 MEDIA_INFO_NETWORK_BANDWIDTH = 703,
124
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700125 // 8xx
126 // Bad interleaving means that a media has been improperly interleaved or not
127 // interleaved at all, e.g has all the video samples first then all the audio
128 // ones. Video is playing but a lot of disk seek may be happening.
129 MEDIA_INFO_BAD_INTERLEAVING = 800,
130 // The media is not seekable (e.g live stream).
131 MEDIA_INFO_NOT_SEEKABLE = 801,
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700132 // New media metadata is available.
133 MEDIA_INFO_METADATA_UPDATE = 802,
Insun Kangf9d660a2012-02-16 20:28:27 +0900134
135 //9xx
136 MEDIA_INFO_TIMED_TEXT_ERROR = 900,
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700137};
138
139
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800140
141enum media_player_states {
142 MEDIA_PLAYER_STATE_ERROR = 0,
143 MEDIA_PLAYER_IDLE = 1 << 0,
144 MEDIA_PLAYER_INITIALIZED = 1 << 1,
145 MEDIA_PLAYER_PREPARING = 1 << 2,
146 MEDIA_PLAYER_PREPARED = 1 << 3,
147 MEDIA_PLAYER_STARTED = 1 << 4,
148 MEDIA_PLAYER_PAUSED = 1 << 5,
149 MEDIA_PLAYER_STOPPED = 1 << 6,
150 MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7
151};
152
Glenn Kastencd25fed2011-07-25 09:26:22 -0700153// Keep KEY_PARAMETER_* in sync with MediaPlayer.java.
154// The same enum space is used for both set and get, in case there are future keys that
155// can be both set and get. But as of now, all parameters are either set only or get only.
156enum media_parameter_keys {
James Dong5b1b8a92011-05-25 19:37:03 -0700157 // Streaming/buffering parameters
Glenn Kastencd25fed2011-07-25 09:26:22 -0700158 KEY_PARAMETER_CACHE_STAT_COLLECT_FREQ_MS = 1100, // set only
159
160 // Return a Parcel containing a single int, which is the channel count of the
161 // audio track, or zero for error (e.g. no audio track) or unknown.
162 KEY_PARAMETER_AUDIO_CHANNEL_COUNT = 1200, // get only
163
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -0800164 // Playback rate expressed in permille (1000 is normal speed), saved as int32_t, with negative
165 // values used for rewinding or reverse playback.
166 KEY_PARAMETER_PLAYBACK_RATE_PERMILLE = 1300, // set only
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700167
168 // Set a Parcel containing the value of a parcelled Java AudioAttribute instance
169 KEY_PARAMETER_AUDIO_ATTRIBUTES = 1400 // set only
Gloria Wang7a1e3e82011-05-03 15:59:03 -0700170};
Glenn Kastencd25fed2011-07-25 09:26:22 -0700171
Insun Kangf9d660a2012-02-16 20:28:27 +0900172// Keep INVOKE_ID_* in sync with MediaPlayer.java.
173enum media_player_invoke_ids {
174 INVOKE_ID_GET_TRACK_INFO = 1,
175 INVOKE_ID_ADD_EXTERNAL_SOURCE = 2,
176 INVOKE_ID_ADD_EXTERNAL_SOURCE_FD = 3,
177 INVOKE_ID_SELECT_TRACK = 4,
178 INVOKE_ID_UNSELECT_TRACK = 5,
Robert Shih7c4f0d72014-07-09 18:53:31 -0700179 INVOKE_ID_SET_VIDEO_SCALING_MODE = 6,
180 INVOKE_ID_GET_SELECTED_TRACK = 7
Insun Kangf9d660a2012-02-16 20:28:27 +0900181};
182
183// Keep MEDIA_TRACK_TYPE_* in sync with MediaPlayer.java.
184enum media_track_type {
185 MEDIA_TRACK_TYPE_UNKNOWN = 0,
186 MEDIA_TRACK_TYPE_VIDEO = 1,
187 MEDIA_TRACK_TYPE_AUDIO = 2,
188 MEDIA_TRACK_TYPE_TIMEDTEXT = 3,
Chong Zhangdcb89b32013-08-06 09:44:47 -0700189 MEDIA_TRACK_TYPE_SUBTITLE = 4,
Robert Shih08528432015-04-08 09:06:54 -0700190 MEDIA_TRACK_TYPE_METADATA = 5,
Insun Kangf9d660a2012-02-16 20:28:27 +0900191};
192
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800193// ----------------------------------------------------------------------------
194// ref-counted object for callbacks
195class MediaPlayerListener: virtual public RefBase
196{
197public:
Gloria Wangb483c472011-04-11 17:23:27 -0700198 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800199};
200
Andreas Huber1b86fe02014-01-29 11:13:26 -0800201struct IMediaHTTPService;
202
James Dongdd172fc2010-01-15 18:13:58 -0800203class MediaPlayer : public BnMediaPlayerClient,
204 public virtual IMediaDeathNotifier
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800205{
206public:
207 MediaPlayer();
208 ~MediaPlayer();
James Dongdd172fc2010-01-15 18:13:58 -0800209 void died();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800210 void disconnect();
Andreas Huber2db84552010-01-28 11:19:57 -0800211
212 status_t setDataSource(
Andreas Huber1b86fe02014-01-29 11:13:26 -0800213 const sp<IMediaHTTPService> &httpService,
Andreas Huber2db84552010-01-28 11:19:57 -0800214 const char *url,
215 const KeyedVector<String8, String8> *headers);
216
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800217 status_t setDataSource(int fd, int64_t offset, int64_t length);
Chris Watkins99f31602015-03-20 13:06:33 -0700218 status_t setDataSource(const sp<IDataSource> &source);
Glenn Kasten11731182011-02-08 17:26:17 -0800219 status_t setVideoSurfaceTexture(
Andy McFadden484566c2012-12-18 09:46:54 -0800220 const sp<IGraphicBufferProducer>& bufferProducer);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800221 status_t setListener(const sp<MediaPlayerListener>& listener);
222 status_t prepare();
223 status_t prepareAsync();
224 status_t start();
225 status_t stop();
226 status_t pause();
227 bool isPlaying();
Lajos Molnar3a474aa2015-04-24 17:10:07 -0700228 status_t setPlaybackSettings(const AudioPlaybackRate& rate);
229 status_t getPlaybackSettings(AudioPlaybackRate* rate /* nonnull */);
230 status_t setSyncSettings(const AVSyncSettings& sync, float videoFpsHint);
231 status_t getSyncSettings(
232 AVSyncSettings* sync /* nonnull */,
233 float* videoFps /* nonnull */);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800234 status_t getVideoWidth(int *w);
235 status_t getVideoHeight(int *h);
236 status_t seekTo(int msec);
237 status_t getCurrentPosition(int *msec);
238 status_t getDuration(int *msec);
239 status_t reset();
Glenn Kastenfff6d712012-01-12 16:38:12 -0800240 status_t setAudioStreamType(audio_stream_type_t type);
John Spurlockde9453f2014-03-19 13:05:45 -0400241 status_t getAudioStreamType(audio_stream_type_t *type);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800242 status_t setLooping(int loop);
243 bool isLooping();
244 status_t setVolume(float leftVolume, float rightVolume);
Gloria Wangb483c472011-04-11 17:23:27 -0700245 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
Nicolas Catania1d187f12009-05-12 23:25:55 -0700246 status_t invoke(const Parcel& request, Parcel *reply);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700247 status_t setMetadataFilter(const Parcel& filter);
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700248 status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata);
Glenn Kastend848eb42016-03-08 13:42:11 -0800249 status_t setAudioSessionId(audio_session_t sessionId);
250 audio_session_t getAudioSessionId();
Eric Laurent2beeb502010-07-16 07:43:46 -0700251 status_t setAuxEffectSendLevel(float level);
252 status_t attachAuxEffect(int effectId);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700253 status_t setParameter(int key, const Parcel& request);
254 status_t getParameter(int key, Parcel* reply);
John Grossmanc795b642012-02-22 15:38:35 -0800255 status_t setRetransmitEndpoint(const char* addrString, uint16_t port);
Marco Nelissen6b74d672012-02-28 16:07:44 -0800256 status_t setNextMediaPlayer(const sp<MediaPlayer>& player);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700257
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800258private:
259 void clear_l();
260 status_t seekTo_l(int msec);
261 status_t prepareAsync_l();
262 status_t getDuration_l(int *msec);
Dave Burked681bbb2011-08-30 14:39:17 +0100263 status_t attachNewPlayer(const sp<IMediaPlayer>& player);
Jamie Gennis61c7ef52011-07-13 12:59:34 -0700264 status_t reset_l();
John Grossmanc795b642012-02-22 15:38:35 -0800265 status_t doSetRetransmitEndpoint(const sp<IMediaPlayer>& player);
Jean-Michel Trivid9d7fa02014-06-24 08:01:46 -0700266 status_t checkStateForKeySet_l(int key);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800267
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800268 sp<IMediaPlayer> mPlayer;
Jason Sams1af452f2009-03-24 18:45:22 -0700269 thread_id_t mLockThreadId;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800270 Mutex mLock;
271 Mutex mNotifyLock;
272 Condition mSignal;
273 sp<MediaPlayerListener> mListener;
274 void* mCookie;
275 media_player_states mCurrentState;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800276 int mCurrentPosition;
277 int mSeekPosition;
278 bool mPrepareSync;
279 status_t mPrepareStatus;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800280 audio_stream_type_t mStreamType;
Jean-Michel Trivi640adb32014-09-05 11:20:11 -0700281 Parcel* mAudioAttributesParcel;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800282 bool mLoop;
283 float mLeftVolume;
284 float mRightVolume;
285 int mVideoWidth;
286 int mVideoHeight;
Glenn Kastend848eb42016-03-08 13:42:11 -0800287 audio_session_t mAudioSessionId;
Eric Laurent2beeb502010-07-16 07:43:46 -0700288 float mSendLevel;
John Grossmanc795b642012-02-22 15:38:35 -0800289 struct sockaddr_in mRetransmitEndpoint;
290 bool mRetransmitEndpointValid;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800291};
292
293}; // namespace android
294
295#endif // ANDROID_MEDIAPLAYER_H