compat: libpiex_shim: Improve shim
Change-Id: Id11965102d7d5dce50f989c99810cda6a43aa1ec
This commit is contained in:
parent
b6e1983240
commit
861345fd7f
1 changed files with 9 additions and 11 deletions
|
@ -1,17 +1,15 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2022 The LineageOS Project
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
#include <src/piex.h>
|
#include <src/piex.h>
|
||||||
|
|
||||||
namespace piex {
|
namespace piex {
|
||||||
|
|
||||||
using image_type_recognition::RawImageTypes;
|
Error GetPreviewImageData(StreamInterface* data, PreviewImageData* preview_image_data) {
|
||||||
|
return GetPreviewImageData(data, preview_image_data, nullptr);
|
||||||
extern "C" void
|
|
||||||
_ZN4piex19GetPreviewImageDataEPNS_15StreamInterfaceEPNS_16PreviewImageDataEPNS_22image_type_recognition13RawImageTypesE(
|
|
||||||
StreamInterface* data, PreviewImageData* preview_image_data, RawImageTypes* output_type);
|
|
||||||
|
|
||||||
|
|
||||||
extern "C" void _ZN4piex19GetPreviewImageDataEPNS_15StreamInterfaceEPNS_16PreviewImageDataE(
|
|
||||||
StreamInterface* data, PreviewImageData* preview_image_data) {
|
|
||||||
return _ZN4piex19GetPreviewImageDataEPNS_15StreamInterfaceEPNS_16PreviewImageDataEPNS_22image_type_recognition13RawImageTypesE(data, preview_image_data, nullptr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace android
|
} // namespace piex
|
||||||
|
|
Loading…
Reference in a new issue