Lines Matching refs:streamR
80 static AXVPB *streamR; variable
205 AXSetVoiceAdpcmLoop(streamR, &loop); in fillAram()
251 if (streamR) in callbackAudioFrame()
257 currentPosition = *((u32*)&streamR->pb.addr.currentAddressHi); in callbackAudioFrame()
269 if (streamR->pb.state == AX_PB_STATE_STOP) in callbackAudioFrame()
287 if(streamR) in callbackAudioFrame()
289 MIXReleaseChannel(streamR); in callbackAudioFrame()
290 AXFreeVoice(streamR); in callbackAudioFrame()
291 streamR = NULL; in callbackAudioFrame()
318 if (streamR) AXSetVoiceState(streamR, AX_PB_STATE_RUN); in startVoices()
334 streamR = AXAcquireVoice(15, NULL, 0); in startStreamPcm16()
370 if (streamR) in startStreamPcm16()
374 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamPcm16()
385 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamPcm16()
386 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamPcm16()
429 streamR = AXAcquireVoice(15, NULL, 0); in startStreamPcm16()
461 if (streamR) in startStreamPcm16()
472 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamPcm16()
483 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamPcm16()
484 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamPcm16()
486 AXSetVoiceState(streamR, AX_PB_STATE_RUN); in startStreamPcm16()
503 streamR = AXAcquireVoice(15, NULL, 0); in startStreamPcm8()
539 if (streamR) in startStreamPcm8()
543 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamPcm8()
554 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamPcm8()
555 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamPcm8()
598 streamR = AXAcquireVoice(15, NULL, 0); in startStreamPcm8()
630 if (streamR) in startStreamPcm8()
641 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamPcm8()
652 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamPcm8()
653 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamPcm8()
655 AXSetVoiceState(streamR, AX_PB_STATE_RUN); in startStreamPcm8()
672 streamR = AXAcquireVoice(15, NULL, 0); in startStreamAdpcm()
736 if (streamR) in startStreamAdpcm()
742 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamAdpcm()
774 AXSetVoiceType(streamR, AX_PB_TYPE_STREAM); // no loop context in startStreamAdpcm()
775 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamAdpcm()
776 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamAdpcm()
777 AXSetVoiceAdpcm(streamR, &adpcm); // ADPCM coefficients in startStreamAdpcm()
820 streamR = AXAcquireVoice(15, NULL, 0); in startStreamAdpcm()
877 if (streamR) in startStreamAdpcm()
890 MIXInitChannel(streamR, 0, 0, -904, -904, -904, 127, 127, 0); in startStreamAdpcm()
922 AXSetVoiceType(streamR, AX_PB_TYPE_STREAM); // no loop context in startStreamAdpcm()
923 AXSetVoiceAddr(streamR, &addr); // input addressing in startStreamAdpcm()
924 AXSetVoiceSrcType(streamR, AX_SRC_TYPE_NONE); // no SRC in startStreamAdpcm()
925 AXSetVoiceAdpcm(streamR, &adpcm); // ADPCM coefficients in startStreamAdpcm()
927 AXSetVoiceState(streamR, AX_PB_STATE_RUN); in startStreamAdpcm()
941 if (streamR) in stopStream()
944 MIXSetFader(streamR, -960); in stopStream()
1057 if (streamR) in main()
1061 *(u32*)&streamR->pb.addr.currentAddressHi in main()