Fix deadlock on sound error (mutex not released)

when sound failed to play,
the function returned but did not release mutex.
This commit is contained in:
jonny_l480 2023-12-22 13:34:51 +01:00
parent a0622fff1e
commit fcea6f57ab

View File

@ -27,7 +27,7 @@ int initAudio()
//--- initialize SDL audio --- //--- initialize SDL audio ---
if (SDL_Init(SDL_INIT_AUDIO) < 0) if (SDL_Init(SDL_INIT_AUDIO) < 0)
{ {
printf("SDL: could not init audio!\n"); LOGE("sound: SDL - could not init audio!\n");
return 1; return 1;
} }
audioIsInitialized = true; audioIsInitialized = true;
@ -66,7 +66,8 @@ int playSound(const char *filePath, bool wait)
//--- load file --- //--- load file ---
if (SDL_LoadWAV(filePath, &wavSpec, &wavBuffer, &wavLength) == NULL) if (SDL_LoadWAV(filePath, &wavSpec, &wavBuffer, &wavLength) == NULL)
{ {
printf("sound: file '%s' could not be loaded E:'%s'\n", filePath, SDL_GetError()); LOGE("sound: file '%s' could not be loaded E:'%s'\n", filePath, SDL_GetError());
pthread_mutex_unlock(&mutexSoundPlaying);
return 1; return 1;
} }
@ -75,7 +76,7 @@ int playSound(const char *filePath, bool wait)
deviceExists = true; deviceExists = true;
SDL_QueueAudio(deviceId, wavBuffer, wavLength); SDL_QueueAudio(deviceId, wavBuffer, wavLength);
SDL_PauseAudioDevice(deviceId, 0); SDL_PauseAudioDevice(deviceId, 0);
LOGI("sound: playing file '%s'\n", filePath); LOGD("sound: playing file '%s'\n", filePath);
//--- wait until playback is finished --- //--- wait until playback is finished ---
while (SDL_GetQueuedAudioSize(deviceId) > 0) while (SDL_GetQueuedAudioSize(deviceId) > 0)
@ -123,14 +124,14 @@ int playSoundAsync(const char *filePath) {
//--- allocate memory for filePath --- //--- allocate memory for filePath ---
char *filePathCopy = strdup(filePath); char *filePathCopy = strdup(filePath);
if (filePathCopy == NULL) { if (filePathCopy == NULL) {
fprintf(stderr, "Memory allocation failed\n"); LOGE("sound: Memory allocation failed\n");
return 1; return 1;
} }
//--- create new thread --- //--- create new thread ---
pthread_t thread; pthread_t thread;
if (pthread_create(&thread, NULL, playSoundThread, filePathCopy) != 0) { if (pthread_create(&thread, NULL, playSoundThread, filePathCopy) != 0) {
fprintf(stderr, "Failed to create thread\n"); LOGE("sound: Failed to create thread\n");
free(filePathCopy); free(filePathCopy);
return 1; return 1;
} else { } else {