Lines Matching refs:m_pVoice
91 track.m_pVoice = NULL; in Initialize()
101 channel.m_pVoice = NULL; in Initialize()
359 if ( track.m_pVoice != NULL ) in Start()
361 track.m_pVoice->Initialize( waveInfo, blockOffset ); in Start()
363 track.m_pVoice->SetVolume( 1.0f ); // TODO: 1.0, 1.0 を入れないといけない in Start()
366 track.m_pVoice->Start(); in Start()
379 if ( channel->m_pVoice != NULL ) in Start()
381 channel->m_pVoice->Initialize( waveInfo, blockOffset ); in Start()
382 channel->m_pVoice->Start(); in Start()
435 Voice* voice = m_Tracks[ trackIndex ].m_pVoice; in Stop()
444 Voice* voice = m_Channels[ch].m_pVoice; in Stop()
522 if ( m_Tracks[ 0 ].m_pVoice != NULL ) in GetPlaySamplePosition()
524 bufOffset = static_cast<s32>( m_Tracks[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetPlaySamplePosition()
529 if ( m_Channels[ 0 ].m_pVoice != NULL ) in GetPlaySamplePosition()
531 bufOffset = static_cast<s32>( m_Channels[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetPlaySamplePosition()
560 if ( m_Tracks[ 0 ].m_pVoice != NULL ) in GetFilledBufferPercentage()
562 bufOffset = static_cast<s32>( m_Tracks[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetFilledBufferPercentage()
565 if ( m_Channels[ 0 ].m_pVoice != NULL ) in GetFilledBufferPercentage()
567 bufOffset = static_cast<s32>( m_Channels[ 0 ].m_pVoice->GetCurrentPlayingSample() ); in GetFilledBufferPercentage()
980 if ( t.m_pVoice != NULL ) in AllocVoices()
982 t.m_pVoice->Free(); in AllocVoices()
983 t.m_pVoice = NULL; in AllocVoices()
990 track.m_pVoice = voice; in AllocVoices()
1009 if ( c.m_pVoice != NULL ) in AllocVoices()
1011 c.m_pVoice->Free(); in AllocVoices()
1012 c.m_pVoice = NULL; in AllocVoices()
1018 channel.m_pVoice = voice; in AllocVoices()
1031 channel.m_pVoice->SetAdpcmParam( 0, param ); in AllocVoices()
1056 if ( track.m_pVoice != NULL ) in FreeVoices()
1058 track.m_pVoice->Free(); in FreeVoices()
1059 track.m_pVoice = NULL; in FreeVoices()
1066 if ( channel.m_pVoice != NULL ) in FreeVoices()
1068 channel.m_pVoice->Free(); in FreeVoices()
1069 channel.m_pVoice = NULL; in FreeVoices()
1130 if ( track.m_pVoice == NULL ) in Update()
1141 if ( channel.m_pVoice == NULL ) in Update()
1231 Voice* voice = track->m_pVoice; in UpdateVoiceParams()
1250 Voice* voice = track->m_pChannels[ch]->m_pVoice; in UpdateVoiceParams()
1352 Voice* voice = m_Tracks[ 0 ].m_pVoice; in UpdateBuffer()
1354 Voice* voice = m_Channels[ 0 ].m_pVoice; in UpdateBuffer()
1435 Voice* voice = track.m_pVoice; in UpdateLoopAddress()
1560 Voice* voice = track.m_pVoice; in UpdateDataLoopAddress()
1610 Voice* voice = track.m_pVoice; in SetLoopEndToZeroBuffer()
1757 Voice* voice = m_Tracks[ trackIndex ].m_pVoice; in UpdatePauseStatus()
1766 Voice* voice = m_Channels[ ch ].m_pVoice; in UpdatePauseStatus()
1896 NW_ASSERT( track->m_pVoice == voice ); in VoiceCallbackFunc()
1903 track->m_pVoice = NULL; in VoiceCallbackFunc()
1907 track->m_pVoice = NULL; in VoiceCallbackFunc()
1917 NW_ASSERT( channel->m_pVoice == voice ); in VoiceCallbackFunc()
1924 channel->m_pVoice = NULL; in VoiceCallbackFunc()
1928 channel->m_pVoice = NULL; in VoiceCallbackFunc()