12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * Copyright (C) 2015 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- //#define LOG_NDEBUG 0
- #define LOG_TAG "NdkCameraMetadata"
- #define ATRACE_TAG ATRACE_TAG_CAMERA
- #include <utils/Log.h>
- #include <utils/Trace.h>
- #include <camera/NdkCameraMetadata.h>
- #include "impl/ACameraMetadata.h"
- using namespace android;
- EXPORT
- camera_status_t ACameraMetadata_getConstEntry(
- const ACameraMetadata* acm, uint32_t tag, ACameraMetadata_const_entry* entry) {
- ATRACE_CALL();
- if (acm == nullptr || entry == nullptr) {
- ALOGE("%s: invalid argument! metadata %p, tag 0x%x, entry %p",
- __FUNCTION__, acm, tag, entry);
- return ACAMERA_ERROR_INVALID_PARAMETER;
- }
- return acm->getConstEntry(tag, entry);
- }
- EXPORT
- camera_status_t ACameraMetadata_getAllTags(
- const ACameraMetadata* acm, /*out*/int32_t* numTags, /*out*/const uint32_t** tags) {
- ATRACE_CALL();
- if (acm == nullptr || numTags == nullptr || tags == nullptr) {
- ALOGE("%s: invalid argument! metadata %p, numTags %p, tags %p",
- __FUNCTION__, acm, numTags, tags);
- return ACAMERA_ERROR_INVALID_PARAMETER;
- }
- return acm->getTags(numTags, tags);
- }
- EXPORT
- ACameraMetadata* ACameraMetadata_copy(const ACameraMetadata* src) {
- ATRACE_CALL();
- if (src == nullptr) {
- ALOGE("%s: src is null!", __FUNCTION__);
- return nullptr;
- }
- ACameraMetadata* copy = new ACameraMetadata(*src);
- copy->incStrong((void*) ACameraMetadata_copy);
- return copy;
- }
- EXPORT
- void ACameraMetadata_free(ACameraMetadata* metadata) {
- ATRACE_CALL();
- if (metadata != nullptr) {
- metadata->decStrong((void*) ACameraMetadata_free);
- }
- }
- EXPORT
- bool ACameraMetadata_isLogicalMultiCamera(const ACameraMetadata* staticMetadata,
- /*out*/size_t* numPhysicalCameras, /*out*/const char*const** physicalCameraIds) {
- ATRACE_CALL();
- if (numPhysicalCameras == nullptr || physicalCameraIds == nullptr) {
- ALOGE("%s: Invalid input: numPhysicalCameras %p, physicalCameraIds %p",
- __FUNCTION__, numPhysicalCameras, physicalCameraIds);
- return false;
- }
- if (staticMetadata == nullptr) {
- ALOGE("%s: Invalid input: staticMetadata is null.", __FUNCTION__);
- return false;
- }
- return staticMetadata->isLogicalMultiCamera(numPhysicalCameras, physicalCameraIds);
- }
|