Skip to content
Snippets Groups Projects
Commit 0567a0ab authored by SeeLook's avatar SeeLook
Browse files

Changed connection type of oggReady->startPlaying to play immediately after...

Changed connection type of oggReady->startPlaying to play immediately after decoding minimal data amount.
parent cba90bc4
No related branches found
No related tags found
No related merge requests found
1.2A.5 testing
1.2A.5 beta3
ANDROID
- added update checker
- fixed fluency of playing, no more glitches
Under the hood
- reorganized layout of libraries, score is in separate lib
......
......@@ -78,8 +78,9 @@ TaudioOUT::TaudioOUT(TaudioParams *_params, QObject *parent) :
setAudioOutParams();
connect(this, &TaudioOUT::finishSignal, this, &TaudioOUT::playingFinishedSlot);
connect(oggScale, &ToggScale::oggReady, this, &TaudioOUT::startPlayingSlot);
connect(oggScale, &ToggScale::oggReady, this, &TaudioOUT::startPlayingSlot, Qt::DirectConnection);
// With direct connection playing is called immediately after minimal audio data amount was decoded
// without event loop delay like for default queued connection
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment