mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 18:44:00 +02:00
Remove deprecated Audio class Player member
This commit is contained in:
parent
ff9f079704
commit
8760329323
2 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -652,7 +652,6 @@ void MyAvatar::startPlaying() {
|
|||
_player = PlayerPointer(new Player(this));
|
||||
}
|
||||
|
||||
Application::getInstance()->getAudio()->setPlayer(_player);
|
||||
_player->startPlaying();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue