blob: be06e3387f4c79b1d0de6116e5de5e0430869798 [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_MEDIAPLAYERINTERFACE_H
18#define ANDROID_MEDIAPLAYERINTERFACE_H
19
20#ifdef __cplusplus
21
Nicolas Catania14d27472009-07-13 14:37:49 -070022#include <sys/types.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080023#include <ui/ISurface.h>
Nicolas Catania14d27472009-07-13 14:37:49 -070024#include <utils/Errors.h>
Andreas Huber2db84552010-01-28 11:19:57 -080025#include <utils/KeyedVector.h>
26#include <utils/String8.h>
27#include <utils/RefBase.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080028
29#include <media/mediaplayer.h>
30#include <media/AudioSystem.h>
nikoa64c8c72009-07-20 15:07:26 -070031#include <media/Metadata.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080032
33namespace android {
34
Nicolas Catania1d187f12009-05-12 23:25:55 -070035class Parcel;
nikod608a812009-07-16 16:39:53 -070036template<typename T> class SortedVector;
Nicolas Catania1d187f12009-05-12 23:25:55 -070037
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080038enum player_type {
39 PV_PLAYER = 1,
40 SONIVOX_PLAYER = 2,
Andreas Huber20111aa2009-07-14 16:56:47 -070041 VORBIS_PLAYER = 3,
Nicolas Catania14d27472009-07-13 14:37:49 -070042 STAGEFRIGHT_PLAYER = 4,
43 // Test players are available only in the 'test' and 'eng' builds.
44 // The shared library with the test player is passed passed as an
45 // argument to the 'test:' url in the setDataSource call.
46 TEST_PLAYER = 5,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080047};
48
Nicolas Catania1d187f12009-05-12 23:25:55 -070049
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080050#define DEFAULT_AUDIOSINK_BUFFERCOUNT 4
51#define DEFAULT_AUDIOSINK_BUFFERSIZE 1200
52#define DEFAULT_AUDIOSINK_SAMPLERATE 44100
53
54
55// callback mechanism for passing messages to MediaPlayer object
56typedef void (*notify_callback_f)(void* cookie, int msg, int ext1, int ext2);
57
58// abstract base class - use MediaPlayerInterface
59class MediaPlayerBase : public RefBase
60{
61public:
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080062 // AudioSink: abstraction layer for audio output
63 class AudioSink : public RefBase {
64 public:
Andreas Huber7d5b8a72010-02-09 16:59:18 -080065 // Callback returns the number of bytes actually written to the buffer.
66 typedef size_t (*AudioCallback)(
Andreas Huber20111aa2009-07-14 16:56:47 -070067 AudioSink *audioSink, void *buffer, size_t size, void *cookie);
68
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080069 virtual ~AudioSink() {}
70 virtual bool ready() const = 0; // audio output is open and ready
71 virtual bool realtime() const = 0; // audio output is real-time output
72 virtual ssize_t bufferSize() const = 0;
73 virtual ssize_t frameCount() const = 0;
74 virtual ssize_t channelCount() const = 0;
75 virtual ssize_t frameSize() const = 0;
76 virtual uint32_t latency() const = 0;
77 virtual float msecsPerFrame() const = 0;
Eric Laurent342e9cf2010-01-19 17:37:09 -080078 virtual status_t getPosition(uint32_t *position) = 0;
Andreas Huber20111aa2009-07-14 16:56:47 -070079
80 // If no callback is specified, use the "write" API below to submit
Andreas Huber7d5b8a72010-02-09 16:59:18 -080081 // audio data.
Andreas Huber20111aa2009-07-14 16:56:47 -070082 virtual status_t open(
83 uint32_t sampleRate, int channelCount,
84 int format=AudioSystem::PCM_16_BIT,
85 int bufferCount=DEFAULT_AUDIOSINK_BUFFERCOUNT,
86 AudioCallback cb = NULL,
87 void *cookie = NULL) = 0;
88
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080089 virtual void start() = 0;
90 virtual ssize_t write(const void* buffer, size_t size) = 0;
91 virtual void stop() = 0;
92 virtual void flush() = 0;
93 virtual void pause() = 0;
94 virtual void close() = 0;
95 };
96
97 MediaPlayerBase() : mCookie(0), mNotify(0) {}
98 virtual ~MediaPlayerBase() {}
99 virtual status_t initCheck() = 0;
100 virtual bool hardwareOutput() = 0;
Andreas Huber2db84552010-01-28 11:19:57 -0800101
102 virtual status_t setDataSource(
103 const char *url,
104 const KeyedVector<String8, String8> *headers = NULL) = 0;
105
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800106 virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
107 virtual status_t setVideoSurface(const sp<ISurface>& surface) = 0;
108 virtual status_t prepare() = 0;
109 virtual status_t prepareAsync() = 0;
110 virtual status_t start() = 0;
111 virtual status_t stop() = 0;
112 virtual status_t pause() = 0;
113 virtual bool isPlaying() = 0;
114 virtual status_t seekTo(int msec) = 0;
115 virtual status_t getCurrentPosition(int *msec) = 0;
116 virtual status_t getDuration(int *msec) = 0;
117 virtual status_t reset() = 0;
118 virtual status_t setLooping(int loop) = 0;
119 virtual player_type playerType() = 0;
120 virtual void setNotifyCallback(void* cookie, notify_callback_f notifyFunc) {
121 mCookie = cookie; mNotify = notifyFunc; }
Nicolas Catania1d187f12009-05-12 23:25:55 -0700122 // Invoke a generic method on the player by using opaque parcels
123 // for the request and reply.
nikod608a812009-07-16 16:39:53 -0700124 //
Nicolas Catania1d187f12009-05-12 23:25:55 -0700125 // @param request Parcel that is positioned at the start of the
126 // data sent by the java layer.
127 // @param[out] reply Parcel to hold the reply data. Cannot be null.
nikod608a812009-07-16 16:39:53 -0700128 // @return OK if the call was successful.
Nicolas Catania1d187f12009-05-12 23:25:55 -0700129 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
nikod608a812009-07-16 16:39:53 -0700130
131 // The Client in the MetadataPlayerService calls this method on
132 // the native player to retrieve all or a subset of metadata.
133 //
134 // @param ids SortedList of metadata ID to be fetch. If empty, all
135 // the known metadata should be returned.
136 // @param[inout] records Parcel where the player appends its metadata.
137 // @return OK if the call was successful.
nikoa64c8c72009-07-20 15:07:26 -0700138 virtual status_t getMetadata(const media::Metadata::Filter& ids,
139 Parcel *records) {
140 return INVALID_OPERATION;
141 };
nikod608a812009-07-16 16:39:53 -0700142
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800143 virtual void sendEvent(int msg, int ext1=0, int ext2=0) { if (mNotify) mNotify(mCookie, msg, ext1, ext2); }
144
Andreas Huberbfa6b2d2009-11-20 09:32:46 -0800145protected:
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800146 void* mCookie;
147 notify_callback_f mNotify;
148};
149
150// Implement this class for media players that use the AudioFlinger software mixer
151class MediaPlayerInterface : public MediaPlayerBase
152{
153public:
154 virtual ~MediaPlayerInterface() { }
155 virtual bool hardwareOutput() { return false; }
156 virtual void setAudioSink(const sp<AudioSink>& audioSink) { mAudioSink = audioSink; }
157protected:
158 sp<AudioSink> mAudioSink;
159};
160
161// Implement this class for media players that output directo to hardware
162class MediaPlayerHWInterface : public MediaPlayerBase
163{
164public:
165 virtual ~MediaPlayerHWInterface() {}
166 virtual bool hardwareOutput() { return true; }
167 virtual status_t setVolume(float leftVolume, float rightVolume) = 0;
168 virtual status_t setAudioStreamType(int streamType) = 0;
169};
170
171}; // namespace android
172
173#endif // __cplusplus
174
175
176#endif // ANDROID_MEDIAPLAYERINTERFACE_H