mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
* Added API to Python bindings * Added API to JavaScript bindings * Added API to Java bindings * Added API to .NET binding
103 lines
4.7 KiB
C#
103 lines
4.7 KiB
C#
using DeepSpeechClient.Enums;
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace DeepSpeechClient
|
|
{
|
|
/// <summary>
|
|
/// Wrapper for the native implementation of "libdeepspeech.so"
|
|
/// </summary>
|
|
internal static class NativeImp
|
|
{
|
|
#region Native Implementation
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl,
|
|
CharSet = CharSet.Ansi, SetLastError = true)]
|
|
internal static extern IntPtr DS_Version();
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern ErrorCodes DS_CreateModel(string aModelPath,
|
|
ref IntPtr** pint);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern IntPtr DS_ErrorCodeToErrorMessage(int aErrorCode);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern uint DS_GetModelBeamWidth(IntPtr** aCtx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern ErrorCodes DS_SetModelBeamWidth(IntPtr** aCtx,
|
|
uint aBeamWidth);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern ErrorCodes DS_CreateModel(string aModelPath,
|
|
uint aBeamWidth,
|
|
ref IntPtr** pint);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal unsafe static extern int DS_GetModelSampleRate(IntPtr** aCtx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern ErrorCodes DS_EnableExternalScorer(IntPtr** aCtx,
|
|
string aScorerPath);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern ErrorCodes DS_DisableExternalScorer(IntPtr** aCtx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern ErrorCodes DS_SetScorerAlphaBeta(IntPtr** aCtx,
|
|
float aAlpha,
|
|
float aBeta);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl,
|
|
CharSet = CharSet.Ansi, SetLastError = true)]
|
|
internal static unsafe extern IntPtr DS_SpeechToText(IntPtr** aCtx,
|
|
short[] aBuffer,
|
|
uint aBufferSize);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
|
|
internal static unsafe extern IntPtr DS_SpeechToTextWithMetadata(IntPtr** aCtx,
|
|
short[] aBuffer,
|
|
uint aBufferSize,
|
|
uint aNumResults);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern void DS_FreeModel(IntPtr** aCtx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern ErrorCodes DS_CreateStream(IntPtr** aCtx,
|
|
ref IntPtr** retval);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern void DS_FreeStream(IntPtr** aSctx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern void DS_FreeMetadata(IntPtr metadata);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern void DS_FreeString(IntPtr str);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl,
|
|
CharSet = CharSet.Ansi, SetLastError = true)]
|
|
internal static unsafe extern void DS_FeedAudioContent(IntPtr** aSctx,
|
|
short[] aBuffer,
|
|
uint aBufferSize);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern IntPtr DS_IntermediateDecode(IntPtr** aSctx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern IntPtr DS_IntermediateDecodeWithMetadata(IntPtr** aSctx,
|
|
uint aNumResults);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl,
|
|
CharSet = CharSet.Ansi, SetLastError = true)]
|
|
internal static unsafe extern IntPtr DS_FinishStream(IntPtr** aSctx);
|
|
|
|
[DllImport("libdeepspeech.so", CallingConvention = CallingConvention.Cdecl)]
|
|
internal static unsafe extern IntPtr DS_FinishStreamWithMetadata(IntPtr** aSctx,
|
|
uint aNumResults);
|
|
#endregion
|
|
}
|
|
}
|