The Android Open Source Project | 89fa4ad | 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 | 273d098 | 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 | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | #include <utils/KeyedVector.h> |
Mathias Agopian | 7562408 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 26 | #include <binder/IMemory.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | |
| 28 | #include <media/MediaMetadataRetrieverInterface.h> |
| 29 | |
| 30 | |
| 31 | namespace android { |
| 32 | |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 33 | struct IMediaHTTPService; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | class IMediaPlayerService; |
| 35 | class MemoryDealer; |
| 36 | |
| 37 | class MetadataRetrieverClient : public BnMediaMetadataRetriever |
| 38 | { |
| 39 | public: |
| 40 | MetadataRetrieverClient(const sp<IMediaPlayerService>& service, pid_t pid, int32_t connId); |
| 41 | |
| 42 | // Implements IMediaMetadataRetriever interface |
| 43 | // These methods are called in IMediaMetadataRetriever.cpp? |
| 44 | virtual void disconnect(); |
Andreas Huber | af8791e | 2011-03-21 10:25:44 -0700 | [diff] [blame] | 45 | |
| 46 | virtual status_t setDataSource( |
Andreas Huber | 1b86fe0 | 2014-01-29 11:13:26 -0800 | [diff] [blame] | 47 | const sp<IMediaHTTPService> &httpService, |
| 48 | const char *url, |
| 49 | const KeyedVector<String8, String8> *headers); |
Andreas Huber | af8791e | 2011-03-21 10:25:44 -0700 | [diff] [blame] | 50 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 51 | virtual status_t setDataSource(int fd, int64_t offset, int64_t length); |
Chong Zhang | 24c1577 | 2017-07-26 16:25:28 -0700 | [diff] [blame] | 52 | virtual status_t setDataSource(const sp<IDataSource>& source, const char *mime); |
| 53 | virtual sp<IMemory> getFrameAtTime( |
| 54 | int64_t timeUs, int option, int colorFormat, bool metaOnly); |
Chong Zhang | d3e0d86 | 2017-10-03 13:17:13 -0700 | [diff] [blame] | 55 | virtual sp<IMemory> getImageAtIndex( |
Chong Zhang | d5fa357 | 2018-04-09 19:03:10 -0700 | [diff] [blame] | 56 | int index, int colorFormat, bool metaOnly, bool thumbnail); |
Chong Zhang | 0c1407f | 2018-05-02 17:09:05 -0700 | [diff] [blame^] | 57 | virtual sp<IMemory> getImageRectAtIndex( |
| 58 | int index, int colorFormat, int left, int top, int right, int bottom); |
Chong Zhang | d3e0d86 | 2017-10-03 13:17:13 -0700 | [diff] [blame] | 59 | virtual status_t getFrameAtIndex( |
| 60 | std::vector<sp<IMemory> > *frames, |
| 61 | int frameIndex, int numFrames, int colorFormat, bool metaOnly); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 62 | virtual sp<IMemory> extractAlbumArt(); |
| 63 | virtual const char* extractMetadata(int keyCode); |
| 64 | |
Lajos Molnar | 6d339f1 | 2015-04-17 16:15:53 -0700 | [diff] [blame] | 65 | virtual status_t dump(int fd, const Vector<String16>& args); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 66 | |
| 67 | private: |
| 68 | friend class MediaPlayerService; |
| 69 | |
| 70 | explicit MetadataRetrieverClient(pid_t pid); |
| 71 | virtual ~MetadataRetrieverClient(); |
| 72 | |
| 73 | mutable Mutex mLock; |
Marco Nelissen | 6155085 | 2015-06-12 15:31:23 -0700 | [diff] [blame] | 74 | static Mutex sLock; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 75 | sp<MediaMetadataRetrieverBase> mRetriever; |
| 76 | pid_t mPid; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 77 | |
Chong Zhang | f49d8f7 | 2018-05-02 12:31:57 -0700 | [diff] [blame] | 78 | // Keep the shared memory copy of album art |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 79 | sp<IMemory> mAlbumArt; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | }; // namespace android |
| 83 | |
| 84 | #endif // ANDROID_MEDIAMETADATARETRIEVERSERVICE_H |
| 85 | |