blob: 923c8b2b2ce08ea01404d984977b33bb32c13c8d [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>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080023#include <media/IMediaPlayerClient.h>
24#include <media/IMediaPlayer.h>
James Dongdd172fc2010-01-15 18:13:58 -080025#include <media/IMediaDeathNotifier.h>
Dave Burked681bbb2011-08-30 14:39:17 +010026#include <media/IStreamSource.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080027
Andreas Huber2db84552010-01-28 11:19:57 -080028#include <utils/KeyedVector.h>
29#include <utils/String8.h>
30
Jamie Gennis61c7ef52011-07-13 12:59:34 -070031class ANativeWindow;
32
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080033namespace android {
34
Mathias Agopian3cf61352010-02-09 17:46:37 -080035class Surface;
Andy McFadden484566c2012-12-18 09:46:54 -080036class IGraphicBufferProducer;
Mathias Agopian3cf61352010-02-09 17:46:37 -080037
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080038enum media_event_type {
39 MEDIA_NOP = 0, // interface test message
40 MEDIA_PREPARED = 1,
41 MEDIA_PLAYBACK_COMPLETE = 2,
42 MEDIA_BUFFERING_UPDATE = 3,
43 MEDIA_SEEK_COMPLETE = 4,
44 MEDIA_SET_VIDEO_SIZE = 5,
Lajos Molnarcbaffcf2013-08-14 18:30:38 -070045 MEDIA_STARTED = 6,
46 MEDIA_PAUSED = 7,
47 MEDIA_STOPPED = 8,
Gloria Wangb483c472011-04-11 17:23:27 -070048 MEDIA_TIMED_TEXT = 99,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080049 MEDIA_ERROR = 100,
The Android Open Source Project65e731f2009-03-11 12:11:56 -070050 MEDIA_INFO = 200,
Chong Zhangdcb89b32013-08-06 09:44:47 -070051 MEDIA_SUBTITLE_DATA = 201,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080052};
53
The Android Open Source Project65e731f2009-03-11 12:11:56 -070054// Generic error codes for the media player framework. Errors are fatal, the
55// playback must abort.
56//
57// Errors are communicated back to the client using the
58// MediaPlayerListener::notify method defined below.
59// In this situation, 'notify' is invoked with the following:
60// 'msg' is set to MEDIA_ERROR.
61// 'ext1' should be a value from the enum media_error_type.
62// 'ext2' contains an implementation dependant error code to provide
63// more details. Should default to 0 when not used.
64//
65// The codes are distributed as follow:
66// 0xx: Reserved
67// 1xx: Android Player errors. Something went wrong inside the MediaPlayer.
68// 2xx: Media errors (e.g Codec not supported). There is a problem with the
69// media itself.
70// 3xx: Runtime errors. Some extraordinary condition arose making the playback
71// impossible.
72//
73enum media_error_type {
74 // 0xx
75 MEDIA_ERROR_UNKNOWN = 1,
76 // 1xx
77 MEDIA_ERROR_SERVER_DIED = 100,
78 // 2xx
79 MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200,
80 // 3xx
81};
82
83
84// Info and warning codes for the media player framework. These are non fatal,
85// the playback is going on but there might be some user visible issues.
86//
87// Info and warning messages are communicated back to the client using the
88// MediaPlayerListener::notify method defined below. In this situation,
89// 'notify' is invoked with the following:
90// 'msg' is set to MEDIA_INFO.
91// 'ext1' should be a value from the enum media_info_type.
Ravi K Yenduri387eac42009-06-21 17:19:58 -050092// 'ext2' contains an implementation dependant info code to provide
The Android Open Source Project65e731f2009-03-11 12:11:56 -070093// more details. Should default to 0 when not used.
94//
95// The codes are distributed as follow:
96// 0xx: Reserved
97// 7xx: Android Player info/warning (e.g player lagging behind.)
98// 8xx: Media info/warning (e.g media badly interleaved.)
Nicolas Catania66095182009-06-11 16:33:49 -070099//
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700100enum media_info_type {
101 // 0xx
102 MEDIA_INFO_UNKNOWN = 1,
Marco Nelissen6b74d672012-02-28 16:07:44 -0800103 // The player was started because it was used as the next player for another
104 // player, which just completed playback
105 MEDIA_INFO_STARTED_AS_NEXT = 2,
James Dongc374dae2012-07-19 19:18:06 -0700106 // The player just pushed the very first video frame for rendering
107 MEDIA_INFO_RENDERING_START = 3,
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700108 // 7xx
109 // The video is too complex for the decoder: it can't decode frames fast
110 // enough. Possibly only the audio plays fine at this stage.
111 MEDIA_INFO_VIDEO_TRACK_LAGGING = 700,
Andreas Huber0a5baa92010-06-10 11:17:50 -0700112 // MediaPlayer is temporarily pausing playback internally in order to
113 // buffer more data.
114 MEDIA_INFO_BUFFERING_START = 701,
115 // MediaPlayer is resuming playback after filling buffers.
116 MEDIA_INFO_BUFFERING_END = 702,
James Dong5b1b8a92011-05-25 19:37:03 -0700117 // Bandwidth in recent past
118 MEDIA_INFO_NETWORK_BANDWIDTH = 703,
119
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700120 // 8xx
121 // Bad interleaving means that a media has been improperly interleaved or not
122 // interleaved at all, e.g has all the video samples first then all the audio
123 // ones. Video is playing but a lot of disk seek may be happening.
124 MEDIA_INFO_BAD_INTERLEAVING = 800,
125 // The media is not seekable (e.g live stream).
126 MEDIA_INFO_NOT_SEEKABLE = 801,
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700127 // New media metadata is available.
128 MEDIA_INFO_METADATA_UPDATE = 802,
Insun Kangf9d660a2012-02-16 20:28:27 +0900129
130 //9xx
131 MEDIA_INFO_TIMED_TEXT_ERROR = 900,
The Android Open Source Project65e731f2009-03-11 12:11:56 -0700132};
133
134
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800135
136enum media_player_states {
137 MEDIA_PLAYER_STATE_ERROR = 0,
138 MEDIA_PLAYER_IDLE = 1 << 0,
139 MEDIA_PLAYER_INITIALIZED = 1 << 1,
140 MEDIA_PLAYER_PREPARING = 1 << 2,
141 MEDIA_PLAYER_PREPARED = 1 << 3,
142 MEDIA_PLAYER_STARTED = 1 << 4,
143 MEDIA_PLAYER_PAUSED = 1 << 5,
144 MEDIA_PLAYER_STOPPED = 1 << 6,
145 MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7
146};
147
Glenn Kastencd25fed2011-07-25 09:26:22 -0700148// Keep KEY_PARAMETER_* in sync with MediaPlayer.java.
149// The same enum space is used for both set and get, in case there are future keys that
150// can be both set and get. But as of now, all parameters are either set only or get only.
151enum media_parameter_keys {
James Dong5b1b8a92011-05-25 19:37:03 -0700152 // Streaming/buffering parameters
Glenn Kastencd25fed2011-07-25 09:26:22 -0700153 KEY_PARAMETER_CACHE_STAT_COLLECT_FREQ_MS = 1100, // set only
154
155 // Return a Parcel containing a single int, which is the channel count of the
156 // audio track, or zero for error (e.g. no audio track) or unknown.
157 KEY_PARAMETER_AUDIO_CHANNEL_COUNT = 1200, // get only
158
Jean-Michel Trivi7a8b0ed2012-02-02 09:06:31 -0800159 // Playback rate expressed in permille (1000 is normal speed), saved as int32_t, with negative
160 // values used for rewinding or reverse playback.
161 KEY_PARAMETER_PLAYBACK_RATE_PERMILLE = 1300, // set only
Gloria Wang7a1e3e82011-05-03 15:59:03 -0700162};
Glenn Kastencd25fed2011-07-25 09:26:22 -0700163
Insun Kangf9d660a2012-02-16 20:28:27 +0900164// Keep INVOKE_ID_* in sync with MediaPlayer.java.
165enum media_player_invoke_ids {
166 INVOKE_ID_GET_TRACK_INFO = 1,
167 INVOKE_ID_ADD_EXTERNAL_SOURCE = 2,
168 INVOKE_ID_ADD_EXTERNAL_SOURCE_FD = 3,
169 INVOKE_ID_SELECT_TRACK = 4,
170 INVOKE_ID_UNSELECT_TRACK = 5,
James Dong4f6eed02012-04-30 14:38:12 -0700171 INVOKE_ID_SET_VIDEO_SCALING_MODE = 6,
Insun Kangf9d660a2012-02-16 20:28:27 +0900172};
173
174// Keep MEDIA_TRACK_TYPE_* in sync with MediaPlayer.java.
175enum media_track_type {
176 MEDIA_TRACK_TYPE_UNKNOWN = 0,
177 MEDIA_TRACK_TYPE_VIDEO = 1,
178 MEDIA_TRACK_TYPE_AUDIO = 2,
179 MEDIA_TRACK_TYPE_TIMEDTEXT = 3,
Chong Zhangdcb89b32013-08-06 09:44:47 -0700180 MEDIA_TRACK_TYPE_SUBTITLE = 4,
Insun Kangf9d660a2012-02-16 20:28:27 +0900181};
182
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800183// ----------------------------------------------------------------------------
184// ref-counted object for callbacks
185class MediaPlayerListener: virtual public RefBase
186{
187public:
Gloria Wangb483c472011-04-11 17:23:27 -0700188 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800189};
190
James Dongdd172fc2010-01-15 18:13:58 -0800191class MediaPlayer : public BnMediaPlayerClient,
192 public virtual IMediaDeathNotifier
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800193{
194public:
195 MediaPlayer();
196 ~MediaPlayer();
James Dongdd172fc2010-01-15 18:13:58 -0800197 void died();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800198 void disconnect();
Andreas Huber2db84552010-01-28 11:19:57 -0800199
200 status_t setDataSource(
201 const char *url,
202 const KeyedVector<String8, String8> *headers);
203
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800204 status_t setDataSource(int fd, int64_t offset, int64_t length);
Dave Burked681bbb2011-08-30 14:39:17 +0100205 status_t setDataSource(const sp<IStreamSource> &source);
Glenn Kasten11731182011-02-08 17:26:17 -0800206 status_t setVideoSurfaceTexture(
Andy McFadden484566c2012-12-18 09:46:54 -0800207 const sp<IGraphicBufferProducer>& bufferProducer);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800208 status_t setListener(const sp<MediaPlayerListener>& listener);
209 status_t prepare();
210 status_t prepareAsync();
211 status_t start();
212 status_t stop();
213 status_t pause();
214 bool isPlaying();
215 status_t getVideoWidth(int *w);
216 status_t getVideoHeight(int *h);
217 status_t seekTo(int msec);
218 status_t getCurrentPosition(int *msec);
219 status_t getDuration(int *msec);
220 status_t reset();
Glenn Kastenfff6d712012-01-12 16:38:12 -0800221 status_t setAudioStreamType(audio_stream_type_t type);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800222 status_t setLooping(int loop);
223 bool isLooping();
224 status_t setVolume(float leftVolume, float rightVolume);
Gloria Wangb483c472011-04-11 17:23:27 -0700225 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
Glenn Kastene1c39622012-01-04 09:36:37 -0800226 static sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat);
227 static sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat);
Nicolas Catania1d187f12009-05-12 23:25:55 -0700228 status_t invoke(const Parcel& request, Parcel *reply);
Nicolas Cataniaa7e0e8b2009-07-08 08:57:42 -0700229 status_t setMetadataFilter(const Parcel& filter);
Nicolas Catania8e1b6cc2009-07-09 09:21:33 -0700230 status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata);
Eric Laurenta514bdb2010-06-21 09:27:30 -0700231 status_t setAudioSessionId(int sessionId);
232 int getAudioSessionId();
Eric Laurent2beeb502010-07-16 07:43:46 -0700233 status_t setAuxEffectSendLevel(float level);
234 status_t attachAuxEffect(int effectId);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700235 status_t setParameter(int key, const Parcel& request);
236 status_t getParameter(int key, Parcel* reply);
John Grossmanc795b642012-02-22 15:38:35 -0800237 status_t setRetransmitEndpoint(const char* addrString, uint16_t port);
Marco Nelissen6b74d672012-02-28 16:07:44 -0800238 status_t setNextMediaPlayer(const sp<MediaPlayer>& player);
Gloria Wang4f9e47f2011-04-25 17:28:22 -0700239
Andreas Huberb7319a72013-05-29 14:20:52 -0700240 status_t updateProxyConfig(
241 const char *host, int32_t port, const char *exclusionList);
242
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800243private:
244 void clear_l();
245 status_t seekTo_l(int msec);
246 status_t prepareAsync_l();
247 status_t getDuration_l(int *msec);
Dave Burked681bbb2011-08-30 14:39:17 +0100248 status_t attachNewPlayer(const sp<IMediaPlayer>& player);
Jamie Gennis61c7ef52011-07-13 12:59:34 -0700249 status_t reset_l();
John Grossmanc795b642012-02-22 15:38:35 -0800250 status_t doSetRetransmitEndpoint(const sp<IMediaPlayer>& player);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800251
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800252 sp<IMediaPlayer> mPlayer;
Jason Sams1af452f2009-03-24 18:45:22 -0700253 thread_id_t mLockThreadId;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800254 Mutex mLock;
255 Mutex mNotifyLock;
256 Condition mSignal;
257 sp<MediaPlayerListener> mListener;
258 void* mCookie;
259 media_player_states mCurrentState;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800260 int mCurrentPosition;
261 int mSeekPosition;
262 bool mPrepareSync;
263 status_t mPrepareStatus;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800264 audio_stream_type_t mStreamType;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800265 bool mLoop;
266 float mLeftVolume;
267 float mRightVolume;
268 int mVideoWidth;
269 int mVideoHeight;
Eric Laurenta514bdb2010-06-21 09:27:30 -0700270 int mAudioSessionId;
Eric Laurent2beeb502010-07-16 07:43:46 -0700271 float mSendLevel;
John Grossmanc795b642012-02-22 15:38:35 -0800272 struct sockaddr_in mRetransmitEndpoint;
273 bool mRetransmitEndpointValid;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800274};
275
276}; // namespace android
277
278#endif // ANDROID_MEDIAPLAYER_H