mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
42 lines
1017 B
C#
42 lines
1017 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace CUETools.Codecs
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Represents the interface to a device that can play a WaveFile
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IWavePlayer : IDisposable, IAudioDest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Begin playback
|
|||
|
|
/// </summary>
|
|||
|
|
void Play();
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Stop playback
|
|||
|
|
/// </summary>
|
|||
|
|
void Stop();
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Pause Playback
|
|||
|
|
/// </summary>
|
|||
|
|
void Pause();
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Current playback state
|
|||
|
|
/// </summary>
|
|||
|
|
PlaybackState PlaybackState { get; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The volume 1.0 is full scale
|
|||
|
|
/// </summary>
|
|||
|
|
float Volume { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Indicates that playback has gone into a stopped state due to
|
|||
|
|
/// reaching the end of the input stream
|
|||
|
|
/// </summary>
|
|||
|
|
event EventHandler PlaybackStopped;
|
|||
|
|
}
|
|||
|
|
}
|