Skip to content

Commit c13375a

Browse files
committed
Merge branch 'dev' of https://github.com/wb2osz/direwolf into dev
2 parents 84efe8c + 91d5b90 commit c13375a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

audio.c

+15-1
Original file line numberDiff line numberDiff line change
@@ -1204,14 +1204,28 @@ int audio_flush (int a)
12041204

12051205
snd_pcm_recover (adev[a].audio_out_handle, k, 1);
12061206
}
1207+
else if (k == -ESTRPIPE) {
1208+
text_color_set(DW_COLOR_ERROR);
1209+
dw_printf ("Driver suspended, recovering\n");
1210+
snd_pcm_recover(adev[a].audio_out_handle, k, 1);
1211+
}
1212+
else if (k == -EBADFD) {
1213+
k = snd_pcm_prepare (adev[a].audio_out_handle);
1214+
if(k < 0) {
1215+
dw_printf ("Error preparing after bad state: %s\n", snd_strerror(k));
1216+
}
1217+
}
12071218
else if (k < 0) {
12081219
text_color_set(DW_COLOR_ERROR);
12091220
dw_printf ("Audio write error: %s\n", snd_strerror(k));
12101221

12111222
/* Some other error condition. */
12121223
/* Try again. What do we have to lose? */
12131224

1214-
snd_pcm_recover (adev[a].audio_out_handle, k, 1);
1225+
k = snd_pcm_prepare (adev[a].audio_out_handle);
1226+
if(k < 0) {
1227+
dw_printf ("Error preparing after error: %s\n", snd_strerror(k));
1228+
}
12151229
}
12161230
else if (k != adev[a].outbuf_len / adev[a].bytes_per_frame) {
12171231
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)