Changeset 468 for OCO/trunk/drv16/maudio.cpp
- Timestamp:
- Nov 4, 2009, 4:21:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/trunk/drv16/maudio.cpp
r418 r468 114 114 int MIDIAUDIO::Pause(OSSSTREAMID StreamId) // Pause the operation 115 115 { 116 dprintf(("DUMMY MIDIAUDIO::Pause"));116 // dprintf(("DUMMY MIDIAUDIO::Pause")); 117 117 DebugInt3(); 118 118 return 0; … … 122 122 int MIDIAUDIO::Resume(OSSSTREAMID StreamId) // Resume the operation 123 123 { 124 dprintf(("DUMMY MIDIAUDIO::Resume"));124 // dprintf(("DUMMY MIDIAUDIO::Resume")); 125 125 DebugInt3(); 126 126 return 0; … … 130 130 void MIDIAUDIO::noteOff(OSSSTREAMID StreamId, BYTE mchan, BYTE note, BYTE velocity ) 131 131 { 132 dprintf2(("MIDIAUDIO::noteOff %d %d %d", mchan, note, velocity));132 // dprintf2(("MIDIAUDIO::noteOff %d %d %d", mchan, note, velocity)); 133 133 if(OSS16_MidiNoteOff(StreamId, mchan, note, velocity) != OSSERR_SUCCESS) { 134 134 DebugInt3(); … … 139 139 void MIDIAUDIO::noteOn(OSSSTREAMID StreamId, BYTE mchan, BYTE note, BYTE velocity ) 140 140 { 141 dprintf2(("MIDIAUDIO::noteOn %d %d %d", mchan, note, velocity));141 // dprintf2(("MIDIAUDIO::noteOn %d %d %d", mchan, note, velocity)); 142 142 if(OSS16_MidiNoteOn(StreamId, mchan, note, velocity) != OSSERR_SUCCESS) { 143 143 DebugInt3(); … … 148 148 void MIDIAUDIO::polyphonicPressure(OSSSTREAMID StreamId, BYTE mchan, BYTE note, BYTE value ) 149 149 { 150 dprintf2(("MIDIAUDIO::polyphonicPressure %d %d %d", mchan, note, value));150 // dprintf2(("MIDIAUDIO::polyphonicPressure %d %d %d", mchan, note, value)); 151 151 if(OSS16_MidiKeyPressure(StreamId, mchan, note, value) != OSSERR_SUCCESS) { 152 152 DebugInt3(); … … 157 157 void MIDIAUDIO::controlChange(OSSSTREAMID StreamId, BYTE mchan, BYTE control_number, BYTE value ) 158 158 { 159 dprintf2(("MIDIAUDIO::controlChange %d %d %d", mchan, control_number, value));159 // dprintf2(("MIDIAUDIO::controlChange %d %d %d", mchan, control_number, value)); 160 160 if(OSS16_MidiControlChange(StreamId, mchan, control_number, value) != OSSERR_SUCCESS) { 161 161 DebugInt3(); … … 166 166 void MIDIAUDIO::programChange(OSSSTREAMID StreamId, BYTE mchan, BYTE program_number ) 167 167 { 168 dprintf2(("MIDIAUDIO::programChange %d %d", mchan, program_number));168 // dprintf2(("MIDIAUDIO::programChange %d %d", mchan, program_number)); 169 169 if(OSS16_MidiProgramChange(StreamId, mchan, program_number) != OSSERR_SUCCESS) { 170 170 DebugInt3(); … … 175 175 void MIDIAUDIO::channelPressure(OSSSTREAMID StreamId, BYTE mchan, BYTE value ) 176 176 { 177 dprintf2(("MIDIAUDIO::channelPressure %d %d", mchan, value));177 // dprintf2(("MIDIAUDIO::channelPressure %d %d", mchan, value)); 178 178 if(OSS16_MidiChannelPressure(StreamId, mchan, value) != OSSERR_SUCCESS) { 179 179 DebugInt3(); … … 184 184 void MIDIAUDIO::pitchBend(OSSSTREAMID StreamId, BYTE mchan, BYTE value_lsb, BYTE value_msb) 185 185 { 186 dprintf2(("MIDIAUDIO::pitchBend %d %d %d", mchan, value_lsb, value_msb));186 // dprintf2(("MIDIAUDIO::pitchBend %d %d %d", mchan, value_lsb, value_msb)); 187 187 if(OSS16_MidiKeyPressure(StreamId, mchan, value_lsb, value_msb) != OSSERR_SUCCESS) { 188 188 DebugInt3();
Note:
See TracChangeset
for help on using the changeset viewer.