#ifdef WIN32
#define DLL_API extern “C” __declspec( dllexport )
#else // Linux ARM 9
#define DLL_API extern “C”
#endif
// 打开
DLL_API
int V_AVIRead_Open( )
{
VFileRead_AVI *pClass = NULL;
pClass = new VFileRead_AVI();
if( !pClass )
return -1;
return (int)pClass;
}
DLL_API
int V_AVIRead_Init( int AHandle, char *ApFilename )
{
VFileRead_AVI *pClass = (VFileRead_AVI *)AHandle;
if ( pClass != NULL )
{
return ( pClass->Init( ApFilename ) );
}
return -1;
}
// 开始
DLL_API
int V_AVIRead_Start( int AHandle )
{
VFileRead_AVI *pClass = (VFileRead_AVI *)AHandle;
if ( pClass != NULL )
{
pClass->Start( AHandle );
return 1;
}
return -1;
}
//
DLL_API
int V_AVIRead_GetChannelCount( int AHandle, int* AVideoChannels, int* AAudioChannels )
{
VFileRead_AVI *pClas