Fix to audiomixer.

This commit is contained in:
Barry Rowe 2019-12-04 21:03:05 -08:00
parent e1f8b66c05
commit ca03491e63

View File

@ -4455,11 +4455,14 @@ finish:
bool is_ai_service_speech_running(void) bool is_ai_service_speech_running(void)
{ {
#ifdef HAVE_AUDIOMIXER
enum audio_mixer_state res = audio_driver_mixer_get_stream_state(10); enum audio_mixer_state res = audio_driver_mixer_get_stream_state(10);
RARCH_LOG("TTT %d\n", res);
if (res == AUDIO_STREAM_STATE_NONE || res == AUDIO_STREAM_STATE_STOPPED) if (res == AUDIO_STREAM_STATE_NONE || res == AUDIO_STREAM_STATE_STOPPED)
return false; return false;
return true; return true;
#else
return false;
#endif
} }
bool ai_service_speech_stop(void) bool ai_service_speech_stop(void)