Easy_API EasyAACEncoder_Handle Easy_APICALL Easy_AACEncoder_Init(InitParam initPar)
{
    G7ToAac *encoder = new G7ToAac();
	InAudioInfo info(initPar );
	bool ret = encoder->init(info);
	if (!ret)
	{
		SAFE_DELETE_OBJ(encoder);
	}
    return encoder;
}
Esempio n. 2
0
void DSound51::Close()
{
	SAFE_DELETE_OBJ( m_driver );
}
Esempio n. 3
0
void SndBuffer::soundtouchCleanup()
{
	SAFE_DELETE_OBJ( pSoundTouch );
}