Lines Matching refs:StreamR
117 static AXVPB *StreamR = NULL; variable
1547 StreamR = AXAcquireVoice(AX_PRIORITY_NODROP, NULL, 0); in StreamInit()
1549 if (StreamR == NULL) in StreamInit()
1561 MIXInitChannel(StreamR, 0, 0, -904, -904, -904, 127, 127, 0); in StreamInit()
1576 AXSetVoiceAddr(StreamR, &addr); in StreamInit()
1579 AXSetVoiceSrcType(StreamR, AX_SRC_TYPE_NONE); in StreamInit()
1583 AXSetVoiceSrcType(StreamR, AX_SRC_TYPE_4TAP_12K); in StreamInit()
1584 AXSetVoiceSrcRatio(StreamR, (f32)(ActivePlayer.audioInfo.sndFrequency / 32000.0)); in StreamInit()
1794 AXSetVoiceCurrentAddr(StreamR, OSCachedToPhysical(StreamBufferR) / 2); in StreamReInit()
2034 if (Initialized && (StreamL || StreamR) & (ActivePlayer.internalState == THP_PLAYER_PLAY)) in THPPlayerStreamUpdate()
2145 if (StreamR) in StreamPlay()
2147 AXSetVoiceState(StreamR, AX_PB_STATE_RUN); in StreamPlay()
2170 if (StreamR) in StreamPause()
2172 AXSetVoiceState(StreamR, AX_PB_STATE_STOP); in StreamPause()
2197 if (StreamR) in StreamQuit()
2199 MIXReleaseChannel(StreamR); in StreamQuit()
2200 AXFreeVoice(StreamR); in StreamQuit()
2201 StreamR = NULL; in StreamQuit()
2223 *right = StreamR; in THPPlayerGetStreamAXPB()