From c03ece26710128b26baf5316f6e1f29a8e8cf20e Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 13 Jul 2024 23:16:12 +0900 Subject: [PATCH] audio: GC a player This is not necessary but it is always better to clean up unused players. --- audio/audio_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/audio/audio_test.go b/audio/audio_test.go index e1d1bfd17..e71b96724 100644 --- a/audio/audio_test.go +++ b/audio/audio_test.go @@ -133,4 +133,5 @@ func TestNonSeekableSource(t *testing.T) { } p.Play() + p.Pause() }