Remove deprecated Audio class Player member

This commit is contained in:
Atlante45 2014-08-21 11:08:12 -07:00
parent ff9f079704
commit 8760329323
2 changed files with 0 additions and 3 deletions

View file

@ -105,7 +105,6 @@ public:
float getAudioOutputAverageMsecsUnplayed() const { return (float)_audioOutputMsecsUnplayedStats.getWindowAverage(); }
void setRecorder(RecorderPointer recorder) { _recorder = recorder; }
void setPlayer(PlayerPointer player) { _player = player; }
public slots:
void start();
@ -314,7 +313,6 @@ private:
AudioOutputIODevice _audioOutputIODevice;
WeakRecorderPointer _recorder;
WeakPlayerPointer _player;
};

View file

@ -652,7 +652,6 @@ void MyAvatar::startPlaying() {
_player = PlayerPointer(new Player(this));
}
Application::getInstance()->getAudio()->setPlayer(_player);
_player->startPlaying();
}