when closing audio source, don't flush audio data if audio buffer is empty
This commit is contained in:
parent
c3236e48a4
commit
c0839cd6a5
@ -493,10 +493,13 @@ sound_send_close(void)
|
||||
LOG(10, ("sound_send_close:"));
|
||||
|
||||
/* send any left over data */
|
||||
if (sound_send_wave_data_chunk(g_buffer, g_buf_index) != 0)
|
||||
if (g_buf_index)
|
||||
{
|
||||
LOG(10, ("sound_send_close: sound_send_wave_data_chunk failed"));
|
||||
return 1;
|
||||
if (sound_send_wave_data_chunk(g_buffer, g_buf_index) != 0)
|
||||
{
|
||||
LOG(10, ("sound_send_close: sound_send_wave_data_chunk failed"));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
g_buf_index = 0;
|
||||
g_memset(g_sent_flag, 0, sizeof(g_sent_flag));
|
||||
|
Loading…
Reference in New Issue
Block a user