17 lines
414 B
C#
17 lines
414 B
C#
/// Copyright (c) 2025 Xiaomi Corporation (authors: Fangjun Kuang)
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace SherpaOnnx
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct OfflineSpeechDenoiserConfig
|
|
{
|
|
public OfflineSpeechDenoiserConfig()
|
|
{
|
|
Model = new OfflineSpeechDenoiserModelConfig();
|
|
}
|
|
public OfflineSpeechDenoiserModelConfig Model;
|
|
}
|
|
}
|