The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright (C) 2008 The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef ANDROID_MEDIAMETADATARETRIEVERSERVICE_H |
| 19 | #define ANDROID_MEDIAMETADATARETRIEVERSERVICE_H |
| 20 | |
Mathias Agopian | 3b4062e | 2009-05-31 19:13:00 -0700 | [diff] [blame] | 21 | #include <utils/Log.h> |
| 22 | #include <utils/threads.h> |
| 23 | #include <utils/List.h> |
| 24 | #include <utils/Errors.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | #include <utils/KeyedVector.h> |
Mathias Agopian | 0795272 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 26 | #include <binder/IMemory.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | |
| 28 | #include <media/MediaMetadataRetrieverInterface.h> |
| 29 | |
| 30 | |
| 31 | namespace android { |
| 32 | |
| 33 | class IMediaPlayerService; |
| 34 | class MemoryDealer; |
| 35 | |
| 36 | class MetadataRetrieverClient : public BnMediaMetadataRetriever |
| 37 | { |
| 38 | public: |
| 39 | MetadataRetrieverClient(const sp<IMediaPlayerService>& service, pid_t pid, int32_t connId); |
| 40 | |
| 41 | // Implements IMediaMetadataRetriever interface |
| 42 | // These methods are called in IMediaMetadataRetriever.cpp? |
| 43 | virtual void disconnect(); |
| 44 | virtual status_t setDataSource(const char *url); |
| 45 | virtual status_t setDataSource(int fd, int64_t offset, int64_t length); |
James Dong | 9efe473 | 2010-12-02 17:42:08 -0800 | [diff] [blame] | 46 | virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | virtual sp<IMemory> extractAlbumArt(); |
| 48 | virtual const char* extractMetadata(int keyCode); |
| 49 | |
| 50 | virtual status_t dump(int fd, const Vector<String16>& args) const; |
| 51 | |
| 52 | private: |
| 53 | friend class MediaPlayerService; |
| 54 | |
| 55 | explicit MetadataRetrieverClient(pid_t pid); |
| 56 | virtual ~MetadataRetrieverClient(); |
| 57 | |
| 58 | mutable Mutex mLock; |
| 59 | sp<MediaMetadataRetrieverBase> mRetriever; |
| 60 | pid_t mPid; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 61 | |
| 62 | // Keep the shared memory copy of album art and capture frame (for thumbnail) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | sp<IMemory> mAlbumArt; |
| 64 | sp<IMemory> mThumbnail; |
| 65 | }; |
| 66 | |
| 67 | }; // namespace android |
| 68 | |
| 69 | #endif // ANDROID_MEDIAMETADATARETRIEVERSERVICE_H |
| 70 | |