Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95e9e26c authored by Eric Laurent's avatar Eric Laurent
Browse files

audio: add spatializer output flag

Add output flag SPATIALIZER indicating an
output mix port dedicated to spatial audio.

Bug: 210803914
Test: manual spatial audio tests
Change-Id: Ia60d3b7aaeef911eb1af0d0a47a54a83cd2c8418
parent b86284d8
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -97,8 +97,12 @@ enum AudioOutputFlags {
     * tracks.
     */
    GAPLESS_OFFLOAD = 15,
    /**
     * Output is used for spatial audio.
     */
    SPATIALIZER = 16,
    /**
     * Output is used for transmitting ultrasound audio.
     */
    ULTRASOUND = 16,
    ULTRASOUND = 17,
}
+2 −1
Original line number Diff line number Diff line
@@ -51,5 +51,6 @@ enum AudioOutputFlags {
  VOIP_RX = 13,
  INCALL_MUSIC = 14,
  GAPLESS_OFFLOAD = 15,
  ULTRASOUND = 16,
  SPATIALIZER = 16,
  ULTRASOUND = 17,
}