Ivan Lozano | c0ad82f | 2020-07-30 09:32:57 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014-2018 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_TAG "Camera3-FakeStream" |
| 18 | #define ATRACE_TAG ATRACE_TAG_CAMERA |
| 19 | //#define LOG_NDEBUG 0 |
| 20 | |
| 21 | #include <utils/Log.h> |
| 22 | #include <utils/Trace.h> |
| 23 | #include "Camera3FakeStream.h" |
| 24 | |
| 25 | namespace android { |
| 26 | |
| 27 | namespace camera3 { |
| 28 | |
| 29 | const String8 Camera3FakeStream::FAKE_ID; |
| 30 | |
| 31 | Camera3FakeStream::Camera3FakeStream(int id) : |
| 32 | Camera3IOStreamBase(id, CAMERA3_STREAM_OUTPUT, FAKE_WIDTH, FAKE_HEIGHT, |
| 33 | /*maxSize*/0, FAKE_FORMAT, FAKE_DATASPACE, FAKE_ROTATION, |
| 34 | FAKE_ID) { |
| 35 | |
| 36 | } |
| 37 | |
| 38 | Camera3FakeStream::~Camera3FakeStream() { |
| 39 | |
| 40 | } |
| 41 | |
| 42 | status_t Camera3FakeStream::getBufferLocked(camera3_stream_buffer *, |
| 43 | const std::vector<size_t>&) { |
| 44 | ATRACE_CALL(); |
| 45 | ALOGE("%s: Stream %d: Fake stream cannot produce buffers!", __FUNCTION__, mId); |
| 46 | return INVALID_OPERATION; |
| 47 | } |
| 48 | |
| 49 | status_t Camera3FakeStream::returnBufferLocked( |
| 50 | const camera3_stream_buffer &, |
| 51 | nsecs_t, const std::vector<size_t>&) { |
| 52 | ATRACE_CALL(); |
| 53 | ALOGE("%s: Stream %d: Fake stream cannot return buffers!", __FUNCTION__, mId); |
| 54 | return INVALID_OPERATION; |
| 55 | } |
| 56 | |
| 57 | status_t Camera3FakeStream::returnBufferCheckedLocked( |
| 58 | const camera3_stream_buffer &, |
| 59 | nsecs_t, |
| 60 | bool, |
| 61 | const std::vector<size_t>&, |
| 62 | /*out*/ |
| 63 | sp<Fence>*) { |
| 64 | ATRACE_CALL(); |
| 65 | ALOGE("%s: Stream %d: Fake stream cannot return buffers!", __FUNCTION__, mId); |
| 66 | return INVALID_OPERATION; |
| 67 | } |
| 68 | |
| 69 | void Camera3FakeStream::dump(int fd, const Vector<String16> &args) const { |
| 70 | (void) args; |
| 71 | String8 lines; |
| 72 | lines.appendFormat(" Stream[%d]: Fake\n", mId); |
| 73 | write(fd, lines.string(), lines.size()); |
| 74 | |
| 75 | Camera3IOStreamBase::dump(fd, args); |
| 76 | } |
| 77 | |
| 78 | status_t Camera3FakeStream::setTransform(int) { |
| 79 | ATRACE_CALL(); |
| 80 | // Do nothing |
| 81 | return OK; |
| 82 | } |
| 83 | |
| 84 | status_t Camera3FakeStream::detachBuffer(sp<GraphicBuffer>* buffer, int* fenceFd) { |
| 85 | (void) buffer; |
| 86 | (void) fenceFd; |
| 87 | // Do nothing |
| 88 | return OK; |
| 89 | } |
| 90 | |
| 91 | status_t Camera3FakeStream::configureQueueLocked() { |
| 92 | // Do nothing |
| 93 | return OK; |
| 94 | } |
| 95 | |
| 96 | status_t Camera3FakeStream::disconnectLocked() { |
| 97 | mState = (mState == STATE_IN_RECONFIG) ? STATE_IN_CONFIG |
| 98 | : STATE_CONSTRUCTED; |
| 99 | return OK; |
| 100 | } |
| 101 | |
| 102 | status_t Camera3FakeStream::getEndpointUsage(uint64_t *usage) const { |
| 103 | *usage = FAKE_USAGE; |
| 104 | return OK; |
| 105 | } |
| 106 | |
| 107 | bool Camera3FakeStream::isVideoStream() const { |
| 108 | return false; |
| 109 | } |
| 110 | |
| 111 | bool Camera3FakeStream::isConsumerConfigurationDeferred(size_t /*surface_id*/) const { |
| 112 | return false; |
| 113 | } |
| 114 | |
| 115 | status_t Camera3FakeStream::dropBuffers(bool /*dropping*/) { |
| 116 | return OK; |
| 117 | } |
| 118 | |
| 119 | const String8& Camera3FakeStream::getPhysicalCameraId() const { |
| 120 | return FAKE_ID; |
| 121 | } |
| 122 | |
| 123 | status_t Camera3FakeStream::setConsumers(const std::vector<sp<Surface>>& /*consumers*/) { |
| 124 | ALOGE("%s: Stream %d: Fake stream doesn't support set consumer surface!", |
| 125 | __FUNCTION__, mId); |
| 126 | return INVALID_OPERATION; |
| 127 | } |
| 128 | |
| 129 | status_t Camera3FakeStream::updateStream(const std::vector<sp<Surface>> &/*outputSurfaces*/, |
| 130 | const std::vector<OutputStreamInfo> &/*outputInfo*/, |
| 131 | const std::vector<size_t> &/*removedSurfaceIds*/, |
| 132 | KeyedVector<sp<Surface>, size_t> * /*outputMap*/) { |
| 133 | ALOGE("%s: this method is not supported!", __FUNCTION__); |
| 134 | return INVALID_OPERATION; |
| 135 | } |
| 136 | |
| 137 | }; // namespace camera3 |
| 138 | |
| 139 | }; // namespace android |