blob: 1136f6c0a91741d739340b76590c6cbd32ec7cf3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-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
Mathias Agopian07952722009-05-19 19:08:10 -070020#include <binder/IMemory.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021#include <media/IMediaPlayerClient.h>
22#include <media/IMediaPlayer.h>
James Dong34bbc222010-01-15 18:13:58 -080023#include <media/IMediaDeathNotifier.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
Andreas Huber25643002010-01-28 11:19:57 -080025#include <utils/KeyedVector.h>
26#include <utils/String8.h>
27
Jamie Gennisc85ca5d2011-07-13 12:59:34 -070028class ANativeWindow;
29
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030namespace android {
31
Mathias Agopian000479f2010-02-09 17:46:37 -080032class Surface;
Glenn Kastencc562a32011-02-08 17:26:17 -080033class ISurfaceTexture;
Mathias Agopian000479f2010-02-09 17:46:37 -080034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035enum media_event_type {
36 MEDIA_NOP = 0, // interface test message
37 MEDIA_PREPARED = 1,
38 MEDIA_PLAYBACK_COMPLETE = 2,
39 MEDIA_BUFFERING_UPDATE = 3,
40 MEDIA_SEEK_COMPLETE = 4,
41 MEDIA_SET_VIDEO_SIZE = 5,
Gloria Wang162ee492011-04-11 17:23:27 -070042 MEDIA_TIMED_TEXT = 99,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043 MEDIA_ERROR = 100,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070044 MEDIA_INFO = 200,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045};
46
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070047// Generic error codes for the media player framework. Errors are fatal, the
48// playback must abort.
49//
50// Errors are communicated back to the client using the
51// MediaPlayerListener::notify method defined below.
52// In this situation, 'notify' is invoked with the following:
53// 'msg' is set to MEDIA_ERROR.
54// 'ext1' should be a value from the enum media_error_type.
55// 'ext2' contains an implementation dependant error code to provide
56// more details. Should default to 0 when not used.
57//
58// The codes are distributed as follow:
59// 0xx: Reserved
60// 1xx: Android Player errors. Something went wrong inside the MediaPlayer.
61// 2xx: Media errors (e.g Codec not supported). There is a problem with the
62// media itself.
63// 3xx: Runtime errors. Some extraordinary condition arose making the playback
64// impossible.
65//
66enum media_error_type {
67 // 0xx
68 MEDIA_ERROR_UNKNOWN = 1,
69 // 1xx
70 MEDIA_ERROR_SERVER_DIED = 100,
71 // 2xx
72 MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200,
73 // 3xx
74};
75
76
77// Info and warning codes for the media player framework. These are non fatal,
78// the playback is going on but there might be some user visible issues.
79//
80// Info and warning messages are communicated back to the client using the
81// MediaPlayerListener::notify method defined below. In this situation,
82// 'notify' is invoked with the following:
83// 'msg' is set to MEDIA_INFO.
84// 'ext1' should be a value from the enum media_info_type.
Ravi K Yenduri62e73f42009-06-21 17:19:58 -050085// 'ext2' contains an implementation dependant info code to provide
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070086// more details. Should default to 0 when not used.
87//
88// The codes are distributed as follow:
89// 0xx: Reserved
90// 7xx: Android Player info/warning (e.g player lagging behind.)
91// 8xx: Media info/warning (e.g media badly interleaved.)
Nicolas Catania32f82772009-06-11 16:33:49 -070092//
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070093enum media_info_type {
94 // 0xx
95 MEDIA_INFO_UNKNOWN = 1,
96 // 7xx
97 // The video is too complex for the decoder: it can't decode frames fast
98 // enough. Possibly only the audio plays fine at this stage.
99 MEDIA_INFO_VIDEO_TRACK_LAGGING = 700,
Andreas Huber4d61f602010-06-10 11:17:50 -0700100 // MediaPlayer is temporarily pausing playback internally in order to
101 // buffer more data.
102 MEDIA_INFO_BUFFERING_START = 701,
103 // MediaPlayer is resuming playback after filling buffers.
104 MEDIA_INFO_BUFFERING_END = 702,
James Donga9d0feb2011-05-25 19:37:03 -0700105 // Bandwidth in recent past
106 MEDIA_INFO_NETWORK_BANDWIDTH = 703,
107
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700108 // 8xx
109 // Bad interleaving means that a media has been improperly interleaved or not
110 // interleaved at all, e.g has all the video samples first then all the audio
111 // ones. Video is playing but a lot of disk seek may be happening.
112 MEDIA_INFO_BAD_INTERLEAVING = 800,
113 // The media is not seekable (e.g live stream).
114 MEDIA_INFO_NOT_SEEKABLE = 801,
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700115 // New media metadata is available.
116 MEDIA_INFO_METADATA_UPDATE = 802,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700117};
118
119
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120
121enum media_player_states {
122 MEDIA_PLAYER_STATE_ERROR = 0,
123 MEDIA_PLAYER_IDLE = 1 << 0,
124 MEDIA_PLAYER_INITIALIZED = 1 << 1,
125 MEDIA_PLAYER_PREPARING = 1 << 2,
126 MEDIA_PLAYER_PREPARED = 1 << 3,
127 MEDIA_PLAYER_STARTED = 1 << 4,
128 MEDIA_PLAYER_PAUSED = 1 << 5,
129 MEDIA_PLAYER_STOPPED = 1 << 6,
130 MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7
131};
132
Gloria Wangc6091dd2011-05-03 15:59:03 -0700133enum media_set_parameter_keys {
134 KEY_PARAMETER_TIMED_TEXT_TRACK_INDEX = 1000,
Gloria Wang13bc8cd2011-05-11 11:24:09 -0700135 KEY_PARAMETER_TIMED_TEXT_ADD_OUT_OF_BAND_SOURCE = 1001,
James Donga9d0feb2011-05-25 19:37:03 -0700136
137 // Streaming/buffering parameters
138 KEY_PARAMETER_CACHE_STAT_COLLECT_FREQ_MS = 1100,
Gloria Wangc6091dd2011-05-03 15:59:03 -0700139};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140// ----------------------------------------------------------------------------
141// ref-counted object for callbacks
142class MediaPlayerListener: virtual public RefBase
143{
144public:
Gloria Wang162ee492011-04-11 17:23:27 -0700145 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146};
147
James Dong34bbc222010-01-15 18:13:58 -0800148class MediaPlayer : public BnMediaPlayerClient,
149 public virtual IMediaDeathNotifier
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150{
151public:
152 MediaPlayer();
153 ~MediaPlayer();
James Dong34bbc222010-01-15 18:13:58 -0800154 void died();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 void disconnect();
Andreas Huber25643002010-01-28 11:19:57 -0800156
157 status_t setDataSource(
158 const char *url,
159 const KeyedVector<String8, String8> *headers);
160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 status_t setDataSource(int fd, int64_t offset, int64_t length);
162 status_t setVideoSurface(const sp<Surface>& surface);
Glenn Kastencc562a32011-02-08 17:26:17 -0800163 status_t setVideoSurfaceTexture(
164 const sp<ISurfaceTexture>& surfaceTexture);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 status_t setListener(const sp<MediaPlayerListener>& listener);
166 status_t prepare();
167 status_t prepareAsync();
168 status_t start();
169 status_t stop();
170 status_t pause();
171 bool isPlaying();
172 status_t getVideoWidth(int *w);
173 status_t getVideoHeight(int *h);
174 status_t seekTo(int msec);
175 status_t getCurrentPosition(int *msec);
176 status_t getDuration(int *msec);
177 status_t reset();
178 status_t setAudioStreamType(int type);
179 status_t setLooping(int loop);
180 bool isLooping();
181 status_t setVolume(float leftVolume, float rightVolume);
Gloria Wang162ee492011-04-11 17:23:27 -0700182 void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 static sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
184 static sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
Nicolas Catania20cb94e2009-05-12 23:25:55 -0700185 status_t invoke(const Parcel& request, Parcel *reply);
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700186 status_t setMetadataFilter(const Parcel& filter);
Nicolas Catania5d55c712009-07-09 09:21:33 -0700187 status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata);
Eric Laurent619346f2010-06-21 09:27:30 -0700188 status_t setAudioSessionId(int sessionId);
189 int getAudioSessionId();
Eric Laurent7070b362010-07-16 07:43:46 -0700190 status_t setAuxEffectSendLevel(float level);
191 status_t attachAuxEffect(int effectId);
Gloria Wangd01ec6e2011-04-25 17:28:22 -0700192 status_t setParameter(int key, const Parcel& request);
193 status_t getParameter(int key, Parcel* reply);
194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195private:
196 void clear_l();
197 status_t seekTo_l(int msec);
198 status_t prepareAsync_l();
199 status_t getDuration_l(int *msec);
200 status_t setDataSource(const sp<IMediaPlayer>& player);
Jamie Gennisc85ca5d2011-07-13 12:59:34 -0700201 void disconnectNativeWindow();
202 status_t reset_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 sp<IMediaPlayer> mPlayer;
Jason Samsebb020a2009-03-24 18:45:22 -0700205 thread_id_t mLockThreadId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 Mutex mLock;
207 Mutex mNotifyLock;
208 Condition mSignal;
209 sp<MediaPlayerListener> mListener;
210 void* mCookie;
211 media_player_states mCurrentState;
212 int mDuration;
213 int mCurrentPosition;
214 int mSeekPosition;
215 bool mPrepareSync;
216 status_t mPrepareStatus;
217 int mStreamType;
218 bool mLoop;
219 float mLeftVolume;
220 float mRightVolume;
221 int mVideoWidth;
222 int mVideoHeight;
Eric Laurent619346f2010-06-21 09:27:30 -0700223 int mAudioSessionId;
Eric Laurent7070b362010-07-16 07:43:46 -0700224 float mSendLevel;
Jamie Gennisc85ca5d2011-07-13 12:59:34 -0700225 sp<ANativeWindow> mConnectedWindow;
226 sp<IBinder> mConnectedWindowBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227};
228
229}; // namespace android
230
231#endif // ANDROID_MEDIAPLAYER_H