1 /* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "ohos_adapter/bridge/ark_audio_buffer_adapter_wrapper.h" 17 #include "base/bridge/ark_web_bridge_macros.h" 18 19 namespace OHOS::ArkWeb { 20 ArkAudioBufferAdapterWrapper(ArkWebRefPtr<ArkAudioBufferAdapter> ref)21ArkAudioBufferAdapterWrapper::ArkAudioBufferAdapterWrapper( 22 ArkWebRefPtr<ArkAudioBufferAdapter> ref) 23 : ctocpp_(ref) 24 {} 25 GetBuffer()26uint8_t* ArkAudioBufferAdapterWrapper::GetBuffer() 27 { 28 return (uint8_t*)ctocpp_->GetBuffer(); 29 } 30 GetLength()31int32_t ArkAudioBufferAdapterWrapper::GetLength() 32 { 33 return (int32_t)ctocpp_->GetLength(); 34 } 35 GetTimestamp()36int64_t ArkAudioBufferAdapterWrapper::GetTimestamp() 37 { 38 return (int64_t)ctocpp_->GetTimestamp(); 39 } 40 GetSourcetype()41NWeb::AudioCaptureSourceTypeAdapter ArkAudioBufferAdapterWrapper::GetSourcetype() 42 { 43 return (NWeb::AudioCaptureSourceTypeAdapter)ctocpp_->GetSourcetype(); 44 } 45 SetBuffer(uint8_t * buffer)46void ArkAudioBufferAdapterWrapper::SetBuffer(uint8_t* buffer) 47 { 48 ctocpp_->SetBuffer(buffer); 49 } 50 SetLength(int32_t length)51void ArkAudioBufferAdapterWrapper::SetLength(int32_t length) 52 { 53 ctocpp_->SetLength(length); 54 } 55 SetTimestamp(int64_t timestamp)56void ArkAudioBufferAdapterWrapper::SetTimestamp(int64_t timestamp) 57 { 58 ctocpp_->SetTimestamp(timestamp); 59 } 60 SetSourcetype(NWeb::AudioCaptureSourceTypeAdapter sourcetype)61void ArkAudioBufferAdapterWrapper::SetSourcetype(NWeb::AudioCaptureSourceTypeAdapter sourcetype) 62 { 63 ctocpp_->SetSourcetype((int32_t)sourcetype); 64 } 65 66 } // namespace OHOS::ArkWeb 67