English 中文(简体)
如何应对Delphi 6 DSPACK方案遗留过滤器Wav Dest?
原标题:What to do with NIL response for legacy filter Wav Dest in Delphi 6 DSPACK program?

我试图与DSPACK一道建立一个Delphi 6方案,记录PC投入装置(Windows XP)的录音,然后将所捕获的录音带上MS格式WAV文档。 我面临的问题是,当我试图获得被称为“WAV Dest”的遗留过滤器时,我正在重新获得荷兰民族解放军:

CapEnum.SelectGUIDCategory(CLSID_LegacyAmFilterCategory); 
filWaveDest.BaseFilter.Moniker := CapEnum.GetMoniker(CapEnum.FilterIndexOfFriendlyName( WAV Dest )); 

filWaveDest.BaseFilter.Moniker在接到这些电话后,载有NIL。 我如何纠正这一点,因为显然后来的法典试图用过滤器书写被收集的WAV数据?

最佳回答

Wav Dest is not a standard DirectShow filter. It is an example filter in the SDK. Either build the object or download a copy of the DLL someone else has built.

问题回答

暂无回答




相关问题
determining the character set to use

my delphi 2009 app has a basic translation system that uses GNUGetText. i had used some win API calls to prepare the fonts. i thought it was working correctly until recently when someone from Malta ...

Help with strange Delphi 5 IDE problems

Ok, I m going nuts here. For the last (almost) four years, I ve been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include: Seemingly random errors in coride50.bpl ...

How to write a Remote DataModule to run on a linux server?

i would like to know if there are any solution to do this. Does anyone? The big picture: I want to access data over the web, using my delphi thin clients. But i´would like to keep my server/service ...

How convert string to integer in Oxygene

In Delphi, there is a function StrToInt() that converts a string to an integer value; there is also IntToStr(), which does the reverse. These functions doesn t appear to be part of Oxygene, and I can ...

Quick padding of a string in Delphi

I was trying to speed up a certain routine in an application, and my profiler, AQTime, identified one method in particular as a bottleneck. The method has been with us for years, and is part of a "...

热门标签