/* * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved * * 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. */ using System; using System.Diagnostics; using NativeWebRTC = Interop.NativeWebRTC; namespace Tizen.Multimedia.Remoting { /// /// Represents a camera source. /// /// The camera privilege(http://tizen.org/privilege/camera) is required. /// /// /// 9 public sealed class MediaCameraSource : MediaSource { /// /// Initializes a new instance of the class. /// /// 9 public MediaCameraSource() : base(MediaType.Video) {} /// /// Gets or sets the camera device id. /// /// A value that specifies the camera device id. /// MediaSource is not attached yet. /// The WebRTC has already been disposed. /// 10 public uint CameraDeviceId { get { if (!SourceId.HasValue) { throw new InvalidOperationException("MediaSource is not attached yet. Call AddSource() first."); } NativeWebRTC.GetCameraDeviceId(WebRtc.Handle, SourceId.Value, out uint deviceId). ThrowIfFailed("Failed to get camera device id"); return deviceId; } set { if (!SourceId.HasValue) { throw new InvalidOperationException("MediaSource is not attached yet. Call AddSource() first."); } NativeWebRTC.SetCameraDeviceId(WebRtc.Handle, SourceId.Value, value). ThrowIfFailed("Failed to set camera device id"); } } internal override void OnAttached(WebRTC webRtc) { Debug.Assert(webRtc != null); if (WebRtc != null) { throw new InvalidOperationException("The source is has already been assigned to another WebRTC."); } NativeWebRTC.AddMediaSource(webRtc.Handle, MediaSourceType.Camera, out uint sourceId). ThrowIfFailed("Failed to add MediaCameraSource."); WebRtc = webRtc; SourceId = sourceId; } internal override void OnDetached(WebRTC webRtc) { NativeWebRTC.RemoveMediaSource(webRtc.Handle, SourceId.Value). ThrowIfFailed("Failed to remove MediaCameraSource."); WebRtc = null; } } }