DeepSpeech/examples/net_framework/CSharpExamples/DeepSpeechClient/Structs/StreamingState.cs
2018-12-14 14:44:46 -06:00

13 lines
329 B
C#

using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
internal unsafe struct StreamingState
{
public float last_sample; // used for preemphasis
public bool skip_next_mfcc;
public ModelState* model;
}
}