blob: 36629836b52ab56ccca01a3e36c3620fda8d4610 [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_MEDIAPLAYERINTERFACE_H
18#define ANDROID_MEDIAPLAYERINTERFACE_H
19
20#ifdef __cplusplus
21
Nicolas Catania8f5fcab2009-07-13 14:37:49 -070022#include <sys/types.h>
Nicolas Catania8f5fcab2009-07-13 14:37:49 -070023#include <utils/Errors.h>
Andreas Huber25643002010-01-28 11:19:57 -080024#include <utils/KeyedVector.h>
25#include <utils/String8.h>
26#include <utils/RefBase.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28#include <media/mediaplayer.h>
29#include <media/AudioSystem.h>
nikobc726922009-07-20 15:07:26 -070030#include <media/Metadata.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
32namespace android {
33
Nicolas Catania20cb94e2009-05-12 23:25:55 -070034class Parcel;
Mathias Agopian000479f2010-02-09 17:46:37 -080035class ISurface;
36
niko89948372009-07-16 16:39:53 -070037template<typename T> class SortedVector;
Nicolas Catania20cb94e2009-05-12 23:25:55 -070038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039enum player_type {
40 PV_PLAYER = 1,
41 SONIVOX_PLAYER = 2,
Nicolas Catania8f5fcab2009-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 Project9066cfe2009-03-03 19:31:44 -080047};
48
Nicolas Catania20cb94e2009-05-12 23:25:55 -070049
The Android Open Source Project9066cfe2009-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 Project9066cfe2009-03-03 19:31:44 -080062 // AudioSink: abstraction layer for audio output
63 class AudioSink : public RefBase {
64 public:
Andreas Huber6ed937e2010-02-09 16:59:18 -080065 // Callback returns the number of bytes actually written to the buffer.
66 typedef size_t (*AudioCallback)(
Andreas Hubere46b7be2009-07-14 16:56:47 -070067 AudioSink *audioSink, void *buffer, size_t size, void *cookie);
68
The Android Open Source Project9066cfe2009-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 Laurent0986e792010-01-19 17:37:09 -080078 virtual status_t getPosition(uint32_t *position) = 0;
Andreas Hubere46b7be2009-07-14 16:56:47 -070079
80 // If no callback is specified, use the "write" API below to submit
Andreas Huber6ed937e2010-02-09 16:59:18 -080081 // audio data.
Andreas Hubere46b7be2009-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 Project9066cfe2009-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 Huber25643002010-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 Project9066cfe2009-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;
Andreas Huberfbb38852010-02-12 12:35:58 -0800120 virtual status_t suspend() { return INVALID_OPERATION; }
121 virtual status_t resume() { return INVALID_OPERATION; }
122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 virtual void setNotifyCallback(void* cookie, notify_callback_f notifyFunc) {
124 mCookie = cookie; mNotify = notifyFunc; }
Nicolas Catania20cb94e2009-05-12 23:25:55 -0700125 // Invoke a generic method on the player by using opaque parcels
126 // for the request and reply.
niko89948372009-07-16 16:39:53 -0700127 //
Nicolas Catania20cb94e2009-05-12 23:25:55 -0700128 // @param request Parcel that is positioned at the start of the
129 // data sent by the java layer.
130 // @param[out] reply Parcel to hold the reply data. Cannot be null.
niko89948372009-07-16 16:39:53 -0700131 // @return OK if the call was successful.
Nicolas Catania20cb94e2009-05-12 23:25:55 -0700132 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
niko89948372009-07-16 16:39:53 -0700133
134 // The Client in the MetadataPlayerService calls this method on
135 // the native player to retrieve all or a subset of metadata.
136 //
137 // @param ids SortedList of metadata ID to be fetch. If empty, all
138 // the known metadata should be returned.
139 // @param[inout] records Parcel where the player appends its metadata.
140 // @return OK if the call was successful.
nikobc726922009-07-20 15:07:26 -0700141 virtual status_t getMetadata(const media::Metadata::Filter& ids,
142 Parcel *records) {
143 return INVALID_OPERATION;
144 };
niko89948372009-07-16 16:39:53 -0700145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 virtual void sendEvent(int msg, int ext1=0, int ext2=0) { if (mNotify) mNotify(mCookie, msg, ext1, ext2); }
147
Andreas Huber27366fc2009-11-20 09:32:46 -0800148protected:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 void* mCookie;
150 notify_callback_f mNotify;
151};
152
153// Implement this class for media players that use the AudioFlinger software mixer
154class MediaPlayerInterface : public MediaPlayerBase
155{
156public:
157 virtual ~MediaPlayerInterface() { }
158 virtual bool hardwareOutput() { return false; }
159 virtual void setAudioSink(const sp<AudioSink>& audioSink) { mAudioSink = audioSink; }
160protected:
161 sp<AudioSink> mAudioSink;
162};
163
164// Implement this class for media players that output directo to hardware
165class MediaPlayerHWInterface : public MediaPlayerBase
166{
167public:
168 virtual ~MediaPlayerHWInterface() {}
169 virtual bool hardwareOutput() { return true; }
170 virtual status_t setVolume(float leftVolume, float rightVolume) = 0;
171 virtual status_t setAudioStreamType(int streamType) = 0;
172};
173
174}; // namespace android
175
176#endif // __cplusplus
177
178
179#endif // ANDROID_MEDIAPLAYERINTERFACE_H