Work-in-progress repo for ambisonics extensions for OM-SoX
Alexander Nguyen
yesterday 726f249a16d0edab96bb548fee18780e75e84a42
feat: allow specifying signal normalization
2 files modified
30 ■■■■■ changed files
sources/classes/sox-hoaencode.lisp 28 ●●●●● patch | view | raw | blame | history
sources/sox-process.lisp 2 ●●● patch | view | raw | blame | history
sources/classes/sox-hoaencode.lisp
@@ -216,7 +216,7 @@
; ####### High-level API ########## 
(defun sox-hoaencode-gain-single-component (order degree azimuth_deg elevation_deg)
(defun sox-hoaencode-gain-single-component (order degree azimuth_deg elevation_deg normalization)
  "Returns the gain value (linear, -1 to 1) for a single ACN-channel"
    (let
        (
@@ -225,26 +225,30 @@
            ; However, the formulas inside assume that azimuth_deg runs clockwise, i.e. 
            ; the sign of azimuth_deg must be inverted.
            (azimuth_deg_inverted (* -1 azimuth_deg))
            (normalization_factor
              (if (eq normalization :sn3d)
                  (sox-hoaencode-sn3d-factor order degree)
                  (sox-hoaencode-n3d-factor  order degree)))
        )
        (* 
            (sox-hoaencode-sn3d-factor order degree)
            (sqrt (/ 1 (* 4 pi)))
            normalization_factor
            (sox-hoaencode-azimuth-factor degree azimuth_deg_inverted) 
            (sox-hoaencode-elevation-factor order degree elevation_deg)))
    )
            (sox-hoaencode-elevation-factor order degree elevation_deg)
        )))
(defun sox-hoaencode-gains-by-order (order azimuth_deg elevation_deg)
(defun sox-hoaencode-gains-by-order (order azimuth_deg elevation_deg normalization)
  "Returns the gain values for all components at a specific order"
    (loop for degree from (* -1 order) to order collect 
        (sox-hoaencode-gain-single-component order degree azimuth_deg elevation_deg)))
        (sox-hoaencode-gain-single-component order degree azimuth_deg elevation_deg normalization)))
(defun sox-hoaencode-gains-up-to-order (order azimuth_deg elevation_deg)
  "Returns the gain values for all components up to a specific order"
    (sox-hoaencode-double-to-float
        (flatten
            (loop for ord from 0 to order collect
                (sox-hoaencode-gains-by-order ord azimuth_deg elevation_deg)))))
(defun sox-hoaencode-gains-up-to-order (order azimuth_deg elevation_deg normalization)
  "Returns the gain values for all components up to a specific order"
    (flatten
        (loop for ord from 0 to order collect
            (sox-hoaencode-gains-by-order ord azimuth_deg elevation_deg normalization))))
; ####### SoX-HOAENCODE class ##########
sources/sox-process.lisp
@@ -204,7 +204,7 @@
                  (progn ; it is impossible to create a sox-merge instance as gain values are in dB which cannot represent negative amplitudes
                    (setf str (string+ str " -M"))
                    (loop for gain in (print (sox-hoaencode-gains-up-to-order (order sox-input) (azimuth sox-input) (elevation sox-input)))
                    (loop for gain in (print (sox-hoaencode-double-to-float (sox-hoaencode-gains-up-to-order (order sox-input) (azimuth sox-input) (elevation sox-input) :sn3d)))
                          do (setf str (string+ str (format nil " -v~d ~s" gain filename))))
                    )
                  )