mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
16 lines
333 B
C#
16 lines
333 B
C#
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.Pipes
|
|
{
|
|
/// <summary>
|
|
/// Interface for Audio sample
|
|
/// </summary>
|
|
public interface IAudioSample
|
|
{
|
|
void Serialize(Stream stream);
|
|
|
|
Task SerializeAsync(Stream stream, CancellationToken token);
|
|
}
|
|
}
|