Merge remote-tracking branch 'origin/audio-streams' into graphics

graphics
Harald Wolff 2017-05-26 15:19:56 +02:00
commit 8c05b18cde
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System;
namespace org.budnhead
{
public enum AudioDomain
{
TIME,
FREQUENCY
}
}

View File

@ -0,0 +1,14 @@
using System;
namespace org.budnhead
{
public struct StreamSegment
{
long sequence;
long timecode;
AudioDomain audioDomain;
float[] realSamples;
float[] imagSamples;
}
}