DeepSpeech/native_client/dotnet/DeepSpeechClient/Structs/TokenMetadata.cs
2020-03-17 14:47:58 +01:00

23 lines
570 B
C#

using System;
using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct TokenMetadata
{
/// <summary>
/// Native text.
/// </summary>
internal unsafe IntPtr text;
/// <summary>
/// Position of the character in units of 20ms.
/// </summary>
internal unsafe int timestep;
/// <summary>
/// Position of the character in seconds.
/// </summary>
internal unsafe float start_time;
}
}