Documentation added

This commit is contained in:
2026-05-16 01:38:40 +02:00
parent c9a91bf2be
commit 17838e4f33
17 changed files with 1746 additions and 394 deletions
+25 -12
View File
@@ -8,18 +8,31 @@
(define scribblings
'(
("scrbl/libao.scrbl" () (library))
("scrbl/audio-decoder.scrbl" () (library))
("scrbl/flac-decoder.scrbl" () (library))
("scrbl/mp3-decoder.scrbl" () (library))
("scrbl/audio-sniffer.scrbl" () (library))
("scrbl/ffmpeg-ffi.scrbl" () (library))
("scrbl/ffmpeg-decoder.scrbl" () (library))
("scrbl/ffmpeg-c-backend.scrbl" () (library))
("scrbl/ffmpeg-definitions.scrbl" () (library))
("scrbl/libao-async-ffi-racket.scrbl" () (library))
)
)
;; Main package overview.
;; The negative sort number makes this document appear before the
;; other racket-audio manuals in the library documentation listing.
("scrbl/racket-audio.scrbl" () (library -100))
;; High-level user-facing APIs.
("scrbl/audio-player.scrbl" () (library -90))
("scrbl/taglib.scrbl" () (library -80))
("scrbl/play-test.scrbl" () (library -70))
;; Format detection and decoder layer.
("scrbl/audio-sniffer.scrbl" () (library -60))
("scrbl/audio-decoder.scrbl" () (library -50))
("scrbl/mp3-decoder.scrbl" () (library -40))
("scrbl/flac-decoder.scrbl" () (library -30))
("scrbl/ffmpeg-decoder.scrbl" () (library -20))
;; Lower-level playback and FFI modules.
("scrbl/audio-placed-player.scrbl" () (library 10))
("scrbl/libao.scrbl" () (library 20))
("scrbl/libao-async-ffi-racket.scrbl" () (library 30))
("scrbl/ffmpeg-c-backend.scrbl" () (library 40))
("scrbl/ffmpeg-ffi.scrbl" () (library 50))
("scrbl/ffmpeg-definitions.scrbl" () (library 60))
))
(define deps
'("racket/gui" "racket/base" "racket"