changed async library. Flac conversion in C
This commit is contained in:
134
libao.rkt
134
libao.rkt
@@ -1,11 +1,8 @@
|
||||
#lang racket/base
|
||||
|
||||
(define libao-async-mode 'ffi) ; 'ffi or 'scheme
|
||||
|
||||
(require "libao-ffi.rkt"
|
||||
(prefix-in fin: finalizer)
|
||||
(prefix-in ffi: "libao-async-ffi.rkt")
|
||||
(prefix-in scm: "libao-async.rkt")
|
||||
ffi/unsafe
|
||||
data/queue
|
||||
"private/utils.rkt"
|
||||
@@ -20,23 +17,12 @@
|
||||
ao-music-duration
|
||||
ao-bufsize-async
|
||||
ao-clear-async
|
||||
ao-set-async-mode!
|
||||
ao-async-mode
|
||||
ao-pause
|
||||
)
|
||||
|
||||
(define devices (make-hash))
|
||||
(define device-number 1)
|
||||
|
||||
(define (ao-set-async-mode! mode)
|
||||
(if (or (eq? mode 'ffi) (eq? mode 'scheme))
|
||||
(set! libao-async-mode mode)
|
||||
(error "mode must be 'ffi or 'scheme"))
|
||||
mode)
|
||||
|
||||
(define (ao-async-mode)
|
||||
libao-async-mode)
|
||||
|
||||
(define-struct ao-handle (handle-num
|
||||
[bits #:auto #:mutable]
|
||||
[bytes-per-sample #:auto #:mutable]
|
||||
@@ -106,9 +92,7 @@
|
||||
(set-ao-handle-byte-format! handle endianness)
|
||||
(set-ao-handle-rate! handle rate)
|
||||
(set-ao-handle-channels! handle channels)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(set-ao-handle-async-player! handle (ffi:ao_create_async ao-device ao_play_ptr))
|
||||
(set-ao-handle-async-player! handle (scm:ao_create_async ao-device)))
|
||||
(set-ao-handle-async-player! handle (ffi:ao_create_async ao-device ao_play_ptr))
|
||||
(hash-set! devices handle-num ao-device)
|
||||
(fin:register-finalizer handle
|
||||
(lambda (handle)
|
||||
@@ -136,15 +120,8 @@
|
||||
'warning-ao-device-already-closed
|
||||
(begin
|
||||
(set-ao-handle-closed! handle #t)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(begin
|
||||
(ffi:ao_clear_async (ao-handle-async-player handle))
|
||||
(ffi:ao_stop_async (ao-handle-async-player handle))
|
||||
)
|
||||
(begin
|
||||
(scm:ao_clear_async (ao-handle-async-player handle))
|
||||
(scm:ao_stop_async (ao-handle-async-player handle))
|
||||
))
|
||||
(ffi:ao_clear_async (ao-handle-async-player handle))
|
||||
(ffi:ao_stop_async (ao-handle-async-player handle))
|
||||
(if (eq? ao-device #f)
|
||||
'error-ao-device-non-existent
|
||||
(let ((r (ao_close ao-device)))
|
||||
@@ -186,84 +163,67 @@
|
||||
(reverse bytes)
|
||||
bytes))))
|
||||
|
||||
(define (ao-play handle at-time-in-s music-duration-s buffer)
|
||||
(define (ao-play handle at-time-in-s music-duration-s buffer buf-len buf-type)
|
||||
(let* ((bytes-per-sample (ao-handle-bytes-per-sample handle))
|
||||
(bits (ao-handle-bits handle))
|
||||
(rate (ao-handle-rate handle))
|
||||
(channels (ao-handle-channels handle))
|
||||
(endianess (ao-handle-byte-format handle))
|
||||
(buf-len (vector-length (car buffer)))
|
||||
(audio-buf-len (* channels bytes-per-sample buf-len))
|
||||
(audio (if (eq? libao-async-mode 'ffi)
|
||||
(malloc 'atomic audio-buf-len)
|
||||
(malloc 'atomic audio-buf-len))) ; was: 'raw
|
||||
(get-sample (lambda (k channel)
|
||||
(let ((chan-buf (list-ref buffer channel)))
|
||||
(vector-ref chan-buf k))))
|
||||
;(audio-buf-len (* channels bytes-per-sample buf-len))
|
||||
;(audio (malloc 'atomic audio-buf-len))
|
||||
;(get-sample (lambda (k channel)
|
||||
; (let ((chan-buf (list-ref buffer channel)))
|
||||
; (vector-ref chan-buf k))))
|
||||
)
|
||||
(letrec ((i 0)
|
||||
(fill (lambda (k channel)
|
||||
(if (< k buf-len)
|
||||
(if (< channel channels)
|
||||
(let* ((sample (get-sample k channel))
|
||||
(bytes (make-sample-bytes sample bytes-per-sample endianess))
|
||||
)
|
||||
(for-each (lambda (byte)
|
||||
(ptr-set! audio _byte i byte)
|
||||
(set! i (+ i 1)))
|
||||
bytes)
|
||||
;; process sample
|
||||
(fill k (+ channel 1)))
|
||||
(fill (+ k 1) 0))
|
||||
'filled))
|
||||
))
|
||||
(fill 0 0)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_play_async (ao-handle-async-player handle)
|
||||
(exact->inexact at-time-in-s)
|
||||
(exact->inexact music-duration-s)
|
||||
audio-buf-len
|
||||
audio)
|
||||
(scm:ao_play_async (ao-handle-async-player handle)
|
||||
(exact->inexact at-time-in-s)
|
||||
(exact->inexact music-duration-s)
|
||||
audio-buf-len
|
||||
audio)
|
||||
)
|
||||
;(letrec ((i 0)
|
||||
; (fill (lambda (k channel)
|
||||
; (if (< k buf-len)
|
||||
; (if (< channel channels)
|
||||
; (let* ((sample (get-sample k channel))
|
||||
; (bytes (make-sample-bytes sample bytes-per-sample endianess))
|
||||
; )
|
||||
; (for-each (lambda (byte)
|
||||
; (ptr-set! audio _byte i byte)
|
||||
; (set! i (+ i 1)))
|
||||
; bytes)
|
||||
; ;; process sample
|
||||
; (fill k (+ channel 1)))
|
||||
; (fill (+ k 1) 0))
|
||||
; 'filled))
|
||||
; ))
|
||||
; (fill 0 0)
|
||||
|
||||
(let ((buf-info (ffi:make-BufferInfo_t buf-type bits rate channels endianess)))
|
||||
;(displayln "Calling ao_play_async")
|
||||
(ffi:ao_play_async (ao-handle-async-player handle)
|
||||
(exact->inexact at-time-in-s)
|
||||
(exact->inexact music-duration-s)
|
||||
buf-len
|
||||
buffer
|
||||
buf-info)
|
||||
)
|
||||
;(let* ((handle-num (ao-handle-handle-num handle))
|
||||
; (ao-device (hash-ref devices handle-num #f)))
|
||||
; (if (eq? ao-device #f)
|
||||
; (error "No device for this handle")
|
||||
; (ao_play ao-device audio audio-buf-len))) )
|
||||
)
|
||||
)
|
||||
|
||||
(define (ao-pause handle pause)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_pause_async (ao-handle-async-player handle) (if (eq? pause #f) 0 1))
|
||||
(scm:ao_pause_async (ao-handle-async-player handle) pause)
|
||||
))
|
||||
(ffi:ao_pause_async (ao-handle-async-player handle) (if (eq? pause #f) 0 1))
|
||||
)
|
||||
|
||||
(define (ao-at-second handle)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_is_at_second_async (ao-handle-async-player handle))
|
||||
(scm:ao_is_at_second_async (ao-handle-async-player handle))))
|
||||
|
||||
(ffi:ao_is_at_second_async (ao-handle-async-player handle))
|
||||
)
|
||||
|
||||
(define (ao-music-duration handle)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_music_duration_async (ao-handle-async-player handle))
|
||||
(scm:ao_music_duration_async (ao-handle-async-player handle))))
|
||||
(ffi:ao_music_duration_async (ao-handle-async-player handle))
|
||||
)
|
||||
|
||||
(define (ao-bufsize-async handle)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_bufsize_async (ao-handle-async-player handle))
|
||||
(scm:ao_bufsize_async (ao-handle-async-player handle))))
|
||||
(ffi:ao_bufsize_async (ao-handle-async-player handle))
|
||||
)
|
||||
|
||||
(define (ao-clear-async handle)
|
||||
(if (eq? libao-async-mode 'ffi)
|
||||
(ffi:ao_clear_async (ao-handle-async-player handle))
|
||||
(scm:ao_clear_async (ao-handle-async-player handle))))
|
||||
|
||||
(ffi:ao_clear_async (ao-handle-async-player handle))
|
||||
)
|
||||
|
||||
;(let* ((handle-num (ao-handle-handle-num handle))
|
||||
; (ao-device (hash-ref devices handle-num #f)))
|
||||
|
||||
Reference in New Issue
Block a user