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

19 lines
466 B
C#

using System;
using System.Runtime.InteropServices;
namespace DeepSpeechClient.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct Metadata
{
/// <summary>
/// Native list of candidate transcripts.
/// </summary>
internal unsafe IntPtr transcripts;
/// <summary>
/// Count of transcripts from the native side.
/// </summary>
internal unsafe int num_transcripts;
}
}