32 lines
652 B
C#
32 lines
652 B
C#
/// Copyright (c) 2024 Xiaomi Corporation (authors: Fangjun Kuang)
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace SherpaOnnx
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct VadModelConfig
|
|
{
|
|
public VadModelConfig()
|
|
{
|
|
SileroVad = new SileroVadModelConfig();
|
|
SampleRate = 16000;
|
|
NumThreads = 1;
|
|
Provider = "cpu";
|
|
Debug = 0;
|
|
}
|
|
|
|
public SileroVadModelConfig SileroVad;
|
|
|
|
public int SampleRate;
|
|
|
|
public int NumThreads;
|
|
|
|
[MarshalAs(UnmanagedType.LPStr)]
|
|
public string Provider;
|
|
|
|
public int Debug;
|
|
}
|
|
}
|
|
|