CTransInPlaceFilter似乎没有在其输入引脚中实现GetAllocatorRequirements
。因为在尝试在上游过滤器上调用此方法时出现E_NOTIMPL错误。
我知道CTransInPlace Filter只有一个缓冲区而不是输入和输出缓冲区。
但我如何在上游过滤器中处理此问题?
如何实施DecideAllocator以支持CTransInPlaceFilters? 这是我在上游过滤器中的DecideAllocator函数:
HRESULT MCMyOutputPin::DecideAllocator(IMemInputPin *pPin, IMemAllocator **ppAlloc)
{
ALLOCATOR_PROPERTIES *pprops = new ALLOCATOR_PROPERTIES;
HRESULT hr = pPin->GetAllocatorRequirements(pprops); //returns E_NOTIMPL
if (FAILED(hr))
return hr;
hr = pPin->GetAllocator(ppAlloc);
if (hr == VFW_E_NO_ALLOCATOR)
{
hr = InitAllocator(ppAlloc);
if (FAILED(hr))
return hr;
}
hr = DecideBufferSize(*ppAlloc, pprops);
if (FAILED(hr))
return hr;
hr = pPin->NotifyAllocator(*ppAlloc, TRUE);
if (FAILED(hr))
{
return hr;
}
*ppAlloc = m_pAllocator;
//m_pAllocator = *ppAlloc;
m_pAllocator->Commit();
m_pAllocator->AddRef();
return hr;
}
或者我错过了什么,错误的原因是不同的?
答案 0 :(得分:1)
关于现场转型的部分与问题无关,而且是多余的。您正在询问如何处理不实施IMemInputPin::GetAllocatorRequirements
的对等过滤器/引脚。来自MSDN:
实现此方法不需要输入引脚。如果过滤器具有特定的对齐或前缀要求,则应实现此方法。
此方法的实施不是强制性的。这意味着在您的输出引脚上,您可以自行决定配置内存分配器,无需考虑分配器属性上的同行引脚意见。