mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_sm6150-common
synced 2026-01-30 14:40:13 +00:00
17 lines
340 B
C++
17 lines
340 B
C++
/*
|
|
* Copyright (C) 2022 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <src/piex.h>
|
|
|
|
namespace piex {
|
|
|
|
Error GetPreviewImageData(StreamInterface* data,
|
|
PreviewImageData* preview_image_data) {
|
|
return GetPreviewImageData(data, preview_image_data, nullptr);
|
|
}
|
|
|
|
} // namespace piex
|