Clamps Dictionary
init-vbap-pair
Function
(init-vbap-pair speaker-data)
Return a list of two intialized vbap structs, ready to use. The
function will calculate all speaker sets and their matrices from
speaker-data and put them into the vbap-data
slot of the struct.
Arguments
speaker-data |
List of the azimuths of all speakers for 2D setup, or of lists of (azimuth elevation) for 3D setups. |
Examples
;;; 8 Speaker sourround 2D setup with center speaker: (init-vbap-pair '(-45 0 45 90 135 180 -135 -90)) ;;; 8 Speaker sourround 3D setup with center speaker and every second ;;; speaker at 45 degrees elevation: (init-vbap-pair '((-45 0) (0 45) (45 0) (90 45) (135 0) (180 45) (-135 0) (-90 45)))