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

Commit 5d1da914 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "LeAudio: Fix SDU interval calculation" into main

parents b81674b0 af036e06
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -352,7 +352,8 @@ private:
      subconfig.qos.maxSdu = subconfig.codec.GetChannelCountPerIsoStream() *
                             core_config.octets_per_codec_frame.value_or(0) *
                             core_config.codec_frames_blocks_per_sdu.value_or(1);
      subconfig.qos.sduIntervalUs = core_config.GetFrameDurationUs();
      subconfig.qos.sduIntervalUs = core_config.GetFrameDurationUs() *
                                    core_config.codec_frames_blocks_per_sdu.value_or(1);
    }
  }