I try to make the question a bit more clear this time.
I want to use the C++-Class CBaseVideoRenderer. Which file do I need to include to get its constructor?
I have included renbase.h, but there's only the declaration. I have included strmbase.h and any other errors regarding this class vanished but the one for the missing constructor. renbase.cpp seems to have a constructor but I cannot just include it without errors.
So, do you know which files I need? Im Using embarcadero's C++-Builder from XE2 16.
EDIT: I want to use this class:
CBitmapRenderer::CBitmapRenderer(
TCHAR *pName,
LPUNKNOWN pUnk,
HRESULT *phr
)
: CBaseVideoRenderer(CLSID_BitmapRenderer,pName,pUnk,phr)
, m_InputPin(NAME("Video Pin"),this,&m_InterfaceLock,phr,L"Input")
{...
With this code:
CBitmapRenderer *m_pSnapshotter = new CBitmapRenderer( _T("Bitmap renderer"), NULL, &hr );
Which leads to an Link-error:
[ILINK32 Fehler] Error: Nicht auflösbares externes 'CBaseVideoRenderer::CBaseVideoRenderer(_GUID&, wchar_t *, IUnknown *, long *)' referenziert von C:\USERS\JULIAN\DESKTOP\PROGRAMM\WIN32\DEBUG\TESTRAUSCHEN.OBJ
That I know comes from a missing definition for the constructor.
EDIT2:
I have now included all files within baseClasses-direcory and the compiling is sucessful(without errors). However, when I try to run the application, I get the message "strmbase.dll" is missing. Install this program again" But I never had a strmbasd.dll. I have a strmbasd.lib. That's the result when trying to compile the baseclasses-project with visual studio in debug-Mode.
Does anybody knows where to get this dll or how to use the lib instead?
Regards,
Julian
CBaseVideoRenderer::CBaseVideoRendereris not available. And this is not your code, it is code from DirectShow BaseClasses. So you need either of the two: (a) additionally link tostrmbase.lib(strmbasd.libin Debug), or (b) include BaseClasses files with missing functions onto your project. – Roman R. Aug 12 '12 at 18:03