150a07fd2Sopenharmony_ci/* 250a07fd2Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd. 350a07fd2Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 450a07fd2Sopenharmony_ci * you may not use this file except in compliance with the License. 550a07fd2Sopenharmony_ci * You may obtain a copy of the License at 650a07fd2Sopenharmony_ci * 750a07fd2Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 850a07fd2Sopenharmony_ci * 950a07fd2Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 1050a07fd2Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 1150a07fd2Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1250a07fd2Sopenharmony_ci * See the License for the specific language governing permissions and 1350a07fd2Sopenharmony_ci * limitations under the License. 1450a07fd2Sopenharmony_ci */ 1550a07fd2Sopenharmony_ci 1650a07fd2Sopenharmony_ci#ifndef OHOS_DAUDIO_LATENCY_TEST_H 1750a07fd2Sopenharmony_ci#define OHOS_DAUDIO_LATENCY_TEST_H 1850a07fd2Sopenharmony_ci 1950a07fd2Sopenharmony_ci#include <vector> 2050a07fd2Sopenharmony_ci 2150a07fd2Sopenharmony_ci#include "single_instance.h" 2250a07fd2Sopenharmony_ci 2350a07fd2Sopenharmony_cinamespace OHOS { 2450a07fd2Sopenharmony_cinamespace DistributedHardware { 2550a07fd2Sopenharmony_ciclass DAudioLatencyTest { 2650a07fd2Sopenharmony_ciDECLARE_SINGLE_INSTANCE_BASE(DAudioLatencyTest); 2750a07fd2Sopenharmony_cipublic: 2850a07fd2Sopenharmony_ci int32_t AddPlayTime(const int64_t playBeepTime); 2950a07fd2Sopenharmony_ci int32_t AddRecordTime(const int64_t recordBeepTime); 3050a07fd2Sopenharmony_ci int64_t RecordBeepTime(const uint8_t *base, const int32_t &sizePerFrame, bool &status); 3150a07fd2Sopenharmony_ci bool IsFrameHigh(const int16_t *audioData, const int32_t size, int32_t threshhold); 3250a07fd2Sopenharmony_ci int32_t ComputeLatency(); 3350a07fd2Sopenharmony_ci 3450a07fd2Sopenharmony_ciprivate: 3550a07fd2Sopenharmony_ci DAudioLatencyTest(); 3650a07fd2Sopenharmony_ci ~DAudioLatencyTest(); 3750a07fd2Sopenharmony_ci 3850a07fd2Sopenharmony_ciprivate: 3950a07fd2Sopenharmony_ci constexpr static int32_t TWO_BEEP_TIME_INTERVAL = 900000; // 900ms 4050a07fd2Sopenharmony_ci constexpr static int32_t BEEP_THRESHHOLD = 8000; 4150a07fd2Sopenharmony_ci constexpr static int32_t US_PER_MS = 1000; 4250a07fd2Sopenharmony_ci std::vector<int64_t> playBeepTime_; 4350a07fd2Sopenharmony_ci std::vector<int64_t> captureBeepTime_; 4450a07fd2Sopenharmony_ci int64_t lastPlayTime_ = 0; 4550a07fd2Sopenharmony_ci int64_t lastRecordTime_ = 0; 4650a07fd2Sopenharmony_ci}; 4750a07fd2Sopenharmony_ci} 4850a07fd2Sopenharmony_ci} 4950a07fd2Sopenharmony_ci#endif