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

Commit 221aa03b authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by Jakub Pawłowski
Browse files

open stereo to audio framework

Change-Id: Ic5a873f16ae6e72c519202fc47deb21429353a0f
parent fe1986fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ LeAudioSourceTransport::LeAudioSourceTransport(SessionType session_type,
                                               StreamCallbacks stream_cb)
    : IBluetoothSourceTransportInstance(session_type, (AudioConfiguration){}) {
  transport_ = new LeAudioTransport(flush_source, std::move(stream_cb),
                                    {16000, ChannelMode::MONO, 16, 0});
                                    {16000, ChannelMode::STEREO, 16, 0});
};

LeAudioSourceTransport::~LeAudioSourceTransport() { delete transport_; }
+1 −1
Original line number Diff line number Diff line
@@ -3345,7 +3345,7 @@ class LeAudioClientImpl : public LeAudioClient {
  };

  LeAudioCodecConfiguration audio_framework_sink_config = {
      .num_channels = 1,
      .num_channels = 2,
      .sample_rate = bluetooth::audio::le_audio::kSampleRate16000,
      .bits_per_sample = bluetooth::audio::le_audio::kBitsPerSample16,
      .data_interval_us = LeAudioCodecConfiguration::kInterval10000Us,