示例#1
0
pascal ComponentResult 
__SoundComponentPlaySourceBuffer( void *dummy, SoundSource sourceID,
				  SoundParamBlockPtr pb, long actions )
{
	ComponentResult result;

	/* lprintf("__PlaySourceBuf %08lx ID: %08x\n", actions, (int)sourceID ); */

	/* tell mixer to start playing this new buffer */
	result = SoundComponentPlaySourceBuffer( GLOBAL.sourceComponent, sourceID, pb, actions );
	if( result == noErr ) {
		/* if the kSourcePaused bit is set, then do not turn on your hardware 
		 * just yet (the assumption is that StartSource() will later be used to 
		 * start this sound playing). If this bit is not set, turn your
		 * hardware interrupts on. [Observation: QT calls PlaySourceBuf agin
		 * rather than StartSource]
		 */
		StartHardware();
		if( (actions & kSourcePaused) )
			PauseHardware();
		else
			ResumeHardware();
	}
	return result;
}
示例#2
0
bool CDomoticzHardwareBase::Start()
{
	m_iHBCounter = 0;
	return StartHardware();
}
void CLogitechMediaServer::Restart()
{
	StopHardware();
	StartHardware();
}
示例#4
0
文件: Kodi.cpp 项目: joukio/domoticz
void CKodi::Restart()
{
	StopHardware();
	StartHardware();
}
示例#5
0
void CPanasonic::Restart()
{
	StopHardware();
	StartHardware();
}
示例#6
0
void BleBox::Restart()
{
	StopHardware();
	StartHardware();
}
示例#7
0
bool CDomoticzHardwareBase::Start()
{
	return StartHardware();
}