mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 21:43:13 +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(); }
|
float getAudioOutputAverageMsecsUnplayed() const { return (float)_audioOutputMsecsUnplayedStats.getWindowAverage(); }
|
||||||
|
|
||||||
void setRecorder(RecorderPointer recorder) { _recorder = recorder; }
|
void setRecorder(RecorderPointer recorder) { _recorder = recorder; }
|
||||||
void setPlayer(PlayerPointer player) { _player = player; }
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void start();
|
void start();
|
||||||
|
@ -314,7 +313,6 @@ private:
|
||||||
AudioOutputIODevice _audioOutputIODevice;
|
AudioOutputIODevice _audioOutputIODevice;
|
||||||
|
|
||||||
WeakRecorderPointer _recorder;
|
WeakRecorderPointer _recorder;
|
||||||
WeakPlayerPointer _player;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -652,7 +652,6 @@ void MyAvatar::startPlaying() {
|
||||||
_player = PlayerPointer(new Player(this));
|
_player = PlayerPointer(new Player(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
Application::getInstance()->getAudio()->setPlayer(_player);
|
|
||||||
_player->startPlaying();
|
_player->startPlaying();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue