/* * Copyright (C) 2021 Huawei Device Co., Ltd. * 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. */ #ifndef AVMETADATAHELPER_IMPL_H #define AVMETADATAHELPER_IMPL_H #include "avmetadatahelper.h" #include "nocopyable.h" #include "i_avmetadatahelper_service.h" #include "surface_buffer.h" #include #include #include #include #include #include #include #include #include namespace OHOS { namespace Media { class AVMetadataHelperImpl : public AVMetadataHelper, public NoCopyable { public: AVMetadataHelperImpl(); ~AVMetadataHelperImpl(); int32_t SetSource(const std::string &uri, int32_t usage) override; int32_t SetSource(int32_t fd, int64_t offset, int64_t size, int32_t usage) override; int32_t SetSource(const std::shared_ptr &dataSrc) override; std::string ResolveMetadata(int32_t key) override; std::unordered_map ResolveMetadata() override; std::shared_ptr GetAVMetadata() override; std::shared_ptr FetchArtPicture() override; std::shared_ptr FetchFrameAtTime(int64_t timeUs, int32_t option, const PixelMapParams ¶m) override; std::shared_ptr FetchFrameYuv(int64_t timeUs, int32_t option, const PixelMapParams ¶m) override; void Release() override; int32_t Init(); int32_t SetHelperCallback(const std::shared_ptr &callback) override; void SetScene(Scene scene) override; int32_t GetTimeByFrameIndex(uint32_t index, uint64_t &time) override; int32_t GetFrameIndexByTime(uint64_t time, uint32_t &index) override; void SetIsNapiInstance(bool isNapiInstance) override; private: struct PixelMapInfo { int32_t rotation = 0; PixelFormat pixelFormat = PixelFormat::NV12; bool isHdr = false; int32_t outputHeight = 0; }; static std::string GetLocalTime() { // time string : "year-month-day hour_minute_second.millisecond", ':' is not supported in windows file name auto now = std::chrono::system_clock::now(); auto ms = std::chrono::duration_cast(now.time_since_epoch()) % 1000; std::time_t t = std::chrono::system_clock::to_time_t(now); std::tm tmInfo = *std::localtime(&t); std::stringstream ss; int millSecondWidth = 3; ss << std::put_time(&tmInfo, "%Y-%m-%d %H_%M_%S.") << std::setfill('0') << std::setw(millSecondWidth) << ms.count(); return ss.str(); } std::shared_ptr avMetadataHelperService_ = nullptr; int32_t rotation_ = 0; bool isDump_ = false; static std::chrono::milliseconds cloneTimestamp; static std::chrono::milliseconds batchHandleTimestamp; void ReportSceneCode(Scene scene); sptr CopySurfaceBuffer(sptr &srcSurfaceBuffer); std::shared_ptr CreatePixelMapYuv(const std::shared_ptr &frameBuffer, PixelMapInfo &pixelMapInfo); std::shared_ptr CreatePixelMapFromAVShareMemory(const std::shared_ptr &frameBuffer, PixelMapInfo &pixelMapInfo, InitializationOptions &options); std::shared_ptr CreatePixelMapFromSurfaceBuffer(sptr &mySurfaceBuffer, PixelMapInfo &pixelMapInfo); void SetPixelMapYuvInfo(sptr &surfaceBuffer, std::shared_ptr pixelMap, PixelMapInfo &pixelMapInfo); std::string pixelFormatToString(PixelFormat pixelFormat); void CopySurfaceBufferInfo(sptr &source, sptr &dst); bool GetSbStaticMetadata(sptr &buffer, std::vector &staticMetadata); bool GetSbDynamicMetadata(sptr &buffer, std::vector &dynamicMetadata); bool SetSbStaticMetadata(sptr &buffer, const std::vector &staticMetadata); bool SetSbDynamicMetadata(sptr &buffer, const std::vector &dynamicMetadata); static void ScalePixelMap(std::shared_ptr &pixelMap, PixelMapInfo &info, const PixelMapParams ¶m); int32_t CopySurfaceBufferToPixelMap(sptr &SurfaceBuffer, std::shared_ptr pixelMap, PixelMapInfo &pixelMapInfo); int32_t SaveDataToFile(const std::string &fileName, const char *data, const size_t &totalSize); void InitDumpFlag(); int32_t DumpPixelMap(bool isDump, std::shared_ptr pixelMap, const std::string &fileName); int32_t DumpAVBuffer(bool isDump, const std::shared_ptr &frameBuffer, const std::string &fileName); }; } // namespace Media } // namespace OHOS #endif // AVMETADATAHELPER_IMPL_H