// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; using UnityEngine; namespace Microsoft.MixedReality.WebRTC.Unity { /// /// This component represents an audio track source generating audio frames for one or more /// audio tracks. /// /// public abstract class AudioTrackSource : MediaTrackSource { /// /// Audio track source object from the underlying C# library that this component encapsulates. /// /// The object is owned by this component, which will create it and dispose of it automatically. /// public WebRTC.AudioTrackSource Source { get; private set; } = null; /// public override MediaKind MediaKind => MediaKind.Audio; /// public override bool IsLive => Source != null; protected void AttachSource(WebRTC.AudioTrackSource source) { Source = source; AttachToMediaLines(); } protected void DisposeSource() { if (Source != null) { DetachFromMediaLines(); // Audio track sources are disposable objects owned by the user (this component) Source.Dispose(); Source = null; } } } }