blob: c9198d6d143414dce299d1de79dbb2258fc883c4 [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 <ui/Surface.h>
22#include <media/IMediaPlayerClient.h>
23#include <media/IMediaPlayer.h>
James Dong34bbc222010-01-15 18:13:58 -080024#include <media/IMediaDeathNotifier.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
Andreas Huber25643002010-01-28 11:19:57 -080026#include <utils/KeyedVector.h>
27#include <utils/String8.h>
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029namespace android {
30
31enum media_event_type {
32 MEDIA_NOP = 0, // interface test message
33 MEDIA_PREPARED = 1,
34 MEDIA_PLAYBACK_COMPLETE = 2,
35 MEDIA_BUFFERING_UPDATE = 3,
36 MEDIA_SEEK_COMPLETE = 4,
37 MEDIA_SET_VIDEO_SIZE = 5,
38 MEDIA_ERROR = 100,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070039 MEDIA_INFO = 200,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040};
41
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070042// Generic error codes for the media player framework. Errors are fatal, the
43// playback must abort.
44//
45// Errors are communicated back to the client using the
46// MediaPlayerListener::notify method defined below.
47// In this situation, 'notify' is invoked with the following:
48// 'msg' is set to MEDIA_ERROR.
49// 'ext1' should be a value from the enum media_error_type.
50// 'ext2' contains an implementation dependant error code to provide
51// more details. Should default to 0 when not used.
52//
53// The codes are distributed as follow:
54// 0xx: Reserved
55// 1xx: Android Player errors. Something went wrong inside the MediaPlayer.
56// 2xx: Media errors (e.g Codec not supported). There is a problem with the
57// media itself.
58// 3xx: Runtime errors. Some extraordinary condition arose making the playback
59// impossible.
60//
61enum media_error_type {
62 // 0xx
63 MEDIA_ERROR_UNKNOWN = 1,
64 // 1xx
65 MEDIA_ERROR_SERVER_DIED = 100,
66 // 2xx
67 MEDIA_ERROR_NOT_VALID_FOR_PROGRESSIVE_PLAYBACK = 200,
68 // 3xx
69};
70
71
72// Info and warning codes for the media player framework. These are non fatal,
73// the playback is going on but there might be some user visible issues.
74//
75// Info and warning messages are communicated back to the client using the
76// MediaPlayerListener::notify method defined below. In this situation,
77// 'notify' is invoked with the following:
78// 'msg' is set to MEDIA_INFO.
79// 'ext1' should be a value from the enum media_info_type.
Ravi K Yenduri62e73f42009-06-21 17:19:58 -050080// 'ext2' contains an implementation dependant info code to provide
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070081// more details. Should default to 0 when not used.
82//
83// The codes are distributed as follow:
84// 0xx: Reserved
85// 7xx: Android Player info/warning (e.g player lagging behind.)
86// 8xx: Media info/warning (e.g media badly interleaved.)
Nicolas Catania32f82772009-06-11 16:33:49 -070087//
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070088enum media_info_type {
89 // 0xx
90 MEDIA_INFO_UNKNOWN = 1,
91 // 7xx
92 // The video is too complex for the decoder: it can't decode frames fast
93 // enough. Possibly only the audio plays fine at this stage.
94 MEDIA_INFO_VIDEO_TRACK_LAGGING = 700,
95 // 8xx
96 // Bad interleaving means that a media has been improperly interleaved or not
97 // interleaved at all, e.g has all the video samples first then all the audio
98 // ones. Video is playing but a lot of disk seek may be happening.
99 MEDIA_INFO_BAD_INTERLEAVING = 800,
100 // The media is not seekable (e.g live stream).
101 MEDIA_INFO_NOT_SEEKABLE = 801,
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700102 // New media metadata is available.
103 MEDIA_INFO_METADATA_UPDATE = 802,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700104};
105
106
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107
108enum media_player_states {
109 MEDIA_PLAYER_STATE_ERROR = 0,
110 MEDIA_PLAYER_IDLE = 1 << 0,
111 MEDIA_PLAYER_INITIALIZED = 1 << 1,
112 MEDIA_PLAYER_PREPARING = 1 << 2,
113 MEDIA_PLAYER_PREPARED = 1 << 3,
114 MEDIA_PLAYER_STARTED = 1 << 4,
115 MEDIA_PLAYER_PAUSED = 1 << 5,
116 MEDIA_PLAYER_STOPPED = 1 << 6,
117 MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7
118};
119
120// ----------------------------------------------------------------------------
121// ref-counted object for callbacks
122class MediaPlayerListener: virtual public RefBase
123{
124public:
125 virtual void notify(int msg, int ext1, int ext2) = 0;
126};
127
James Dong34bbc222010-01-15 18:13:58 -0800128class MediaPlayer : public BnMediaPlayerClient,
129 public virtual IMediaDeathNotifier
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130{
131public:
132 MediaPlayer();
133 ~MediaPlayer();
James Dong34bbc222010-01-15 18:13:58 -0800134 void died();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 void disconnect();
Andreas Huber25643002010-01-28 11:19:57 -0800136
137 status_t setDataSource(
138 const char *url,
139 const KeyedVector<String8, String8> *headers);
140
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 status_t setDataSource(int fd, int64_t offset, int64_t length);
142 status_t setVideoSurface(const sp<Surface>& surface);
143 status_t setListener(const sp<MediaPlayerListener>& listener);
144 status_t prepare();
145 status_t prepareAsync();
146 status_t start();
147 status_t stop();
148 status_t pause();
149 bool isPlaying();
150 status_t getVideoWidth(int *w);
151 status_t getVideoHeight(int *h);
152 status_t seekTo(int msec);
153 status_t getCurrentPosition(int *msec);
154 status_t getDuration(int *msec);
155 status_t reset();
156 status_t setAudioStreamType(int type);
157 status_t setLooping(int loop);
158 bool isLooping();
159 status_t setVolume(float leftVolume, float rightVolume);
160 void notify(int msg, int ext1, int ext2);
161 static sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
162 static sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
Marco Nelissenc39d2e32009-09-20 10:42:13 -0700163 static int snoop(short *data, int len, int kind);
Nicolas Catania20cb94e2009-05-12 23:25:55 -0700164 status_t invoke(const Parcel& request, Parcel *reply);
Nicolas Cataniab2c69392009-07-08 08:57:42 -0700165 status_t setMetadataFilter(const Parcel& filter);
Nicolas Catania5d55c712009-07-09 09:21:33 -0700166 status_t getMetadata(bool update_only, bool apply_filter, Parcel *metadata);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167private:
168 void clear_l();
169 status_t seekTo_l(int msec);
170 status_t prepareAsync_l();
171 status_t getDuration_l(int *msec);
172 status_t setDataSource(const sp<IMediaPlayer>& player);
173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 sp<IMediaPlayer> mPlayer;
Jason Samsebb020a2009-03-24 18:45:22 -0700175 thread_id_t mLockThreadId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 Mutex mLock;
177 Mutex mNotifyLock;
178 Condition mSignal;
179 sp<MediaPlayerListener> mListener;
180 void* mCookie;
181 media_player_states mCurrentState;
182 int mDuration;
183 int mCurrentPosition;
184 int mSeekPosition;
185 bool mPrepareSync;
186 status_t mPrepareStatus;
187 int mStreamType;
188 bool mLoop;
189 float mLeftVolume;
190 float mRightVolume;
191 int mVideoWidth;
192 int mVideoHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193};
194
195}; // namespace android
196
197#endif // ANDROID_MEDIAPLAYER_H