DeepSpeech/native_client/dotnet/DeepSpeechClient/Structs/StreamingState.cs
2019-04-11 13:09:45 -03: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;
}
}