1 /* 2 * Copyright (c) 2023 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_video_capture_info_adapter_impl.h" 17 18 namespace OHOS::ArkWeb { ArkVideoCaptureInfoAdapterImpl(std::shared_ptr<OHOS::NWeb::VideoCaptureInfoAdapter> ref)19ArkVideoCaptureInfoAdapterImpl::ArkVideoCaptureInfoAdapterImpl(std::shared_ptr<OHOS::NWeb::VideoCaptureInfoAdapter> ref) 20 : real_(ref) 21 {} 22 GetDisplayId()23uint64_t ArkVideoCaptureInfoAdapterImpl::GetDisplayId() 24 { 25 return real_->GetDisplayId(); 26 } 27 GetTaskIDs()28ArkWebInt32List ArkVideoCaptureInfoAdapterImpl::GetTaskIDs() 29 { 30 std::list<int32_t> ids = real_->GetTaskIDs(); 31 return ArkWebBasicListClassToStruct<int32_t, ArkWebInt32List>(ids); 32 } 33 GetVideoFrameWidth()34int32_t ArkVideoCaptureInfoAdapterImpl::GetVideoFrameWidth() 35 { 36 return real_->GetVideoFrameWidth(); 37 } 38 GetVideoFrameHeight()39int32_t ArkVideoCaptureInfoAdapterImpl::GetVideoFrameHeight() 40 { 41 return real_->GetVideoFrameHeight(); 42 } 43 GetVideoSourceType()44int32_t ArkVideoCaptureInfoAdapterImpl::GetVideoSourceType() 45 { 46 return (int32_t)real_->GetVideoSourceType(); 47 } 48 49 } // namespace OHOS::ArkWeb 50