yum-archive/TaSTT-Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper

KonstantinSource codes8c4603c

master
344 B12 linesraw
1#pragma once
2#include "../API/MfStructs.h"
3
4namespace Whisper
5{
6	struct iAudioCapture;
7	struct iMediaFoundation;
8
9	HRESULT __stdcall captureDeviceList( pfnFoundCaptureDevices pfn, void* pv );
10
11	HRESULT __stdcall captureOpen( iMediaFoundation* owner, const wchar_t* endpoint, const sCaptureParams& captureParams, iAudioCapture** pp ) noexcept;
12}