mirror of
https://github.com/team-infusion-developers/android_device_samsung_msm8976-common.git
synced 2024-11-07 06:19:20 +00:00
msm8976-common: Add libcamera_client shim
Change-Id: I4cc4eb52bc41e5174342e5571f096edb0e5a5c75
This commit is contained in:
parent
313cbb8738
commit
9fe4b83c29
6 changed files with 69 additions and 29 deletions
|
@ -33,3 +33,15 @@ LOCAL_MODULE_TAGS := optional
|
|||
|
||||
LOCAL_32_BIT_ONLY := true
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
CameraParameters.cpp
|
||||
|
||||
LOCAL_MODULE := libcamera_parameters_shim
|
||||
LOCAL_MODULE_CLASS := SHARED_LIBRARIES
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
LOCAL_32_BIT_ONLY := true
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
|
26
camera/CameraParameters.cpp
Normal file
26
camera/CameraParameters.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (C) 2017 The LineageOS 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.
|
||||
*/
|
||||
|
||||
#include "CameraParameters.h"
|
||||
|
||||
namespace android {
|
||||
|
||||
const char CameraParameters::KEY_OIS_SUPPORTED[] = "ois_supported";
|
||||
const char CameraParameters::KEY_SUPPORTED_EFFECT_PREVIEW_FPS_RANGE[] = "effect-available-fps-values";
|
||||
const char CameraParameters::PIXEL_FORMAT_YUV420SP_NV21[] = "yuv420sp";
|
||||
int CameraParameters::getInt64(const char *key) const { return -1; }
|
||||
|
||||
}; // namespace android
|
28
camera/CameraParameters.h
Normal file
28
camera/CameraParameters.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* Copyright (C) 2017 The LineageOS 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.
|
||||
*/
|
||||
|
||||
namespace android {
|
||||
|
||||
class CameraParameters
|
||||
{
|
||||
public:
|
||||
static const char KEY_OIS_SUPPORTED[];
|
||||
static const char KEY_SUPPORTED_EFFECT_PREVIEW_FPS_RANGE[];
|
||||
static const char PIXEL_FORMAT_YUV420SP_NV21[];
|
||||
int getInt64(const char *key) const;
|
||||
};
|
||||
|
||||
}; // namespace android
|
|
@ -1,27 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 2016 The LineageOS 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_OIS_SUPPORTED[] = "ois_supported"; \
|
||||
const char CameraParameters::KEY_SUPPORTED_EFFECT_PREVIEW_FPS_RANGE[] = "effect-available-fps-values"; \
|
||||
const char CameraParameters::PIXEL_FORMAT_YUV420SP_NV21[] = "yuv420sp"; \
|
||||
int CameraParameters::getInt64(const char *key) const { return -1; }
|
||||
|
||||
#define CAMERA_PARAMETERS_EXTRA_H \
|
||||
static const char KEY_OIS_SUPPORTED[]; \
|
||||
static const char KEY_SUPPORTED_EFFECT_PREVIEW_FPS_RANGE[]; \
|
||||
static const char PIXEL_FORMAT_YUV420SP_NV21[]; \
|
||||
int getInt64(const char *key) const;
|
|
@ -101,7 +101,8 @@ PRODUCT_COPY_FILES += \
|
|||
|
||||
# Camera
|
||||
PRODUCT_PACKAGES += \
|
||||
camera.msm8952
|
||||
camera.msm8952 \
|
||||
libcamera_parameters_shim
|
||||
|
||||
# Display
|
||||
PRODUCT_PACKAGES += \
|
||||
|
|
|
@ -34,7 +34,7 @@ on early-init
|
|||
chmod 0755 /sys/kernel/debug
|
||||
|
||||
on init
|
||||
export LD_SHIM_LIBS /system/vendor/lib64/libizat_core.so|libshims_get_process_name.so
|
||||
export LD_SHIM_LIBS /system/lib/libcamera_client.so|libcamera_parameters_shim.so:/system/vendor/lib64/libizat_core.so|libshims_get_process_name.so
|
||||
|
||||
# Support legacy paths
|
||||
symlink /sdcard /storage/sdcard0
|
||||
|
|
Loading…
Reference in a new issue