blob: 528eeb91c2571d438bd544485dbfe9e6b901dfed [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028namespace android {
29
Mathias Agopian000479f2010-02-09 17:46:37 -080030class Surface;
Glenn Kastencc562a32011-02-08 17:26:17 -080031class ISurfaceTexture;
Mathias Agopian000479f2010-02-09 17:46:37 -080032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033enum media_event_type {
34 MEDIA_NOP = 0, // interface test message
35 MEDIA_PREPARED = 1,
36 MEDIA_PLAYBACK_COMPLETE = 2,
37 MEDIA_BUFFERING_UPDATE = 3,
38 MEDIA_SEEK_COMPLETE = 4,
39 MEDIA_SET_VIDEO_SIZE = 5,
40 MEDIA_ERROR = 100,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070041 MEDIA_INFO = 200,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042};
43
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070044// Generic error codes for the media player framework. Errors are fatal, the
45// playback must abort.
46//
47// Errors are communicated back to the client using the
48// MediaPlayerListener::notify method defined below.
49// In this situation, 'notify' is invoked with the following:
50// 'msg' is set to MEDIA_ERROR.
51// 'ext1' should be a value from the enum media_error_type.
52// 'ext2' contains an implementation dependant error code to provide
53// more details. Should default to 0 when not used.
54//
55// The codes are distributed as follow:
56// 0xx: Reserved
57// 1xx: Android Player errors. Something went wrong inside the MediaPlayer.
58// 2xx: Media errors (e.g Codec not supported). There is a problem with the
59// media itself.
60// 3xx: Runtime errors. Some extraordinary condition arose making the playback
61// impossible.
62//
63enum media_error_type {
64 // 0xx
65 MEDIA_ERROR_UNKNOWN = 1,
66 // 1xx
67 MEDIA_ERROR_SERVER_DIED = 100,
68 // 2xx
69 MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200,
70 // 3xx
71};
72
73
74// Info and warning codes for the media player framework. These are non fatal,
75// the playback is going on but there might be some user visible issues.
76//
77// Info and warning messages are communicated back to the client using the
78// MediaPlayerListener::notify method defined below. In this situation,
79// 'notify' is invoked with the following:
80// 'msg' is set to MEDIA_INFO.
81// 'ext1' should be a value from the enum media_info_type.
Ravi K Yenduri62e73f42009-06-21 17:19:58 -050082// 'ext2' contains an implementation dependant info code to provide
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070083// more details. Should default to 0 when not used.
84//
85// The codes are distributed as follow:
86// 0xx: Reserved
87// 7xx: Android Player info/warning (e.g player lagging behind.)
88// 8xx: Media info/warning (e.g media badly interleaved.)
Nicolas Catania32f82772009-06-11 16:33:49 -070089//
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070090enum media_info_type {
91 // 0xx
92 MEDIA_INFO_UNKNOWN = 1,
93 // 7xx
94 // The video is too complex for the decoder: it can't decode frames fast
95 // enough. Possibly only the audio plays fine at this stage.
96 MEDIA_INFO_VIDEO_TRACK_LAGGING = 700,
Andreas Huber4d61f602010-06-10 11:17:50 -070097 // MediaPlayer is temporarily pausing playback internally in order to
98 // buffer more data.
99 MEDIA_INFO_BUFFERING_START = 701,
100 // MediaPlayer is resuming playback after filling buffers.
101 MEDIA_INFO_BUFFERING_END = 702,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700102 // 8xx
103 // Bad interleaving means that a media has been improperly interleaved or not
104 // interleaved at all, e.g has all the video samples first then all the audio
105 // ones. Video is playing but a lot of disk seek may be happening.
106 MEDIA_INFO_BAD_INTERLEAVING = 800,
107 // The media is not seekable (e.g live stream).
108 MEDIA_INFO_NOT_SEEKABLE = 801,
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700109 // New media metadata is available.
110 MEDIA_INFO_METADATA_UPDATE = 802,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700111};
112
113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114
115enum media_player_states {
116 MEDIA_PLAYER_STATE_ERROR = 0,
117 MEDIA_PLAYER_IDLE = 1 << 0,
118 MEDIA_PLAYER_INITIALIZED = 1 << 1,
119 MEDIA_PLAYER_PREPARING = 1 << 2,
120 MEDIA_PLAYER_PREPARED = 1 << 3,
121 MEDIA_PLAYER_STARTED = 1 << 4,
122 MEDIA_PLAYER_PAUSED = 1 << 5,
123 MEDIA_PLAYER_STOPPED = 1 << 6,
124 MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7
125};
126
127// ----------------------------------------------------------------------------
128// ref-counted object for callbacks
129class MediaPlayerListener: virtual public RefBase
130{
131public:
132 virtual void notify(int msg, int ext1, int ext2) = 0;
133};
134
James Dong34bbc222010-01-15 18:13:58 -0800135class MediaPlayer : public BnMediaPlayerClient,
136 public virtual IMediaDeathNotifier
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137{
138public:
139 MediaPlayer();
140 ~MediaPlayer();
James Dong34bbc222010-01-15 18:13:58 -0800141 void died();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 void disconnect();
Andreas Huber25643002010-01-28 11:19:57 -0800143
144 status_t setDataSource(
145 const char *url,
146 const KeyedVector<String8, String8> *headers);
147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 status_t setDataSource(int fd, int64_t offset, int64_t length);
149 status_t setVideoSurface(const sp<Surface>& surface);
Glenn Kastencc562a32011-02-08 17:26:17 -0800150 status_t setVideoSurfaceTexture(
151 const sp<ISurfaceTexture>& surfaceTexture);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 status_t setListener(const sp<MediaPlayerListener>& listener);
153 status_t prepare();
154 status_t prepareAsync();
155 status_t start();
156 status_t stop();
157 status_t pause();
158 bool isPlaying();
159 status_t getVideoWidth(int *w);
160 status_t getVideoHeight(int *h);
161 status_t seekTo(int msec);
162 status_t getCurrentPosition(int *msec);
163 status_t getDuration(int *msec);
164 status_t reset();
165 status_t setAudioStreamType(int type);
166 status_t setLooping(int loop);
167 bool isLooping();
168 status_t setVolume(float leftVolume, float rightVolume);
169 void notify(int msg, int ext1, int ext2);
170 static sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
171 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 -0700172 status_t invoke(const Parcel& request, Parcel *reply);
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700173 status_t setMetadataFilter(const Parcel& filter);
Nicolas Catania5d55c712009-07-09 09:21:33 -0700174 status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata);
Eric Laurent619346f2010-06-21 09:27:30 -0700175 status_t setAudioSessionId(int sessionId);
176 int getAudioSessionId();
Eric Laurent7070b362010-07-16 07:43:46 -0700177 status_t setAuxEffectSendLevel(float level);
178 status_t attachAuxEffect(int effectId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179private:
180 void clear_l();
181 status_t seekTo_l(int msec);
182 status_t prepareAsync_l();
183 status_t getDuration_l(int *msec);
184 status_t setDataSource(const sp<IMediaPlayer>& player);
185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 sp<IMediaPlayer> mPlayer;
Jason Samsebb020a2009-03-24 18:45:22 -0700187 thread_id_t mLockThreadId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 Mutex mLock;
189 Mutex mNotifyLock;
190 Condition mSignal;
191 sp<MediaPlayerListener> mListener;
192 void* mCookie;
193 media_player_states mCurrentState;
194 int mDuration;
195 int mCurrentPosition;
196 int mSeekPosition;
197 bool mPrepareSync;
198 status_t mPrepareStatus;
199 int mStreamType;
200 bool mLoop;
201 float mLeftVolume;
202 float mRightVolume;
203 int mVideoWidth;
204 int mVideoHeight;
Eric Laurent619346f2010-06-21 09:27:30 -0700205 int mAudioSessionId;
Eric Laurent7070b362010-07-16 07:43:46 -0700206 float mSendLevel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207};
208
209}; // namespace android
210
211#endif // ANDROID_MEDIAPLAYER_H