From 2b8feba1200ecfa231aa41aed4b6ab9b183d5a05 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 5 Nov 2023 23:27:19 -0800 Subject: modules/playit: add an .IT file music player module Rudimentary .IT file music playback via libplayit. When seekable=on, the file is 100% pre-rendered at context create, then simply copied into the audio queue @ render_audio. When seekable=off, the file is mixed incrementally per-frame @ render_audio in max of bufsize=N_frames increments. The bufsize here basically just determines the maximum time spent rendering audio in a single go, and how much tolerance of frame delays due to slow rendering there will be before dropouts occur. --- src/modules/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'src/modules/Makefile.am') diff --git a/src/modules/Makefile.am b/src/modules/Makefile.am index 52d6180..0a01480 100644 --- a/src/modules/Makefile.am +++ b/src/modules/Makefile.am @@ -14,6 +14,7 @@ SUBDIRS = \ pixbounce \ plasma \ plato \ + playit \ ray \ rkt \ roto \ -- cgit v1.2.1