klte-common: camera: Use wrapper parameters instead of CameraParameters

* Get inline with the lack of CameraParametersExtra.h
    support in AOSP, avoid using device header to inject
    additional parameters, especially with the introduction
    of Android.bp compilation for libcamera_client
    which ignores the device headers override

Change-Id: I754116f55ed32d54d1b1ad44407993137a07fb69
This commit is contained in:
Adrian DC 2017-09-05 20:03:00 -04:00 committed by Kevin F. Haggerty
parent dac4f861a3
commit 737bd8c396
2 changed files with 9 additions and 76 deletions

View File

@ -30,6 +30,12 @@
#include <utils/String8.h>
#include <utils/threads.h>
static const char KEY_DIS[] = "dis";
static const char DIS_DISABLE[] = "disable";
static const char KEY_ZSL[] = "zsl";
static const char ZSL_ON[] = "on";
static const char ZSL_OFF[] = "off";
#define BACK_CAMERA_ID 0
#define FRONT_CAMERA_ID 1
@ -190,10 +196,10 @@ static char *camera_fixup_setparams(int id, const char *settings)
if (!isTorch && !wasTorch) {
if (isVideo) {
params.set(CameraParameters::KEY_DIS, CameraParameters::DIS_DISABLE);
params.set(CameraParameters::KEY_ZSL, CameraParameters::ZSL_OFF);
params.set(KEY_DIS, DIS_DISABLE);
params.set(KEY_ZSL, ZSL_OFF);
} else {
params.set(CameraParameters::KEY_ZSL, CameraParameters::ZSL_ON);
params.set(KEY_ZSL, ZSL_ON);
}
}

View File

@ -1,73 +0,0 @@
/*
* Copyright (C) 2014 The CyanogenMod 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 CAMERA_PARAMETERS_EXTRA_C \
const char CameraParameters::KEY_DIS[] = "dis"; \
const char CameraParameters::DIS_DISABLE[] = "disable"; \
\
const char CameraParameters::KEY_DYNAMIC_RANGE_CONTROL[] = "dynamic-range-control"; \
const char CameraParameters::KEY_SUPPORTED_DYNAMIC_RANGE_CONTROL[] = "dynamic-range-control-values"; \
const char CameraParameters::DRC_ON[] = "on"; \
const char CameraParameters::DRC_OFF[] = "off"; \
\
const char CameraParameters::KEY_PHASE_AF[] = "phase-af"; \
const char CameraParameters::KEY_SUPPORTED_PHASE_AF[] = "phase-af-values"; \
const char CameraParameters::PAF_ON[] = "on"; \
const char CameraParameters::PAF_OFF[] = "off"; \
\
const char CameraParameters::KEY_RT_HDR[] = "rt-hdr"; \
const char CameraParameters::KEY_SUPPORTED_RT_HDR[] = "rt-hdr-values"; \
const char CameraParameters::RTHDR_ON[] = "on"; \
const char CameraParameters::RTHDR_OFF[] = "off"; \
\
const char CameraParameters::KEY_ZSL[] = "zsl"; \
const char CameraParameters::ZSL_ON[] = "on"; \
const char CameraParameters::ZSL_OFF[] = "off"; \
\
int CameraParameters::getInt64(__attribute__((__unused__)) const char *key) const { return -1; } \
\
/* LAST_LINE OF CAMERA_PARAMETERS_EXTRA_C, every line before this one *MUST* have
* a backslash \ at the end of the line or else everything will break.
*/
#define CAMERA_PARAMETERS_EXTRA_H \
static const char KEY_DIS[]; \
static const char DIS_DISABLE[]; \
\
static const char KEY_DYNAMIC_RANGE_CONTROL[]; \
static const char KEY_SUPPORTED_DYNAMIC_RANGE_CONTROL[]; \
static const char DRC_ON[]; \
static const char DRC_OFF[]; \
\
static const char KEY_PHASE_AF[]; \
static const char KEY_SUPPORTED_PHASE_AF[]; \
static const char PAF_ON[]; \
static const char PAF_OFF[]; \
\
static const char KEY_RT_HDR[]; \
static const char KEY_SUPPORTED_RT_HDR[]; \
static const char RTHDR_ON[]; \
static const char RTHDR_OFF[]; \
\
static const char KEY_ZSL[]; \
static const char ZSL_ON[]; \
static const char ZSL_OFF[]; \
\
int getInt64(const char *key) const; \
\
/* LAST_LINE OF CAMERA_PARAMETERS_EXTRA_H, every line before this one *MUST* have
* a backslash \ at the end of the line or else everything will break.
*/