Newer
Older
CGTrack / Assets / Oculus / Platform / Scripts / IVoipPCMSource.cs
@Pascal Syma Pascal Syma on 25 Jul 2021 202 bytes Initial Commit
namespace Oculus.Platform
{
  public interface IVoipPCMSource
  {
    int GetPCM(float[] dest, int length);

    void SetSenderID(ulong senderID);

    void Update();

    int PeekSizeElements();
  }
}