mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
13 lines
329 B
C#
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;
|
|
}
|
|
}
|