-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New features for job manager and integration into dynamic audio loading. #192
Conversation
The build fails with gcc 4.8.1 because of the thread_local thread_id in thread_id.cpp. With gcc 4.8.2 it builds without any problems. Clang doesn't complain either. |
Hopefully the newer compiler version will be available once travis-ci/travis-ci#979 is fixed. The currently used ubuntu toolchain ppa does not provide We either have to find another ppa, build it ourself (but the ppa system is nasty...) or wait for travis to provide a newer distro. |
I think switching to a different PPA would be best. If all else fails, we could add it to our custom sfttech PPA. |
@@ -17,17 +17,14 @@ namespace audio { | |||
|
|||
void global_audio_callback(void *userdata, uint8_t *stream, int len); | |||
|
|||
AudioManager::AudioManager(int freq, SDL_AudioFormat format, uint8_t channels, | |||
uint16_t samples) | |||
AudioManager::AudioManager() | |||
: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one tab indent for initializer list pls
Looking good now 👍 |
New features for job manager and integration into dynamic audio loading.
I have added some features to the job manager.
Further I have integrated the new job groups into the dynamic audio loading implementation.