ae0cf8db6a
This reverts commitae9fdb183e
, reversing changes made to2eb75b6206
.
19 lines
466 B
C#
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;
|
|
}
|
|
}
|