taglinefilesource code
vol386drivers/sound/gus_wave.cgus_voice_volume (unsigned short vol)
vol389drivers/sound/gus_wave.cgus_write16 (0x09, vol << 4);
vol468drivers/sound/gus_wave.cunsigned        vol, prev_vol, phase;
vol493drivers/sound/gus_wave.cvol = voices[voice].initial_volume * voices[voice].env_offset[phase] / 255;
vol499drivers/sound/gus_wave.cif (((vol - prev_vol) / 64) == 0)  /* No significant volume change */
vol505drivers/sound/gus_wave.cif (vol > prev_vol)
vol507drivers/sound/gus_wave.cif (vol >= (4096 - 64))
vol508drivers/sound/gus_wave.cvol = 4096 - 65;
vol509drivers/sound/gus_wave.cgus_ramp_range (0, vol);
vol514drivers/sound/gus_wave.cif (vol <= 64)
vol515drivers/sound/gus_wave.cvol = 65;
vol516drivers/sound/gus_wave.cgus_ramp_range (vol, 4095);
vol519drivers/sound/gus_wave.cvoices[voice].current_volume = vol;
vol645drivers/sound/soundcard.h#define SEQ_START_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
vol651drivers/sound/soundcard.h_seqbuf[_seqbufptr+5] = (vol);\
vol656drivers/sound/soundcard.h#define SEQ_STOP_NOTE(dev, voice, note, vol)  {_SEQ_NEEDBUF(8);\
vol662drivers/sound/soundcard.h_seqbuf[_seqbufptr+5] = (vol);\