This commit is contained in:
2026-02-24 16:59:44 +01:00
parent ace66827a0
commit ca1bf54519

View File

@@ -136,9 +136,13 @@
#f))) #f)))
(define (flac-stop handle) (define (flac-stop handle)
(let ((ct (current-milliseconds)))
(set-flac-handle-stop-reading! handle #t) (set-flac-handle-stop-reading! handle #t)
(while (flac-handle-reading handle) (while (flac-handle-reading handle)
(sleep 0.01)) (sleep 0.01))
(let ((ct* (current-milliseconds)))
(displayln (format "flac-stop took: ~a ms" (- ct* ct))))
)
) )
); end of module ); end of module