directsoundsink: simplify how DirecSoundBuffer is cleared

we always want to clear the whole buffer so no need to
start from offset even if the offset is always zero.

https://bugzilla.gnome.org/show_bug.cgi?id=788847
This commit is contained in:
Philippe Renon 2017-09-28 22:51:57 +02:00 committed by Sebastian Dröge
parent 24561309f9
commit 09af01a088

View file

@ -815,7 +815,7 @@ gst_directsound_sink_reset (GstAudioSink * asink)
/*reset the buffer */
hRes = IDirectSoundBuffer_Lock (dsoundsink->pDSBSecondary,
dsoundsink->current_circular_offset, dsoundsink->buffer_size,
0, dsoundsink->buffer_size,
&pLockedBuffer, &dwSizeBuffer, NULL, NULL, 0L);
if (SUCCEEDED (hRes)) {