gpt4 book ai didi

c++ - IAudioClient::Initialize 方法的未解析外部符号。应用程序接口(interface)

转载 作者:行者123 更新时间:2023-11-28 06:41:51 24 4
gpt4 key购买 nike

我正在尝试通过 WASAPI 工具启动并运行输入音频流录制样本。这是我的意思的链接:http://msdn.microsoft.com/en-us/library/windows/desktop/dd370800(v=vs.85).aspx

相关代码如下:

#include "InputTest.h"
#include "Audioclient.h"
#include "Mmdeviceapi.h"

void InputTest::TakeInput()
{
HRESULT hr;

//Parameter variables for stream initialization
AUDCLNT_SHAREMODE ShareMode = AUDCLNT_SHAREMODE_SHARED;
DWORD da = 0;
REFERENCE_TIME bufferDuration = 10;
REFERENCE_TIME periodicity = 5;
WAVEFORMATEX pFormat;
LPCGUID AudioSessionGuid = NULL;
GUID guid2 = *AudioSessionGuid;
HRESULT guidError = UuidCreate(&guid2); //could do some error checking here. //project -> properties -> Linker -> Command Line -> Rpctr4.lib

//guid2 now has a generated value
//give ASG the address of the newly generated guid2
AudioSessionGuid = &guid2;


//Instantiate WaveFormat
pFormat.wFormatTag = WAVE_FORMAT_PCM;
pFormat.cbSize = 10; //extra information sent over stream. Usually ignored in PCM format.

//If wFormatTag is WAVE_FORMAT_PCM, nAvgBytesPerSec must equal nSamplesPerSec × nBlockAlign
pFormat.nAvgBytesPerSec = 0;
pFormat.nSamplesPerSec = 0;
pFormat.nBlockAlign = 0;

pFormat.nChannels = 2;
pFormat.wBitsPerSample = 16; //PCM standard

//Pointer for stored audio stream
IAudioClient *iac = NULL;

//Endpoint device selection
IMMDeviceEnumerator *pEnumerator = NULL;
IMMDevice *pDevice = NULL;

HRESULT de;
de = pEnumerator -> GetDefaultAudioEndpoint(eRender, eConsole, &pDevice);

hr = iac -> IAudioClient::Initialize(ShareMode, da, bufferDuration, periodicity, &pFormat, AudioSessionGuid);
}`

完整错误信息:

error LNK2019: unresolved external symbol "public: virtual long __stdcall
IAudioClient::Initialize(enum _AUDCLNT_SHAREMODE,unsigned long,__int64,__int64,struct
tWAVEFORMATEX const *,struct _GUID const *)" (?
Initialize@IAudioClient@@UAGJW4_AUDCLNT_SHAREMODE@@K_J1PBUtWAVEFORMATEX@@PBU_GUID@@@Z)
referenced in function "public: void __thiscall InputTest::TakeInput(void)" (?
TakeInput@InputTest@@QAEXXZ)

非常感谢任何建议,因为我现在正在阅读一本很好的 C++ 实践书籍。这个错误是怎么回事?

最佳答案

不正确:

hr = iac -> IAudioClient::Initialize(...

正确:

hr = iac->Initialize(...

你应该在这里调用 COM 接口(interface)指针的虚方法,而不是绕过 vtable 的特定函数(相关讨论参见 this question)。

关于c++ - IAudioClient::Initialize 方法的未解析外部符号。应用程序接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25831936/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com