blob: e7da4884aee850bdb11c2a95467f14725096814e [file] [log] [blame]
Marco Nelissenb2487f02015-09-01 13:23:23 -07001/*
2 * Copyright (C) 2009 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//#define LOG_NDEBUG 0
18#define LOG_TAG "BpMediaSource"
19#include <utils/Log.h>
20
Marco Nelissenb65990f2015-11-09 15:39:49 -080021#include <inttypes.h>
Marco Nelissenb2487f02015-09-01 13:23:23 -070022#include <stdint.h>
23#include <sys/types.h>
24
25#include <binder/Parcel.h>
26#include <media/IMediaSource.h>
27#include <media/stagefright/MediaBuffer.h>
Wei Jiae9a5b962016-02-12 11:38:27 -080028#include <media/stagefright/MediaBufferGroup.h>
Dongwon Kangd91dc5a2017-10-10 00:07:09 -070029#include <media/MediaSource.h>
Marco Nelissenb2487f02015-09-01 13:23:23 -070030#include <media/stagefright/MetaData.h>
31
32namespace android {
33
34enum {
35 START = IBinder::FIRST_CALL_TRANSACTION,
36 STOP,
37 PAUSE,
38 GETFORMAT,
Andy Hungf59c0ba2016-06-15 17:59:30 -070039 // READ, deprecated
Wei Jia1f1fc452016-05-11 16:17:22 -070040 READMULTIPLE,
Andy Hungcdeb6602016-06-28 17:21:44 -070041 RELEASE_BUFFER,
42 SUPPORT_NONBLOCKING_READ,
Marco Nelissenb2487f02015-09-01 13:23:23 -070043};
44
Marco Nelissenb65990f2015-11-09 15:39:49 -080045enum {
46 NULL_BUFFER,
47 SHARED_BUFFER,
Andy Hungf59c0ba2016-06-15 17:59:30 -070048 INLINE_BUFFER,
49 SHARED_BUFFER_INDEX,
Marco Nelissenb65990f2015-11-09 15:39:49 -080050};
51
Marco Nelissenb65990f2015-11-09 15:39:49 -080052class RemoteMediaBufferWrapper : public MediaBuffer {
53public:
Andy Hungf59c0ba2016-06-15 17:59:30 -070054 RemoteMediaBufferWrapper(const sp<IMemory> &mem)
55 : MediaBuffer(mem) {
56 ALOGV("RemoteMediaBufferWrapper: creating %p", this);
57 }
58
Marco Nelissenb65990f2015-11-09 15:39:49 -080059protected:
Andy Hungf59c0ba2016-06-15 17:59:30 -070060 virtual ~RemoteMediaBufferWrapper() {
Andy Hung9bd3c9b2016-09-07 14:42:55 -070061 // Release our interest in the MediaBuffer's shared memory.
62 int32_t old = addRemoteRefcount(-1);
63 ALOGV("RemoteMediaBufferWrapper: releasing %p, refcount %d", this, old - 1);
Andy Hungf59c0ba2016-06-15 17:59:30 -070064 mMemory.clear(); // don't set the dead object flag.
65 }
Marco Nelissenb65990f2015-11-09 15:39:49 -080066};
67
Marco Nelissenb2487f02015-09-01 13:23:23 -070068class BpMediaSource : public BpInterface<IMediaSource> {
69public:
Chih-Hung Hsieh64a28702016-05-03 09:52:51 -070070 explicit BpMediaSource(const sp<IBinder>& impl)
Andy Hungf59c0ba2016-06-15 17:59:30 -070071 : BpInterface<IMediaSource>(impl), mBuffersSinceStop(0)
Marco Nelissenb2487f02015-09-01 13:23:23 -070072 {
73 }
74
75 virtual status_t start(MetaData *params) {
76 ALOGV("start");
77 Parcel data, reply;
78 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
79 if (params) {
80 params->writeToParcel(data);
81 }
82 status_t ret = remote()->transact(START, data, &reply);
83 if (ret == NO_ERROR && params) {
84 ALOGW("ignoring potentially modified MetaData from start");
85 ALOGW("input:");
86 params->dumpToLog();
87 sp<MetaData> meta = MetaData::createFromParcel(reply);
88 ALOGW("output:");
89 meta->dumpToLog();
90 }
91 return ret;
92 }
93
94 virtual status_t stop() {
95 ALOGV("stop");
96 Parcel data, reply;
97 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
Andy Hungf59c0ba2016-06-15 17:59:30 -070098 status_t status = remote()->transact(STOP, data, &reply);
99 mMemoryCache.reset();
100 mBuffersSinceStop = 0;
101 return status;
Marco Nelissenb2487f02015-09-01 13:23:23 -0700102 }
103
104 virtual sp<MetaData> getFormat() {
105 ALOGV("getFormat");
106 Parcel data, reply;
107 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
108 status_t ret = remote()->transact(GETFORMAT, data, &reply);
109 if (ret == NO_ERROR) {
110 mMetaData = MetaData::createFromParcel(reply);
111 return mMetaData;
112 }
113 return NULL;
114 }
115
Dongwon Kang1889c3e2018-02-01 13:44:57 -0800116 virtual status_t read(MediaBufferBase **buffer,
Dongwon Kangd91dc5a2017-10-10 00:07:09 -0700117 const MediaSource::ReadOptions *options) {
Dongwon Kang1889c3e2018-02-01 13:44:57 -0800118 Vector<MediaBufferBase *> buffers;
Andy Hungf59c0ba2016-06-15 17:59:30 -0700119 status_t ret = readMultiple(&buffers, 1 /* maxNumBuffers */, options);
120 *buffer = buffers.size() == 0 ? nullptr : buffers[0];
121 ALOGV("read status %d, bufferCount %u, sinceStop %u",
122 ret, *buffer != nullptr, mBuffersSinceStop);
Marco Nelissenb2487f02015-09-01 13:23:23 -0700123 return ret;
124 }
125
Andy Hungf59c0ba2016-06-15 17:59:30 -0700126 virtual status_t readMultiple(
Dongwon Kang1889c3e2018-02-01 13:44:57 -0800127 Vector<MediaBufferBase *> *buffers, uint32_t maxNumBuffers,
Dongwon Kangd91dc5a2017-10-10 00:07:09 -0700128 const MediaSource::ReadOptions *options) {
Wei Jia1f1fc452016-05-11 16:17:22 -0700129 ALOGV("readMultiple");
130 if (buffers == NULL || !buffers->isEmpty()) {
131 return BAD_VALUE;
132 }
133 Parcel data, reply;
134 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
135 data.writeUint32(maxNumBuffers);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700136 if (options != nullptr) {
137 data.writeByteArray(sizeof(*options), (uint8_t*) options);
138 }
Wei Jia1f1fc452016-05-11 16:17:22 -0700139 status_t ret = remote()->transact(READMULTIPLE, data, &reply);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700140 mMemoryCache.gc();
Wei Jia1f1fc452016-05-11 16:17:22 -0700141 if (ret != NO_ERROR) {
142 return ret;
143 }
144 // wrap the returned data in a vector of MediaBuffers
Andy Hungf59c0ba2016-06-15 17:59:30 -0700145 int32_t buftype;
146 uint32_t bufferCount = 0;
147 while ((buftype = reply.readInt32()) != NULL_BUFFER) {
148 LOG_ALWAYS_FATAL_IF(bufferCount >= maxNumBuffers,
149 "Received %u+ buffers and requested %u buffers",
150 bufferCount + 1, maxNumBuffers);
151 MediaBuffer *buf;
152 if (buftype == SHARED_BUFFER || buftype == SHARED_BUFFER_INDEX) {
153 uint64_t index = reply.readUint64();
154 ALOGV("Received %s index %llu",
155 buftype == SHARED_BUFFER ? "SHARED_BUFFER" : "SHARED_BUFFER_INDEX",
156 (unsigned long long) index);
157 sp<IMemory> mem;
158 if (buftype == SHARED_BUFFER) {
159 sp<IBinder> binder = reply.readStrongBinder();
160 mem = interface_cast<IMemory>(binder);
161 LOG_ALWAYS_FATAL_IF(mem.get() == nullptr,
162 "Received NULL IMemory for shared buffer");
163 mMemoryCache.insert(index, mem);
164 } else {
165 mem = mMemoryCache.lookup(index);
166 LOG_ALWAYS_FATAL_IF(mem.get() == nullptr,
167 "Received invalid IMemory index for shared buffer: %llu",
168 (unsigned long long)index);
169 }
170 size_t offset = reply.readInt32();
171 size_t length = reply.readInt32();
172 buf = new RemoteMediaBufferWrapper(mem);
173 buf->set_range(offset, length);
Marco Nelissen3d21ae32018-02-16 08:24:08 -0800174 buf->meta_data().updateFromParcel(reply);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700175 } else { // INLINE_BUFFER
176 int32_t len = reply.readInt32();
177 ALOGV("INLINE_BUFFER status %d and len %d", ret, len);
178 buf = new MediaBuffer(len);
179 reply.read(buf->data(), len);
Marco Nelissen3d21ae32018-02-16 08:24:08 -0800180 buf->meta_data().updateFromParcel(reply);
Wei Jia1f1fc452016-05-11 16:17:22 -0700181 }
Wei Jia1f1fc452016-05-11 16:17:22 -0700182 buffers->push_back(buf);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700183 ++bufferCount;
184 ++mBuffersSinceStop;
Wei Jia1f1fc452016-05-11 16:17:22 -0700185 }
186 ret = reply.readInt32();
Andy Hungf59c0ba2016-06-15 17:59:30 -0700187 ALOGV("readMultiple status %d, bufferCount %u, sinceStop %u",
188 ret, bufferCount, mBuffersSinceStop);
Marco Nelissenefa12512018-09-17 12:18:03 -0700189 if (bufferCount && ret == WOULD_BLOCK) {
190 ret = OK;
191 }
Wei Jia1f1fc452016-05-11 16:17:22 -0700192 return ret;
193 }
194
Andy Hungcdeb6602016-06-28 17:21:44 -0700195 // Binder proxy adds readMultiple support.
196 virtual bool supportReadMultiple() {
Wei Jiad3f4e142016-06-13 14:51:43 -0700197 return true;
198 }
199
Andy Hungcdeb6602016-06-28 17:21:44 -0700200 virtual bool supportNonblockingRead() {
201 ALOGV("supportNonblockingRead");
202 Parcel data, reply;
203 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
204 status_t ret = remote()->transact(SUPPORT_NONBLOCKING_READ, data, &reply);
205 if (ret == NO_ERROR) {
206 return reply.readInt32() != 0;
207 }
208 return false;
209 }
210
Marco Nelissenb2487f02015-09-01 13:23:23 -0700211 virtual status_t pause() {
212 ALOGV("pause");
213 Parcel data, reply;
214 data.writeInterfaceToken(BpMediaSource::getInterfaceDescriptor());
215 return remote()->transact(PAUSE, data, &reply);
216 }
217
Marco Nelissenb2487f02015-09-01 13:23:23 -0700218private:
Andy Hungf59c0ba2016-06-15 17:59:30 -0700219
220 uint32_t mBuffersSinceStop; // Buffer tracking variable
221
Marco Nelissenb2487f02015-09-01 13:23:23 -0700222 // NuPlayer passes pointers-to-metadata around, so we use this to keep the metadata alive
223 // XXX: could we use this for caching, or does metadata change on the fly?
224 sp<MetaData> mMetaData;
Marco Nelissene7d8e712016-03-14 09:29:42 -0700225
Andy Hungf59c0ba2016-06-15 17:59:30 -0700226 // Cache all IMemory objects received from MediaExtractor.
227 // We gc IMemory objects that are no longer active (referenced by a MediaBuffer).
228
229 struct MemoryCache {
230 sp<IMemory> lookup(uint64_t index) {
231 auto p = mIndexToMemory.find(index);
232 if (p == mIndexToMemory.end()) {
233 ALOGE("cannot find index!");
234 return nullptr;
235 }
236 return p->second;
237 }
238
239 void insert(uint64_t index, const sp<IMemory> &mem) {
240 if (mIndexToMemory.find(index) != mIndexToMemory.end()) {
241 ALOGE("index %llu already present", (unsigned long long)index);
242 return;
243 }
244 (void)mIndexToMemory.emplace(index, mem);
245 }
246
247 void reset() {
248 mIndexToMemory.clear();
249 }
250
251 void gc() {
252 for (auto it = mIndexToMemory.begin(); it != mIndexToMemory.end(); ) {
253 if (MediaBuffer::isDeadObject(it->second)) {
254 it = mIndexToMemory.erase(it);
255 } else {
256 ++it;
257 }
258 }
259 }
260 private:
261 // C++14 unordered_map erase on iterator is stable; C++11 has no guarantee.
262 std::map<uint64_t, sp<IMemory>> mIndexToMemory;
263 } mMemoryCache;
Marco Nelissenb2487f02015-09-01 13:23:23 -0700264};
265
266IMPLEMENT_META_INTERFACE(MediaSource, "android.media.IMediaSource");
267
268#undef LOG_TAG
269#define LOG_TAG "BnMediaSource"
270
Wei Jiae9a5b962016-02-12 11:38:27 -0800271BnMediaSource::BnMediaSource()
Andy Hungf59c0ba2016-06-15 17:59:30 -0700272 : mBuffersSinceStop(0)
273 , mGroup(new MediaBufferGroup(kBinderMediaBuffers /* growthLimit */)) {
Wei Jiae9a5b962016-02-12 11:38:27 -0800274}
275
276BnMediaSource::~BnMediaSource() {
Wei Jiae9a5b962016-02-12 11:38:27 -0800277}
278
Marco Nelissenb2487f02015-09-01 13:23:23 -0700279status_t BnMediaSource::onTransact(
280 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
281{
282 switch (code) {
283 case START: {
284 ALOGV("start");
285 CHECK_INTERFACE(IMediaSource, data, reply);
286 sp<MetaData> meta;
287 if (data.dataAvail()) {
288 meta = MetaData::createFromParcel(data);
289 }
290 status_t ret = start(meta.get());
291 if (ret == NO_ERROR && meta != NULL) {
292 meta->writeToParcel(*reply);
293 }
294 return ret;
295 }
296 case STOP: {
297 ALOGV("stop");
298 CHECK_INTERFACE(IMediaSource, data, reply);
Andy Hung9bd3c9b2016-09-07 14:42:55 -0700299 mGroup->signalBufferReturned(nullptr);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700300 status_t status = stop();
Andy Hungf59c0ba2016-06-15 17:59:30 -0700301 mIndexCache.reset();
302 mBuffersSinceStop = 0;
303 return status;
Marco Nelissenb2487f02015-09-01 13:23:23 -0700304 }
305 case PAUSE: {
306 ALOGV("pause");
307 CHECK_INTERFACE(IMediaSource, data, reply);
Andy Hung9bd3c9b2016-09-07 14:42:55 -0700308 mGroup->signalBufferReturned(nullptr);
Marco Nelissenb2487f02015-09-01 13:23:23 -0700309 return pause();
310 }
311 case GETFORMAT: {
312 ALOGV("getFormat");
313 CHECK_INTERFACE(IMediaSource, data, reply);
314 sp<MetaData> meta = getFormat();
315 if (meta != NULL) {
316 meta->writeToParcel(*reply);
317 return NO_ERROR;
318 }
319 return UNKNOWN_ERROR;
320 }
Wei Jia1f1fc452016-05-11 16:17:22 -0700321 case READMULTIPLE: {
Andy Hungf59c0ba2016-06-15 17:59:30 -0700322 ALOGV("readMultiple");
Wei Jia1f1fc452016-05-11 16:17:22 -0700323 CHECK_INTERFACE(IMediaSource, data, reply);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700324
325 // Get max number of buffers to read.
Wei Jia1f1fc452016-05-11 16:17:22 -0700326 uint32_t maxNumBuffers;
327 data.readUint32(&maxNumBuffers);
Wei Jia1f1fc452016-05-11 16:17:22 -0700328 if (maxNumBuffers > kMaxNumReadMultiple) {
329 maxNumBuffers = kMaxNumReadMultiple;
330 }
Andy Hungf59c0ba2016-06-15 17:59:30 -0700331
332 // Get read options, if any.
Dongwon Kangd91dc5a2017-10-10 00:07:09 -0700333 MediaSource::ReadOptions opts;
Andy Hungf59c0ba2016-06-15 17:59:30 -0700334 uint32_t len;
335 const bool useOptions =
336 data.readUint32(&len) == NO_ERROR
337 && len == sizeof(opts)
338 && data.read((void *)&opts, len) == NO_ERROR;
339
Andy Hung9bd3c9b2016-09-07 14:42:55 -0700340 mGroup->signalBufferReturned(nullptr);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700341 mIndexCache.gc();
Andy Hungcdeb6602016-06-28 17:21:44 -0700342 size_t inlineTransferSize = 0;
Andy Hungf59c0ba2016-06-15 17:59:30 -0700343 status_t ret = NO_ERROR;
344 uint32_t bufferCount = 0;
345 for (; bufferCount < maxNumBuffers; ++bufferCount, ++mBuffersSinceStop) {
346 MediaBuffer *buf = nullptr;
Dongwon Kang1889c3e2018-02-01 13:44:57 -0800347 ret = read((MediaBufferBase **)&buf, useOptions ? &opts : nullptr);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700348 opts.clearNonPersistent(); // Remove options that only apply to first buffer.
349 if (ret != NO_ERROR || buf == nullptr) {
Wei Jia1f1fc452016-05-11 16:17:22 -0700350 break;
351 }
352
Andy Hungf59c0ba2016-06-15 17:59:30 -0700353 // Even if we're using shared memory, we might not want to use it, since for small
354 // sizes it's faster to copy data through the Binder transaction
355 // On the other hand, if the data size is large enough, it's better to use shared
356 // memory. When data is too large, binder can't handle it.
357 //
358 // TODO: reduce MediaBuffer::kSharedMemThreshold
359 MediaBuffer *transferBuf = nullptr;
360 const size_t length = buf->range_length();
361 size_t offset = buf->range_offset();
Andy Hungcdeb6602016-06-28 17:21:44 -0700362 if (length >= (supportNonblockingRead() && buf->mMemory != nullptr ?
363 kTransferSharedAsSharedThreshold : kTransferInlineAsSharedThreshold)) {
Andy Hungf59c0ba2016-06-15 17:59:30 -0700364 if (buf->mMemory != nullptr) {
365 ALOGV("Use shared memory: %zu", length);
366 transferBuf = buf;
367 } else {
368 ALOGD("Large buffer %zu without IMemory!", length);
369 ret = mGroup->acquire_buffer(
Dongwon Kang1889c3e2018-02-01 13:44:57 -0800370 (MediaBufferBase **)&transferBuf, false /* nonBlocking */, length);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700371 if (ret != OK
372 || transferBuf == nullptr
373 || transferBuf->mMemory == nullptr) {
374 ALOGW("Failed to acquire shared memory, size %zu, ret %d",
375 length, ret);
376 if (transferBuf != nullptr) {
377 transferBuf->release();
378 transferBuf = nullptr;
379 }
380 // Current buffer transmit inline; no more additional buffers.
381 maxNumBuffers = 0;
382 } else {
383 memcpy(transferBuf->data(), (uint8_t*)buf->data() + offset, length);
384 offset = 0;
Andy Hungcdeb6602016-06-28 17:21:44 -0700385 if (!mGroup->has_buffers()) {
386 maxNumBuffers = 0; // No more MediaBuffers, stop readMultiple.
387 }
Andy Hungf59c0ba2016-06-15 17:59:30 -0700388 }
389 }
Wei Jia1f1fc452016-05-11 16:17:22 -0700390 }
Andy Hungf59c0ba2016-06-15 17:59:30 -0700391 if (transferBuf != nullptr) { // Using shared buffers.
yuedl188454e42017-03-13 18:07:26 +0800392 if (!transferBuf->isObserved() && transferBuf != buf) {
Andy Hungf59c0ba2016-06-15 17:59:30 -0700393 // Transfer buffer must be part of a MediaBufferGroup.
394 ALOGV("adding shared memory buffer %p to local group", transferBuf);
395 mGroup->add_buffer(transferBuf);
396 transferBuf->add_ref(); // We have already acquired buffer.
397 }
398 uint64_t index = mIndexCache.lookup(transferBuf->mMemory);
399 if (index == 0) {
400 index = mIndexCache.insert(transferBuf->mMemory);
401 reply->writeInt32(SHARED_BUFFER);
402 reply->writeUint64(index);
403 reply->writeStrongBinder(IInterface::asBinder(transferBuf->mMemory));
404 ALOGV("SHARED_BUFFER(%p) %llu",
405 transferBuf, (unsigned long long)index);
406 } else {
407 reply->writeInt32(SHARED_BUFFER_INDEX);
408 reply->writeUint64(index);
409 ALOGV("SHARED_BUFFER_INDEX(%p) %llu",
410 transferBuf, (unsigned long long)index);
411 }
412 reply->writeInt32(offset);
413 reply->writeInt32(length);
Marco Nelissen3d21ae32018-02-16 08:24:08 -0800414 buf->meta_data().writeToParcel(*reply);
Andy Hung9996d9d2016-09-15 18:19:49 -0700415 transferBuf->addRemoteRefcount(1);
416 if (transferBuf != buf) {
417 transferBuf->release(); // release local ref
418 } else if (!supportNonblockingRead()) {
419 maxNumBuffers = 0; // stop readMultiple with one shared buffer.
Andy Hungf59c0ba2016-06-15 17:59:30 -0700420 }
421 } else {
422 ALOGV_IF(buf->mMemory != nullptr,
423 "INLINE(%p) %zu shared mem available, but only %zu used",
424 buf, buf->mMemory->size(), length);
425 reply->writeInt32(INLINE_BUFFER);
426 reply->writeByteArray(length, (uint8_t*)buf->data() + offset);
Marco Nelissen3d21ae32018-02-16 08:24:08 -0800427 buf->meta_data().writeToParcel(*reply);
Andy Hungcdeb6602016-06-28 17:21:44 -0700428 inlineTransferSize += length;
429 if (inlineTransferSize > kInlineMaxTransfer) {
430 maxNumBuffers = 0; // stop readMultiple if inline transfer is too large.
431 }
Andy Hungf59c0ba2016-06-15 17:59:30 -0700432 }
Andy Hung9bd3c9b2016-09-07 14:42:55 -0700433 buf->release();
Wei Jia1f1fc452016-05-11 16:17:22 -0700434 }
Andy Hungf59c0ba2016-06-15 17:59:30 -0700435 reply->writeInt32(NULL_BUFFER); // Indicate no more MediaBuffers.
Wei Jia1f1fc452016-05-11 16:17:22 -0700436 reply->writeInt32(ret);
Andy Hungf59c0ba2016-06-15 17:59:30 -0700437 ALOGV("readMultiple status %d, bufferCount %u, sinceStop %u",
438 ret, bufferCount, mBuffersSinceStop);
Wei Jia1f1fc452016-05-11 16:17:22 -0700439 return NO_ERROR;
440 }
Andy Hungcdeb6602016-06-28 17:21:44 -0700441 case SUPPORT_NONBLOCKING_READ: {
442 ALOGV("supportNonblockingRead");
443 CHECK_INTERFACE(IMediaSource, data, reply);
444 reply->writeInt32((int32_t)supportNonblockingRead());
445 return NO_ERROR;
446 }
Marco Nelissenb2487f02015-09-01 13:23:23 -0700447 default:
448 return BBinder::onTransact(code, data, reply, flags);
449 }
450}
451
Marco Nelissenb2487f02015-09-01 13:23:23 -0700452} // namespace android
453