// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using UnityEngine;
using UnityEngine.Events;
namespace Microsoft.MixedReality.WebRTC.Unity
{
///
/// Unity event corresponding to a new audio stream being started.
///
[Serializable]
public class AudioStreamStartedEvent : UnityEvent
{ };
///
/// Unity event corresponding to an on-going audio stream being stopped.
///
[Serializable]
public class AudioStreamStoppedEvent : UnityEvent
{ };
///
/// Endpoint for a WebRTC remote audio track.
///
///
/// Setting this on an audio will enable the corresponding transceiver to receive.
/// A remote track will be exposed through once a connection is established.
/// The audio track can optionally be played locally with an .
///
[AddComponentMenu("MixedReality-WebRTC/Audio Receiver")]
public class AudioReceiver : MediaReceiver
{
///
/// Remote audio track receiving data from the remote peer.
///
///
/// This is null until:
///
/// is set to a non-null value, and
/// the remote peer starts sending data to the paired transceiver after a session negotiation.
///
///
public RemoteAudioTrack AudioTrack { get; private set; }
///
/// Event raised when the audio stream started.
///
/// When this event is raised, the followings are true:
/// - The property is a valid remote audio track.
/// - The property is true.
///
///
/// This event is raised from the main Unity thread to allow Unity object access.
///
public AudioStreamStartedEvent AudioStreamStarted = new AudioStreamStartedEvent();
///
/// Event raised when the audio stream stopped.
///
/// When this event is raised, the followings are true:
/// - The property is false.
///
///
/// This event is raised from the main Unity thread to allow Unity object access.
///
public AudioStreamStoppedEvent AudioStreamStopped = new AudioStreamStoppedEvent();
///
public override MediaKind MediaKind => MediaKind.Audio;
///
public override MediaTrack Track => AudioTrack;
///
protected internal override void OnPaired(MediaTrack track)
{
var remoteAudioTrack = (RemoteAudioTrack)track;
Debug.Assert(Track == null);
AudioTrack = remoteAudioTrack;
AudioStreamStarted.Invoke(remoteAudioTrack);
}
///
protected internal override void OnUnpaired(MediaTrack track)
{
Debug.Assert(Track == track);
AudioTrack = null;
AudioStreamStopped.Invoke((RemoteAudioTrack)track);
}
}
}