/* * Copyright (c) 2023 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 BASE_CONSTANTS_H #define BASE_CONSTANTS_H #include namespace OHOS { namespace IntellVoiceUtils { const int32_t H_PER_MIN = 60; const int32_t MIN_PER_S = 60; const int32_t S_PER_MS = 1000; const int32_t MS_PER_US = 1000; const int32_t US_PER_NS = 1000; const uint32_t MB_PER_KB = 1024; const uint32_t KB_PER_B = 1024; } } #endif