-
This commit is contained in:
9
Makefile
Normal file
9
Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
all:
|
||||
@echo "make clean"
|
||||
|
||||
clean:
|
||||
find . -type f -name "*~" -exec rm {} \;
|
||||
find . -type f -name "*.back" -exec rm {} \;
|
||||
rm -f scrbl/*.html scrbl/*.js scrbl/*.css
|
||||
DIRS=`find . -type d -name "compiled"`;rm -rf $$DIRS
|
||||
@@ -54,7 +54,6 @@
|
||||
(when (procedure? cb-audio)
|
||||
(cb-audio h buffers))
|
||||
))
|
||||
;(displayln "Processing frame"))
|
||||
#t
|
||||
)
|
||||
|
||||
|
||||
@@ -184,10 +184,6 @@
|
||||
(define (ao_clear_async* shm)
|
||||
(let ((q (ao-shm-queue shm)))
|
||||
(while (> (queue-length q) 0)
|
||||
;(displayln (format "queue-length: ~a" (queue-length q)))
|
||||
;(let* ((elem (dequeue! q))
|
||||
;(buf (car (cddddr elem))))
|
||||
;(free buf))))
|
||||
(dequeue! q)))
|
||||
(set-ao-shm-queue! shm (make-queue))
|
||||
(set-ao-shm-bufsize! shm 0)
|
||||
|
||||
@@ -200,8 +200,6 @@
|
||||
(let ((chan-buf (list-ref buffer channel)))
|
||||
(vector-ref chan-buf k))))
|
||||
)
|
||||
;(displayln (format "bps: ~a, buf-len: ~a, endianess: ~a, channels: ~a, bits ~a"
|
||||
; bytes-per-sample buf-len endianess channels bits))
|
||||
(letrec ((i 0)
|
||||
(fill (lambda (k channel)
|
||||
(if (< k buf-len)
|
||||
|
||||
Reference in New Issue
Block a user