| 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_MEDIAPLAYERINTERFACE_H | 
 | 18 | #define ANDROID_MEDIAPLAYERINTERFACE_H | 
 | 19 |  | 
 | 20 | #ifdef __cplusplus | 
 | 21 |  | 
| Nicolas Catania | 14d2747 | 2009-07-13 14:37:49 -0700 | [diff] [blame] | 22 | #include <sys/types.h> | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include <ui/ISurface.h> | 
| Nicolas Catania | 14d2747 | 2009-07-13 14:37:49 -0700 | [diff] [blame] | 24 | #include <utils/Errors.h> | 
| Andreas Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 25 | #include <utils/KeyedVector.h> | 
 | 26 | #include <utils/String8.h> | 
 | 27 | #include <utils/RefBase.h> | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 |  | 
 | 29 | #include <media/mediaplayer.h> | 
 | 30 | #include <media/AudioSystem.h> | 
| niko | a64c8c7 | 2009-07-20 15:07:26 -0700 | [diff] [blame] | 31 | #include <media/Metadata.h> | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 32 |  | 
 | 33 | namespace android { | 
 | 34 |  | 
| Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 35 | class Parcel; | 
| niko | d608a81 | 2009-07-16 16:39:53 -0700 | [diff] [blame] | 36 | template<typename T> class SortedVector; | 
| Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 37 |  | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | enum player_type { | 
 | 39 |     PV_PLAYER = 1, | 
 | 40 |     SONIVOX_PLAYER = 2, | 
| Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 41 |     VORBIS_PLAYER = 3, | 
| Nicolas Catania | 14d2747 | 2009-07-13 14:37:49 -0700 | [diff] [blame] | 42 |     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 Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | }; | 
 | 48 |  | 
| Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 49 |  | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | #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 | 
 | 56 | typedef void (*notify_callback_f)(void* cookie, int msg, int ext1, int ext2); | 
 | 57 |  | 
 | 58 | // abstract base class - use MediaPlayerInterface | 
 | 59 | class MediaPlayerBase : public RefBase | 
 | 60 | { | 
 | 61 | public: | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 62 |     // AudioSink: abstraction layer for audio output | 
 | 63 |     class AudioSink : public RefBase { | 
 | 64 |     public: | 
| Andreas Huber | 7d5b8a7 | 2010-02-09 16:59:18 -0800 | [diff] [blame^] | 65 |         // Callback returns the number of bytes actually written to the buffer. | 
 | 66 |         typedef size_t (*AudioCallback)( | 
| Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 67 |                 AudioSink *audioSink, void *buffer, size_t size, void *cookie); | 
 | 68 |  | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 69 |         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 Laurent | 342e9cf | 2010-01-19 17:37:09 -0800 | [diff] [blame] | 78 |         virtual status_t    getPosition(uint32_t *position) = 0; | 
| Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 79 |  | 
 | 80 |         // If no callback is specified, use the "write" API below to submit | 
| Andreas Huber | 7d5b8a7 | 2010-02-09 16:59:18 -0800 | [diff] [blame^] | 81 |         // audio data. | 
| Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 82 |         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 Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 89 |         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 Huber | 2db8455 | 2010-01-28 11:19:57 -0800 | [diff] [blame] | 101 |  | 
 | 102 |     virtual status_t    setDataSource( | 
 | 103 |             const char *url, | 
 | 104 |             const KeyedVector<String8, String8> *headers = NULL) = 0; | 
 | 105 |  | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 106 |     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 Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 122 |     // Invoke a generic method on the player by using opaque parcels | 
 | 123 |     // for the request and reply. | 
| niko | d608a81 | 2009-07-16 16:39:53 -0700 | [diff] [blame] | 124 |     // | 
| Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 125 |     // @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. | 
| niko | d608a81 | 2009-07-16 16:39:53 -0700 | [diff] [blame] | 128 |     // @return OK if the call was successful. | 
| Nicolas Catania | 1d187f1 | 2009-05-12 23:25:55 -0700 | [diff] [blame] | 129 |     virtual status_t    invoke(const Parcel& request, Parcel *reply) = 0; | 
| niko | d608a81 | 2009-07-16 16:39:53 -0700 | [diff] [blame] | 130 |  | 
 | 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. | 
| niko | a64c8c7 | 2009-07-20 15:07:26 -0700 | [diff] [blame] | 138 |     virtual status_t    getMetadata(const media::Metadata::Filter& ids, | 
 | 139 |                                     Parcel *records) { | 
 | 140 |         return INVALID_OPERATION; | 
 | 141 |     }; | 
| niko | d608a81 | 2009-07-16 16:39:53 -0700 | [diff] [blame] | 142 |  | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 143 |     virtual void        sendEvent(int msg, int ext1=0, int ext2=0) { if (mNotify) mNotify(mCookie, msg, ext1, ext2); } | 
 | 144 |  | 
| Andreas Huber | bfa6b2d | 2009-11-20 09:32:46 -0800 | [diff] [blame] | 145 | protected: | 
| The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 146 |     void*               mCookie; | 
 | 147 |     notify_callback_f   mNotify; | 
 | 148 | }; | 
 | 149 |  | 
 | 150 | // Implement this class for media players that use the AudioFlinger software mixer | 
 | 151 | class MediaPlayerInterface : public MediaPlayerBase | 
 | 152 | { | 
 | 153 | public: | 
 | 154 |     virtual             ~MediaPlayerInterface() { } | 
 | 155 |     virtual bool        hardwareOutput() { return false; } | 
 | 156 |     virtual void        setAudioSink(const sp<AudioSink>& audioSink) { mAudioSink = audioSink; } | 
 | 157 | protected: | 
 | 158 |     sp<AudioSink>       mAudioSink; | 
 | 159 | }; | 
 | 160 |  | 
 | 161 | // Implement this class for media players that output directo to hardware | 
 | 162 | class MediaPlayerHWInterface : public MediaPlayerBase | 
 | 163 | { | 
 | 164 | public: | 
 | 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 |