Lines Matching refs:m_pVoice
93 track.m_pVoice = NULL; in Initialize()
103 channel.m_pVoice = NULL; in Initialize()
370 if ( track.m_pVoice != NULL ) in Start()
372 track.m_pVoice->Initialize( waveInfo, blockOffset ); in Start()
374 track.m_pVoice->SetVolume( 1.0f ); // TODO: 1.0, 1.0 を入れないといけない in Start()
377 track.m_pVoice->Start(); in Start()
390 if ( channel->m_pVoice != NULL ) in Start()
392 channel->m_pVoice->Initialize( waveInfo, blockOffset ); in Start()
393 channel->m_pVoice->Start(); in Start()
449 Voice* voice = m_Tracks[ trackIndex ].m_pVoice; in Stop()
458 Voice* voice = m_Channels[ch].m_pVoice; in Stop()
548 if ( m_Tracks[ 0 ].m_pVoice != NULL ) in GetPlaySamplePosition()
550 bufOffset = static_cast<s32>( m_Tracks[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetPlaySamplePosition()
555 if ( m_Channels[ 0 ].m_pVoice != NULL ) in GetPlaySamplePosition()
557 bufOffset = static_cast<s32>( m_Channels[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetPlaySamplePosition()
594 if ( m_Tracks[ 0 ].m_pVoice != NULL ) in GetFilledBufferPercentage()
596 bufOffset = static_cast<s32>( m_Tracks[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetFilledBufferPercentage()
615 if ( m_Channels[ 0 ].m_pVoice != NULL ) in GetFilledBufferPercentage()
618 static_cast<s32>( m_Channels[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetFilledBufferPercentage()
1033 if ( t.m_pVoice != NULL ) in AllocVoices()
1035 t.m_pVoice->Free(); in AllocVoices()
1036 t.m_pVoice = NULL; in AllocVoices()
1043 track.m_pVoice = voice; in AllocVoices()
1062 if ( c.m_pVoice != NULL ) in AllocVoices()
1064 c.m_pVoice->Free(); in AllocVoices()
1065 c.m_pVoice = NULL; in AllocVoices()
1071 channel.m_pVoice = voice; in AllocVoices()
1084 channel.m_pVoice->SetAdpcmParam( 0, param ); in AllocVoices()
1112 if ( track.m_pVoice != NULL ) in FreeVoices()
1114 track.m_pVoice->Free(); in FreeVoices()
1115 track.m_pVoice = NULL; in FreeVoices()
1122 if ( channel.m_pVoice != NULL ) in FreeVoices()
1124 channel.m_pVoice->Free(); in FreeVoices()
1125 channel.m_pVoice = NULL; in FreeVoices()
1192 if ( track.m_pVoice == NULL ) in Update()
1203 if ( channel.m_pVoice == NULL ) in Update()
1296 Voice* voice = track->m_pVoice; in UpdateVoiceParams()
1315 Voice* voice = track->m_pChannels[ch]->m_pVoice; in UpdateVoiceParams()
1426 Voice* voice = m_Tracks[ 0 ].m_pVoice; in UpdateBuffer()
1428 Voice* voice = m_Channels[ 0 ].m_pVoice; in UpdateBuffer()
1518 Voice* voice = track.m_pVoice; in UpdateLoopAddress()
1652 Voice* voice = track.m_pVoice; in UpdateDataLoopAddress()
1708 Voice* voice = track.m_pVoice; in SetLoopEndToZeroBuffer()
1867 Voice* voice = m_Tracks[ trackIndex ].m_pVoice; in UpdatePauseStatus()
1876 Voice* voice = m_Channels[ ch ].m_pVoice; in UpdatePauseStatus()
2006 NW_ASSERT( track->m_pVoice == voice ); in VoiceCallbackFunc()
2013 track->m_pVoice = NULL; in VoiceCallbackFunc()
2017 track->m_pVoice = NULL; in VoiceCallbackFunc()
2027 NW_ASSERT( channel->m_pVoice == voice ); in VoiceCallbackFunc()
2034 channel->m_pVoice = NULL; in VoiceCallbackFunc()
2038 channel->m_pVoice = NULL; in VoiceCallbackFunc()