/* * 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 microphone source. /// /// The recorder privilege(http://tizen.org/privilege/recorder) is required. /// /// /// 9 public sealed class MediaMicrophoneSource : MediaSource { /// /// Initializes a new instance of the class. /// /// 9 public MediaMicrophoneSource() : base(MediaType.Audio) {} internal override void OnAttached(WebRTC webRtc) { Debug.Assert(webRtc != null); if (WebRtc != null) { Log.Error(WebRTCLog.Tag, "The source is has already been assigned to another WebRTC."); throw new InvalidOperationException("The source is has already been assigned to another WebRTC."); } NativeWebRTC.AddMediaSource(webRtc.Handle, MediaSourceType.Microphone, out uint sourceId). ThrowIfFailed("Failed to add MediaMicrophoneSource."); WebRtc = webRtc; SourceId = sourceId; } internal override void OnDetached(WebRTC webRtc) { NativeWebRTC.RemoveMediaSource(webRtc.Handle, SourceId.Value). ThrowIfFailed("Failed to remove MediaMicrophoneSource."); WebRtc = (WebRTC)null; } /// /// Applies the audio stream policy to . /// /// The to apply. /// /// The WebRTC must be in the state.
///
/// does not support all .
/// Supported types are , , /// , . ///
/// /// The WebRTC has already been disposed.
/// -or-
/// has already been disposed. ///
/// The WebRTC is not in the valid state. /// is null. /// /// of is not supported on the current platform. /// /// /// 9 public void ApplyAudioStreamPolicy(AudioStreamPolicy policy) { if (policy == null) { throw new ArgumentNullException(nameof(policy), "policy is null"); } WebRtc.ValidateWebRTCState(WebRTCState.Idle); var ret = NativeWebRTC.SetAudioStreamPolicyToMicrophoneSource(WebRtc.Handle, SourceId.Value, policy.Handle); if (ret == WebRTCErrorCode.InvalidArgument) { throw new NotSupportedException("The specified policy is not supported on the current system."); } ret.ThrowIfFailed("Failed to set the audio stream policy to the WebRTC"); } } }