Removed dead code

svn-id: r27066
This commit is contained in:
Max Horn 2007-06-03 15:56:14 +00:00
parent 4481238faa
commit 0d77f50d6b

View File

@ -65,8 +65,6 @@ protected:
AudioStream *_input;
public:
Channel(Mixer *mixer, Mixer::SoundType type, int id = -1);
Channel(Mixer *mixer, Mixer::SoundType type, AudioStream *input, bool autofreeStream, bool reverseStereo = false, int id = -1, bool permanent = false);
virtual ~Channel();
@ -374,13 +372,6 @@ int Mixer::getVolumeForSoundType(SoundType type) const {
#pragma mark -
Channel::Channel(Mixer *mixer, Mixer::SoundType type, int id)
: _type(type), _mixer(mixer), _autofreeStream(true),
_volume(Mixer::kMaxChannelVolume), _balance(0), _paused(false), _id(id), _samplesConsumed(0),
_samplesDecoded(0), _mixerTimeStamp(0), _converter(0), _input(0) {
assert(mixer);
}
Channel::Channel(Mixer *mixer, Mixer::SoundType type, AudioStream *input,
bool autofreeStream, bool reverseStereo, int id, bool permanent)
: _type(type), _mixer(mixer), _autofreeStream(autofreeStream),