The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 Agopian | 7562408 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 20 | #include <binder/IMemory.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <media/IMediaPlayerClient.h> |
| 22 | #include <media/IMediaPlayer.h> |
James Dong | dd172fc | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 23 | #include <media/IMediaDeathNotifier.h> |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame^] | 24 | #include <media/IStreamSource.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | |
Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 26 | #include <utils/KeyedVector.h> |
| 27 | #include <utils/String8.h> |
| 28 | |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 29 | class ANativeWindow; |
| 30 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | namespace android { |
| 32 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 33 | class Surface; |
Glenn Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 34 | class ISurfaceTexture; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 35 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | enum media_event_type { |
| 37 | MEDIA_NOP = 0, // interface test message |
| 38 | MEDIA_PREPARED = 1, |
| 39 | MEDIA_PLAYBACK_COMPLETE = 2, |
| 40 | MEDIA_BUFFERING_UPDATE = 3, |
| 41 | MEDIA_SEEK_COMPLETE = 4, |
| 42 | MEDIA_SET_VIDEO_SIZE = 5, |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 43 | MEDIA_TIMED_TEXT = 99, |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 44 | MEDIA_ERROR = 100, |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 45 | MEDIA_INFO = 200, |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | }; |
| 47 | |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 48 | // Generic error codes for the media player framework. Errors are fatal, the |
| 49 | // playback must abort. |
| 50 | // |
| 51 | // Errors are communicated back to the client using the |
| 52 | // MediaPlayerListener::notify method defined below. |
| 53 | // In this situation, 'notify' is invoked with the following: |
| 54 | // 'msg' is set to MEDIA_ERROR. |
| 55 | // 'ext1' should be a value from the enum media_error_type. |
| 56 | // 'ext2' contains an implementation dependant error code to provide |
| 57 | // more details. Should default to 0 when not used. |
| 58 | // |
| 59 | // The codes are distributed as follow: |
| 60 | // 0xx: Reserved |
| 61 | // 1xx: Android Player errors. Something went wrong inside the MediaPlayer. |
| 62 | // 2xx: Media errors (e.g Codec not supported). There is a problem with the |
| 63 | // media itself. |
| 64 | // 3xx: Runtime errors. Some extraordinary condition arose making the playback |
| 65 | // impossible. |
| 66 | // |
| 67 | enum media_error_type { |
| 68 | // 0xx |
| 69 | MEDIA_ERROR_UNKNOWN = 1, |
| 70 | // 1xx |
| 71 | MEDIA_ERROR_SERVER_DIED = 100, |
| 72 | // 2xx |
| 73 | MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200, |
| 74 | // 3xx |
| 75 | }; |
| 76 | |
| 77 | |
| 78 | // Info and warning codes for the media player framework. These are non fatal, |
| 79 | // the playback is going on but there might be some user visible issues. |
| 80 | // |
| 81 | // Info and warning messages are communicated back to the client using the |
| 82 | // MediaPlayerListener::notify method defined below. In this situation, |
| 83 | // 'notify' is invoked with the following: |
| 84 | // 'msg' is set to MEDIA_INFO. |
| 85 | // 'ext1' should be a value from the enum media_info_type. |
Ravi K Yenduri | 387eac4 | 2009-06-21 17:19:58 -0500 | [diff] [blame] | 86 | // 'ext2' contains an implementation dependant info code to provide |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 87 | // more details. Should default to 0 when not used. |
| 88 | // |
| 89 | // The codes are distributed as follow: |
| 90 | // 0xx: Reserved |
| 91 | // 7xx: Android Player info/warning (e.g player lagging behind.) |
| 92 | // 8xx: Media info/warning (e.g media badly interleaved.) |
Nicolas Catania | 6609518 | 2009-06-11 16:33:49 -0700 | [diff] [blame] | 93 | // |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 94 | enum media_info_type { |
| 95 | // 0xx |
| 96 | MEDIA_INFO_UNKNOWN = 1, |
| 97 | // 7xx |
| 98 | // The video is too complex for the decoder: it can't decode frames fast |
| 99 | // enough. Possibly only the audio plays fine at this stage. |
| 100 | MEDIA_INFO_VIDEO_TRACK_LAGGING = 700, |
Andreas Huber | 0a5baa9 | 2010-06-10 11:17:50 -0700 | [diff] [blame] | 101 | // MediaPlayer is temporarily pausing playback internally in order to |
| 102 | // buffer more data. |
| 103 | MEDIA_INFO_BUFFERING_START = 701, |
| 104 | // MediaPlayer is resuming playback after filling buffers. |
| 105 | MEDIA_INFO_BUFFERING_END = 702, |
James Dong | 5b1b8a9 | 2011-05-25 19:37:03 -0700 | [diff] [blame] | 106 | // Bandwidth in recent past |
| 107 | MEDIA_INFO_NETWORK_BANDWIDTH = 703, |
| 108 | |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 109 | // 8xx |
| 110 | // Bad interleaving means that a media has been improperly interleaved or not |
| 111 | // interleaved at all, e.g has all the video samples first then all the audio |
| 112 | // ones. Video is playing but a lot of disk seek may be happening. |
| 113 | MEDIA_INFO_BAD_INTERLEAVING = 800, |
| 114 | // The media is not seekable (e.g live stream). |
| 115 | MEDIA_INFO_NOT_SEEKABLE = 801, |
Nicolas Catania | a7e0e8b | 2009-07-08 08:57:42 -0700 | [diff] [blame] | 116 | // New media metadata is available. |
| 117 | MEDIA_INFO_METADATA_UPDATE = 802, |
The Android Open Source Project | 65e731f | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | |
| 122 | enum media_player_states { |
| 123 | MEDIA_PLAYER_STATE_ERROR = 0, |
| 124 | MEDIA_PLAYER_IDLE = 1 << 0, |
| 125 | MEDIA_PLAYER_INITIALIZED = 1 << 1, |
| 126 | MEDIA_PLAYER_PREPARING = 1 << 2, |
| 127 | MEDIA_PLAYER_PREPARED = 1 << 3, |
| 128 | MEDIA_PLAYER_STARTED = 1 << 4, |
| 129 | MEDIA_PLAYER_PAUSED = 1 << 5, |
| 130 | MEDIA_PLAYER_STOPPED = 1 << 6, |
| 131 | MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7 |
| 132 | }; |
| 133 | |
Glenn Kasten | cd25fed | 2011-07-25 09:26:22 -0700 | [diff] [blame] | 134 | // Keep KEY_PARAMETER_* in sync with MediaPlayer.java. |
| 135 | // The same enum space is used for both set and get, in case there are future keys that |
| 136 | // can be both set and get. But as of now, all parameters are either set only or get only. |
| 137 | enum media_parameter_keys { |
| 138 | KEY_PARAMETER_TIMED_TEXT_TRACK_INDEX = 1000, // set only |
| 139 | KEY_PARAMETER_TIMED_TEXT_ADD_OUT_OF_BAND_SOURCE = 1001, // set only |
James Dong | 5b1b8a9 | 2011-05-25 19:37:03 -0700 | [diff] [blame] | 140 | |
| 141 | // Streaming/buffering parameters |
Glenn Kasten | cd25fed | 2011-07-25 09:26:22 -0700 | [diff] [blame] | 142 | KEY_PARAMETER_CACHE_STAT_COLLECT_FREQ_MS = 1100, // set only |
| 143 | |
| 144 | // Return a Parcel containing a single int, which is the channel count of the |
| 145 | // audio track, or zero for error (e.g. no audio track) or unknown. |
| 146 | KEY_PARAMETER_AUDIO_CHANNEL_COUNT = 1200, // get only |
| 147 | |
Gloria Wang | 7a1e3e8 | 2011-05-03 15:59:03 -0700 | [diff] [blame] | 148 | }; |
Glenn Kasten | cd25fed | 2011-07-25 09:26:22 -0700 | [diff] [blame] | 149 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 150 | // ---------------------------------------------------------------------------- |
| 151 | // ref-counted object for callbacks |
| 152 | class MediaPlayerListener: virtual public RefBase |
| 153 | { |
| 154 | public: |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 155 | virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 156 | }; |
| 157 | |
James Dong | dd172fc | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 158 | class MediaPlayer : public BnMediaPlayerClient, |
| 159 | public virtual IMediaDeathNotifier |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 160 | { |
| 161 | public: |
| 162 | MediaPlayer(); |
| 163 | ~MediaPlayer(); |
James Dong | dd172fc | 2010-01-15 18:13:58 -0800 | [diff] [blame] | 164 | void died(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 165 | void disconnect(); |
Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 166 | |
| 167 | status_t setDataSource( |
| 168 | const char *url, |
| 169 | const KeyedVector<String8, String8> *headers); |
| 170 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 171 | status_t setDataSource(int fd, int64_t offset, int64_t length); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame^] | 172 | status_t setDataSource(const sp<IStreamSource> &source); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 173 | status_t setVideoSurface(const sp<Surface>& surface); |
Glenn Kasten | 1173118 | 2011-02-08 17:26:17 -0800 | [diff] [blame] | 174 | status_t setVideoSurfaceTexture( |
| 175 | const sp<ISurfaceTexture>& surfaceTexture); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 176 | status_t setListener(const sp<MediaPlayerListener>& listener); |
| 177 | status_t prepare(); |
| 178 | status_t prepareAsync(); |
| 179 | status_t start(); |
| 180 | status_t stop(); |
| 181 | status_t pause(); |
| 182 | bool isPlaying(); |
| 183 | status_t getVideoWidth(int *w); |
| 184 | status_t getVideoHeight(int *h); |
| 185 | status_t seekTo(int msec); |
| 186 | status_t getCurrentPosition(int *msec); |
| 187 | status_t getDuration(int *msec); |
| 188 | status_t reset(); |
| 189 | status_t setAudioStreamType(int type); |
| 190 | status_t setLooping(int loop); |
| 191 | bool isLooping(); |
| 192 | status_t setVolume(float leftVolume, float rightVolume); |
Gloria Wang | b483c47 | 2011-04-11 17:23:27 -0700 | [diff] [blame] | 193 | void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 194 | static sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat); |
| 195 | static sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat); |
Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 196 | status_t invoke(const Parcel& request, Parcel *reply); |
Nicolas Catania | a7e0e8b | 2009-07-08 08:57:42 -0700 | [diff] [blame] | 197 | status_t setMetadataFilter(const Parcel& filter); |
Nicolas Catania | 8e1b6cc | 2009-07-09 09:21:33 -0700 | [diff] [blame] | 198 | status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata); |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 199 | status_t setAudioSessionId(int sessionId); |
| 200 | int getAudioSessionId(); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 201 | status_t setAuxEffectSendLevel(float level); |
| 202 | status_t attachAuxEffect(int effectId); |
Gloria Wang | 4f9e47f | 2011-04-25 17:28:22 -0700 | [diff] [blame] | 203 | status_t setParameter(int key, const Parcel& request); |
| 204 | status_t getParameter(int key, Parcel* reply); |
| 205 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 206 | private: |
| 207 | void clear_l(); |
| 208 | status_t seekTo_l(int msec); |
| 209 | status_t prepareAsync_l(); |
| 210 | status_t getDuration_l(int *msec); |
Dave Burke | d681bbb | 2011-08-30 14:39:17 +0100 | [diff] [blame^] | 211 | status_t attachNewPlayer(const sp<IMediaPlayer>& player); |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 212 | void disconnectNativeWindow(); |
| 213 | status_t reset_l(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 214 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 215 | sp<IMediaPlayer> mPlayer; |
Jason Sams | 1af452f | 2009-03-24 18:45:22 -0700 | [diff] [blame] | 216 | thread_id_t mLockThreadId; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 217 | Mutex mLock; |
| 218 | Mutex mNotifyLock; |
| 219 | Condition mSignal; |
| 220 | sp<MediaPlayerListener> mListener; |
| 221 | void* mCookie; |
| 222 | media_player_states mCurrentState; |
| 223 | int mDuration; |
| 224 | int mCurrentPosition; |
| 225 | int mSeekPosition; |
| 226 | bool mPrepareSync; |
| 227 | status_t mPrepareStatus; |
| 228 | int mStreamType; |
| 229 | bool mLoop; |
| 230 | float mLeftVolume; |
| 231 | float mRightVolume; |
| 232 | int mVideoWidth; |
| 233 | int mVideoHeight; |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 234 | int mAudioSessionId; |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 235 | float mSendLevel; |
Jamie Gennis | 61c7ef5 | 2011-07-13 12:59:34 -0700 | [diff] [blame] | 236 | sp<ANativeWindow> mConnectedWindow; |
| 237 | sp<IBinder> mConnectedWindowBinder; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | }; // namespace android |
| 241 | |
| 242 | #endif // ANDROID_MEDIAPLAYER_H |