Fix --disable-audiomixer
This commit is contained in:
parent
28e88c95ec
commit
49fb0d7909
|
@ -4456,11 +4456,15 @@ 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);
|
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)
|
||||||
|
|
Loading…
Reference in New Issue