| 221 | return false; |
| 222 | } |
| 223 | void AudioStream::DeactivateStream(AudioStream *stream) { |
| 224 | if (stream->m_streamindex > -1) { |
| 225 | AudioStream::m_streams[stream->m_streamindex] = NULL; |
| 226 | stream->m_streamindex = -1; |
| 227 | } |
| 228 | } |
| 229 | // called by application to allow stream playback |
| 230 | void AudioStream::Frame() { |
| 231 | int t; |