From b36c86db50ccd3ff51725fabf59c6e5723b7b2aa Mon Sep 17 00:00:00 2001 From: Marlon Schumacher <schumacher@hfm-karlsruhe.de> Date: Sat, 01 Mar 2025 01:50:48 +0100 Subject: [PATCH] fix: removed limitation that sound arg must be provided as a list --- sources/classes/sox-hoaencode.lisp | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sources/classes/sox-hoaencode.lisp b/sources/classes/sox-hoaencode.lisp index cdefebe..029dc46 100644 --- a/sources/classes/sox-hoaencode.lisp +++ b/sources/classes/sox-hoaencode.lisp @@ -1,4 +1,6 @@ -;Authors: A. Nguyen, 2025. +;Authors: +; A. Nguyen, 2025 +; M. Schumacher, 2025 ; Design limitations: ; 1) Sounds must have identical sample rate; otherwise, SoX fails silently, literally. @@ -184,7 +186,7 @@ (defmethod initialize-instance :after ((self sox-hoaencode) &rest l) (declare (ignore l)) (when (sound self) - (sox-init-sound self 'list) + (sox-init-sound self 'atom) ) ) -- Gitblit v1.9.1