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

Commit 8a1be763 authored by Josh Wu's avatar Josh Wu
Browse files

BtAudio: Handle dataInterval in LeAudioSW VTS

Test: atest VtsHalBluetoothAudioTargetTest
Bug: 203490261
Change-Id: I447d0e74b6b1af2959cc133437e0dd7216814369
parent fd4d63ff
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -983,7 +983,8 @@ TEST_P(BluetoothAudioProviderLeAudioOutputSoftwareAidl,
              .channelMode = channel_mode,
              .dataIntervalUs = data_interval_us,
          };
          bool is_codec_config_valid = IsPcmConfigSupported(pcm_config);
          bool is_codec_config_valid =
              IsPcmConfigSupported(pcm_config) && pcm_config.dataIntervalUs > 0;
          DataMQDesc mq_desc;
          auto aidl_retval = audio_provider_->startSession(
              audio_port_, AudioConfiguration(pcm_config), &mq_desc);
@@ -1054,7 +1055,8 @@ TEST_P(BluetoothAudioProviderLeAudioInputSoftwareAidl,
              .channelMode = channel_mode,
              .dataIntervalUs = data_interval_us,
          };
          bool is_codec_config_valid = IsPcmConfigSupported(pcm_config);
          bool is_codec_config_valid =
              IsPcmConfigSupported(pcm_config) && pcm_config.dataIntervalUs > 0;
          DataMQDesc mq_desc;
          auto aidl_retval = audio_provider_->startSession(
              audio_port_, AudioConfiguration(pcm_config), &mq_desc);
@@ -1395,7 +1397,8 @@ TEST_P(BluetoothAudioProviderLeAudioBroadcastSoftwareAidl,
              .channelMode = channel_mode,
              .dataIntervalUs = data_interval_us,
          };
          bool is_codec_config_valid = IsPcmConfigSupported(pcm_config);
          bool is_codec_config_valid =
              IsPcmConfigSupported(pcm_config) && pcm_config.dataIntervalUs > 0;
          DataMQDesc mq_desc;
          auto aidl_retval = audio_provider_->startSession(
              audio_port_, AudioConfiguration(pcm_config), &mq_desc);